summaryrefslogtreecommitdiffstats
path: root/springboot/spring-boot-setup/pom.xml
diff options
context:
space:
mode:
authorlapentafd <francesco.lapenta@est.tech>2024-08-20 14:30:53 +0100
committerlapentafd <francesco.lapenta@est.tech>2024-08-22 10:50:44 +0100
commit426ae53c36ff2d6c9351627c52e7985bae65489e (patch)
tree01a42e268199ff85be739e8f76593cd2074e434e /springboot/spring-boot-setup/pom.xml
parentde82d6865fb7f50c9241eccd38803aa7f5a16b80 (diff)
Adding spingboot parent 3.3.2
Issue-ID: CCSDK-4026 Change-Id: If61612617825c6c826018629b08c4005d4e91c7d Signed-off-by: lapentafd <francesco.lapenta@est.tech>
Diffstat (limited to 'springboot/spring-boot-setup/pom.xml')
-rw-r--r--springboot/spring-boot-setup/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/springboot/spring-boot-setup/pom.xml b/springboot/spring-boot-setup/pom.xml
index c8b6b736..d3e95f73 100644
--- a/springboot/spring-boot-setup/pom.xml
+++ b/springboot/spring-boot-setup/pom.xml
@@ -191,6 +191,30 @@
<encoding>UTF-8</encoding>
</configuration>
</execution>
+ <execution>
+ <id>create-springboot33-parent-pom</id>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals><!-- here the phase you need -->
+ <phase>validate</phase>
+ <configuration>
+ <outputDirectory>../springboot33</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/springboot33.properties</filter>
+ </filters>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>
@@ -275,6 +299,17 @@
<destinationFile>../springboot32/pom.xml</destinationFile>
</configuration>
</execution>
+ <execution>
+ <id>rename-springboot33-parent-pom</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>rename</goal>
+ </goals>
+ <configuration>
+ <sourceFile>../springboot33/pom-template-jdk17.xml</sourceFile>
+ <destinationFile>../springboot33/pom.xml</destinationFile>
+ </configuration>
+ </execution>
</executions>
</plugin>
</plugins>