Bumped dependencies
Spring Boot to version 3.3.1 PMD extension to version 1.0.1 AssertJ to version 3.26.0
This commit is contained in:
parent
5d7bc7d15c
commit
16f45fad1a
4 changed files with 9 additions and 9 deletions
|
@ -49,7 +49,7 @@ Don't forget to include the _Spring Boot Loader_ dependency to your project:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
scope(standalone)
|
scope(standalone)
|
||||||
.include(dependency("org.springframeworkboot:spring-boot-loader:3.3.0"));
|
.include(dependency("org.springframeworkboot:spring-boot-loader:3.3.1"));
|
||||||
```
|
```
|
||||||
|
|
||||||
Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)
|
Please check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)
|
||||||
|
|
|
@ -27,15 +27,15 @@ public class DemoApplicationBuild extends WebProject {
|
||||||
repositories = List.of(MAVEN_CENTRAL);
|
repositories = List.of(MAVEN_CENTRAL);
|
||||||
|
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter:3.3.0"))
|
.include(dependency("org.springframework.boot:spring-boot-starter:3.3.1"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.0"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.1"))
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.0"));
|
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.1"));
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.0"))
|
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.1"))
|
||||||
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.2"))
|
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.2"))
|
||||||
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
|
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
|
||||||
scope(standalone)
|
scope(standalone)
|
||||||
.include(dependency("org.springframework.boot:spring-boot-loader:3.3.0"));
|
.include(dependency("org.springframework.boot:spring-boot-loader:3.3.1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.9
|
|
||||||
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_RELEASES
|
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
|
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.0.1
|
||||||
|
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_RELEASES
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
bld.version=1.9.1
|
bld.version=1.9.1
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class SpringBootBuild extends Project {
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
|
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
|
||||||
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));
|
.include(dependency("org.assertj", "assertj-core", version(3, 26, 0)));
|
||||||
|
|
||||||
javadocOperation()
|
javadocOperation()
|
||||||
.javadocOptions()
|
.javadocOptions()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue