diff options
author | JohnKeeney <john.keeney@est.tech> | 2023-12-11 13:26:21 +0000 |
---|---|---|
committer | JohnKeeney <john.keeney@est.tech> | 2023-12-11 13:26:35 +0000 |
commit | c34f63100e986b167dee415f6d6fd5573fe5b3d0 (patch) | |
tree | fad5674e520a3567270cd2b3324bd19329556ee0 /springboot/spring-boot-setup | |
parent | ce63934ab223cd83a97a9403bb971e55ac003993 (diff) |
Add springboot parent 32
Change-Id: I3c881e256e8ce296fb731ca94ee5fbf1f5cc9fef
Signed-off-by: JohnKeeney <john.keeney@est.tech>
Issue-ID: CCSDK-3974
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/springboot32.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 b60a1652..e17711bc 100644 --- a/springboot/spring-boot-setup/pom.xml +++ b/springboot/spring-boot-setup/pom.xml @@ -167,6 +167,30 @@ <encoding>UTF-8</encoding> </configuration> </execution> + <execution> + <id>create-springboot32-parent-pom</id> + <goals> + <goal>copy-resources</goal> + </goals><!-- here the phase you need --> + <phase>validate</phase> + <configuration> + <outputDirectory>../springboot32</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/springboot32.properties</filter> + </filters> + <encoding>UTF-8</encoding> + </configuration> + </execution> </executions> </plugin> <plugin> @@ -240,6 +264,17 @@ <destinationFile>../springboot31/pom.xml</destinationFile> </configuration> </execution> + <execution> + <id>rename-springboot32-parent-pom</id> + <phase>validate</phase> + <goals> + <goal>rename</goal> + </goals> + <configuration> + <sourceFile>../springboot32/pom-template-jdk17.xml</sourceFile> + <destinationFile>../springboot32/pom.xml</destinationFile> + </configuration> + </execution> </executions> </plugin> </plugins> diff --git a/springboot/spring-boot-setup/src/main/properties/springboot32.properties b/springboot/spring-boot-setup/src/main/properties/springboot32.properties new file mode 100644 index 00000000..e9ad3334 --- /dev/null +++ b/springboot/spring-boot-setup/src/main/properties/springboot32.properties @@ -0,0 +1,11 @@ +springbootparent.artifactId=spring-boot-starter-parent +springbootparent.groupId=org.springframework.boot +springbootparent.version=3.2.0 +springboot.project.artifactId=spring-boot-32-starter-parent +spring.version=6.1.1 +springboot.httpcomponents.core.version=4.5.16 +springboot.httpcomponents.client.version=4.5.14 +springboot.jackson.version=2.15.0 +springboot.logback.version=1.4.14 +springboot.slf4j.version=2.19.0 +springboot.antlr.version=4.12.0 |