diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-03-22 17:57:16 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2016-03-31 14:27:54 +0000 |
commit | 3368459b88f4a1aca74eecf13216d1a3fafcc889 (patch) | |
tree | 96a7cdc140b800ac3288150b526496199f5bb695 /v3po/impl/pom.xml | |
parent | 1fb7cb0596bde05c0931c43e53fba98e74005f9d (diff) |
Dedicated NETCONF north interface for v3po
Change-Id: I3a001ef68f7ff43ec1b2a935dd474ec966cea878
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/impl/pom.xml')
-rw-r--r-- | v3po/impl/pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/v3po/impl/pom.xml b/v3po/impl/pom.xml index 1498d82f8..a47b6a133 100644 --- a/v3po/impl/pom.xml +++ b/v3po/impl/pom.xml @@ -78,4 +78,37 @@ <scope>test</scope> </dependency> </dependencies> + + + <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>${config.file}</file> + <type>xml</type> + <classifier>config</classifier> + </artifact> + <artifact> + <file>src/main/config/netconf-north-config.xml</file> + <type>xml</type> + <classifier>netconf</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |