diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2016-02-03 15:17:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-02-03 15:17:05 +0000 |
commit | 370ddebce61d3acbc9c34d9e827144308d08c75c (patch) | |
tree | a36d1f5aad505a67156fa8f5abbfab22297de041 /vbd/impl/pom.xml | |
parent | dd98ae7aa20dfa4d601c1c584f28ace9497bae46 (diff) | |
parent | a03a2cb26606a9099f2ea8cfd589f7ef503f0374 (diff) |
Merge "Adding named augmentation + prepare naked application."
Diffstat (limited to 'vbd/impl/pom.xml')
-rw-r--r-- | vbd/impl/pom.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vbd/impl/pom.xml b/vbd/impl/pom.xml index 3d6d55aea..d4ac30d62 100644 --- a/vbd/impl/pom.xml +++ b/vbd/impl/pom.xml @@ -29,6 +29,10 @@ <version>1.0.0-SNAPSHOT</version> <packaging>bundle</packaging> + <properties> + <config.file>src/main/config/vbd.xml</config.file> + </properties> + <dependencyManagement> <dependencies> <dependency> @@ -60,4 +64,34 @@ <scope>test</scope> </dependency> </dependencies> + + + <!--TODO: remove direct calling of builder-helper-maven-plugin. should be supported via profile in parent--> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>attach-artifacts</id> + <goals> + <goal>attach-artifact</goal> + </goals> + <phase>package</phase> + <configuration> + <artifacts> + <artifact> + <file>${project.build.directory}/classes/config/vbd.xml</file> + <type>xml</type> + <classifier>config</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </project> |