-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (33 loc) · 1.35 KB
/
build.gradle
File metadata and controls
39 lines (33 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'application'
id 'java'
id 'org.springframework.boot' version '4.0.0'
id 'io.spring.dependency-management' version '1.1.7'
id 'jacoco'
id 'maven-publish'
id 'com.github.ben-manes.versions' version '0.53.0'
id 'org.cyclonedx.bom' version '3.1.0'
id 'com.gorylenko.gradle-git-properties' version '2.5.4'
id 'com.avast.gradle.docker-compose' version '0.17.20'
}
group = 'uk.gov.hmcts.cp'
version = System.getProperty('ARTEFACT_VERSION') ?: '0.0.999'
apply {
from("$rootDir/gradle/dependencies/java-core.gradle")
from("$rootDir/gradle/dependencies/spring-core.gradle")
from("$rootDir/gradle/dependencies/spring-db.gradle")
from("$rootDir/gradle/github/repositories.gradle")
from("$rootDir/gradle/github/java.gradle")
from("$rootDir/gradle/github/dependency.gradle")
from("$rootDir/gradle/github/pmd.gradle")
from("$rootDir/gradle/github/test.gradle")
from("$rootDir/gradle/github/jar.gradle")
from("$rootDir/gradle/tasks/apitest.gradle")
}
dependencies {
implementation(group: 'uk.gov.hmcts.cp', name: 'api-cp-crime-hearing-case-event-subscription', version: '1.0.0-cc7de31')
// This is proving to be a real puzzle. This is actually included in the api published pom
// ( though with scope of "runtime" )
// Yet we still need to add it manually. Grrr. TBC.
implementation "io.swagger.core.v3:swagger-annotations:2.2.41"
}