-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (40 loc) · 1.72 KB
/
build.gradle
File metadata and controls
46 lines (40 loc) · 1.72 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
40
41
42
43
44
45
46
plugins {
id 'application'
id 'java'
id 'org.springframework.boot' version '4.0.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.openapi.generator' version '7.20.0'
id 'jacoco'
id 'maven-publish'
id 'com.github.ben-manes.versions' version '0.53.0'
id 'org.cyclonedx.bom' version '3.2.0'
id 'com.gorylenko.gradle-git-properties' version '2.5.7'
id 'com.avast.gradle.docker-compose' version '0.17.21'
}
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/dependencies/openapi-material.gradle")
from("$rootDir/gradle/dependencies/spring-cloud.gradle")
from("$rootDir/gradle/dependencies/spring-actuator.gradle")
from("$rootDir/gradle/dependencies/docker-test.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")
}
dependencies {
implementation('uk.gov.hmcts.cp:api-cp-crime-hearing-case-event-subscription:1.1.4')
// 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.45')
implementation('org.owasp.encoder:encoder:1.4.0')
implementation 'org.awaitility:awaitility:4.3.0'
implementation('com.azure:azure-messaging-servicebus:7.17.17')
}