summaryrefslogtreecommitdiffstats
path: root/springboot/spring-boot-setup/pom.xml
diff options
context:
space:
mode:
authorJohnKeeney <john.keeney@est.tech>2023-03-01 19:15:13 +0000
committerJohnKeeney <john.keeney@est.tech>2023-03-01 19:37:09 +0000
commitf51026a9a85da877f0602340456851bf833a0ecc (patch)
treed1c8d712615f6450dd6d04ca6a7c780a1a014202 /springboot/spring-boot-setup/pom.xml
parent7af1cbec0a8cf3259e9de3d705c05a89ddc6ba24 (diff)
Update ccsdk/parent/springboot to Springboot 3
Issue-ID: CCSDK-3813 Change-Id: If23fa807187520ae62091fc2e4156d25b71e8ff3 Signed-off-by: JohnKeeney <john.keeney@est.tech>
Diffstat (limited to 'springboot/spring-boot-setup/pom.xml')
-rw-r--r--springboot/spring-boot-setup/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/springboot/spring-boot-setup/pom.xml b/springboot/spring-boot-setup/pom.xml
index 7f703e7d..1fde5801 100644
--- a/springboot/spring-boot-setup/pom.xml
+++ b/springboot/spring-boot-setup/pom.xml
@@ -119,6 +119,30 @@
<encoding>UTF-8</encoding>
</configuration>
</execution>
+ <execution>
+ <id>create-springboot30-parent-pom</id>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals><!-- here the phase you need -->
+ <phase>validate</phase>
+ <configuration>
+ <outputDirectory>../springboot30</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/springboot30.properties</filter>
+ </filters>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>