You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/re-registration-service/build.gradle
+30-68Lines changed: 30 additions & 68 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,13 @@
1
1
plugins {
2
-
id 'org.springframework.boot' version '3.2.1'
3
-
id 'io.spring.dependency-management' version '1.1.4'
2
+
id 'org.springframework.boot' version '4.0.3'
3
+
id 'io.spring.dependency-management' version '1.1.7'
4
4
id 'java'
5
5
id 'jacoco'
6
-
id 'com.github.spotbugs' version '6.0.6'
7
6
id "org.sonarqube" version "4.4.1.3373"
8
7
}
9
8
10
9
group ='uk.nhs.prm.repo'
11
10
version ='0.0.1-SNAPSHOT'
12
-
sourceCompatibility ='21'
13
11
14
12
configurations {
15
13
compileOnly {
@@ -21,57 +19,58 @@ repositories {
21
19
mavenCentral()
22
20
}
23
21
22
+
java {
23
+
toolchain {
24
+
languageVersion =JavaLanguageVersion.of(25)
25
+
}
26
+
}
27
+
24
28
//Without this task two jars are built, the additional "-plain.jar" is not needed
25
29
// for more details refer to: https://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/htmlsingle/#packaging-executable.and-plain-archives
26
30
jar {
27
31
enabled =false
28
32
}
29
33
30
34
dependencies {
31
-
implementation('com.google.guava:guava') { version { strictly '32.1.3-jre' } }
32
-
33
-
implementation('org.yaml:snakeyaml') { version { strictly '2.2' } }
Copy file name to clipboardExpand all lines: services/re-registration-service/src/integration/java/uk/nhs/prm/repo/re_registration/ActiveSuspensionsIntegrationTest.java
0 commit comments