Skip to content

Commit

Permalink
Merge pull request #55 from anandamideShakyan/feature/version/upgrade
Browse files Browse the repository at this point in the history
Updated pom.xml to append files correctly
  • Loading branch information
drtechie authored Jul 5, 2024
2 parents 335099b + f4570ff commit ecbf2ba
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,49 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<id>merge-properties</id>
<configuration>
<target>
<echo>
concatenating properties file
${target-properties} and
${source-properties}
</echo>
<concat destfile="${target-properties}"
append="yes"
force="yes">
<fileset file="${source-properties}">
</fileset>
</concat>
</target>
</configuration>
</execution>
<execution>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<id>clean-property-files</id>
<configuration>
<target>
<delete>
<file file="${source-properties}" />
</delete>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit ecbf2ba

Please sign in to comment.