diff options
author | JohnKeeney <john.keeney@est.tech> | 2024-12-04 15:20:34 +0000 |
---|---|---|
committer | JohnKeeney <john.keeney@est.tech> | 2024-12-04 15:20:40 +0000 |
commit | 8bdd6e83ce5b18a78f63b0bd23f8d4d9d145153c (patch) | |
tree | 1d73ecec13987c665d039add379b1d2c5871230e /springboot/spring-boot-setup | |
parent | c2e9097a95f4c854c5c15227982df9d11849d407 (diff) |
SpringbootParent - Adding Springboot Parent 3.4 (3.4.0)oslo
Issue-ID: CCSDK-4026
Change-Id: I6f4457e39d710343a1edffb21e5bb6318e68a7d2
Signed-off-by: JohnKeeney <john.keeney@est.tech>
Diffstat (limited to 'springboot/spring-boot-setup')
-rw-r--r-- | springboot/spring-boot-setup/pom.xml | 35 | ||||
-rw-r--r-- | springboot/spring-boot-setup/src/main/properties/springboot34.properties | 11 |
2 files changed, 46 insertions, 0 deletions
diff --git a/springboot/spring-boot-setup/pom.xml b/springboot/spring-boot-setup/pom.xml index 4c89f90d..1b649eab 100644 --- a/springboot/spring-boot-setup/pom.xml +++ b/springboot/spring-boot-setup/pom.xml @@ -239,6 +239,30 @@ <encoding>UTF-8</encoding> </configuration> </execution> + <execution> + <id>create-springboot34-parent-pom</id> + <goals> + <goal>copy-resources</goal> + </goals><!-- here the phase you need --> + <phase>validate</phase> + <configuration> + <outputDirectory>../springboot34</outputDirectory> + <resources> + <resource> + <directory>src/main/resources</directory> + <includes> + <include>pom-template-jdk17.xml</include> + </includes> + <filtering>true</filtering> + </resource> + </resources> + <escapeString>\</escapeString> + <filters> + <filter>${basedir}/src/main/properties/springboot34.properties</filter> + </filters> + <encoding>UTF-8</encoding> + </configuration> + </execution> </executions> </plugin> <plugin> @@ -345,6 +369,17 @@ <destinationFile>../springboot33/pom.xml</destinationFile> </configuration> </execution> + <execution> + <id>rename-springboot34-parent-pom</id> + <phase>validate</phase> + <goals> + <goal>rename</goal> + </goals> + <configuration> + <sourceFile>../springboot34/pom-template-jdk17.xml</sourceFile> + <destinationFile>../springboot34/pom.xml</destinationFile> + </configuration> + </execution> </executions> </plugin> </plugins> diff --git a/springboot/spring-boot-setup/src/main/properties/springboot34.properties b/springboot/spring-boot-setup/src/main/properties/springboot34.properties new file mode 100644 index 00000000..f3b0abeb --- /dev/null +++ b/springboot/spring-boot-setup/src/main/properties/springboot34.properties @@ -0,0 +1,11 @@ +springbootparent.artifactId=spring-boot-starter-parent +springbootparent.groupId=org.springframework.boot +springbootparent.version=3.4.0 +springboot.project.artifactId=spring-boot-34-starter-parent +spring.version=6.2.0 +springboot.httpcomponents.core.version=4.5.16 +springboot.httpcomponents.client.version=4.5.14 +springboot.jackson.version=2.15.0 +springboot.logback.version=1.5.12 +springboot.slf4j.version=2.19.0 +springboot.antlr.version=4.12.0 |