diff options
Diffstat (limited to 'odlparent/setup/pom.xml')
-rwxr-xr-x | odlparent/setup/pom.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/odlparent/setup/pom.xml b/odlparent/setup/pom.xml index 24651600..685ad761 100755 --- a/odlparent/setup/pom.xml +++ b/odlparent/setup/pom.xml @@ -97,6 +97,29 @@ </configuration> </execution> <execution> + <id>create-karaf4-parent-pom</id> + <goals> + <goal>copy-resources</goal> + </goals><!-- here the phase you need --> + <phase>validate</phase> + <configuration> + <outputDirectory>../karaf4-parent</outputDirectory> + <resources> + <resource> + <directory>src/main/resources</directory> + <includes> + <include>pom-template.xml</include> + </includes> + <filtering>true</filtering> + </resource> + </resources> + <escapeString>\</escapeString> + <filters> + <filter>${basedir}/src/main/properties/karaf4-parent.properties</filter> + </filters> + </configuration> + </execution> + <execution> <id>create-mdsal-it-parent-pom</id> <goals> <goal>copy-resources</goal> @@ -229,6 +252,17 @@ </configuration> </execution> <execution> + <id>rename-karaf4-parent-pom</id> + <phase>validate</phase> + <goals> + <goal>rename</goal> + </goals> + <configuration> + <sourceFile>../karaf4-parent/pom-template.xml</sourceFile> + <destinationFile>../karaf4-parent/pom.xml</destinationFile> + </configuration> + </execution> + <execution> <id>rename-mdsal-it-parent-pom</id> <phase>validate</phase> <goals> |