Skip to content

Commit

Permalink
Add springboot parent 32
Browse files Browse the repository at this point in the history
Change-Id: I3c881e256e8ce296fb731ca94ee5fbf1f5cc9fef
Signed-off-by: JohnKeeney <[email protected]>
Issue-ID: CCSDK-3974
  • Loading branch information
JohnKeeneyEST committed Dec 11, 2023
1 parent ce63934 commit c34f631
Show file tree
Hide file tree
Showing 4 changed files with 1,063 additions and 0 deletions.
1 change: 1 addition & 0 deletions springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<module>springboot27</module>
<module>springboot30</module>
<module>springboot31</module>
<module>springboot32</module>
</modules>

<distributionManagement>
Expand Down
35 changes: 35 additions & 0 deletions springboot/spring-boot-setup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Loading

0 comments on commit c34f631

Please sign in to comment.