Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

APEXCORE-34 Added plugin binding to no phase for version replacement in text files. #207

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -87,6 +87,26 @@

<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>replaceTextVersions</id>
<phase>none</phase>
<configuration>
<tasks>
<replace token= "${project.version}" value="${newVersion}" dir="${basedir}">
<include name="apex-app-archetype/README.md"/>
<include name="apex-conf-archetype/README.md"/>
</replace>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down