Merge "BUG-1521 Netconf-monitoring test coverage raise"
[controller.git] / opendaylight / archetypes / opendaylight-configfile-archetype / src / main / resources / archetype-resources / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10   <modelVersion>4.0.0</modelVersion>
11   <!--
12     Necessary TODO: Hookup your parent pom here, else you will not get necessary versions,
13     maven repos etc.  If you run this archetype in a subdirectory of your project, it
14     will pick the pom.xml from the parent directory as the parent pom, which may or may
15     not be correct.
16   -->
17   <artifactId>${artifactId}</artifactId>
18   <groupId>${groupId}</groupId>
19   <description>Configuration files for md-sal</description>
20   <!-- Optional TODO: Uncomment version if you are not using a parent pom.xml
21    <version>${version}</version>
22    -->
23   <packaging>jar</packaging>
24   <properties>
25       <!-- Optional TODO: Rename your configfile to taste -->
26       <configfile>80-configfile.xml</configfile>
27   </properties>
28   <build>
29     <plugins>
30         <plugin>
31         <groupId>org.codehaus.mojo</groupId>
32         <artifactId>build-helper-maven-plugin</artifactId>
33         <executions>
34           <execution>
35             <id>attach-artifacts</id>
36             <goals>
37               <goal>attach-artifact</goal>
38             </goals>
39             <phase>package</phase>
40             <configuration>
41               <artifacts>
42                 <artifact>
43                   <file>${project.build.directory}/classes/${configfile}</file>
44                   <type>xml</type>
45                   <classifier>config</classifier>
46                 </artifact>
47               </artifacts>
48             </configuration>
49           </execution>
50         </executions>
51       </plugin>
52     </plugins>
53   </build>
54   <scm>
55       <connection>scm:git:ssh://git.opendaylight.org:29418/${repoName}.git</connection>
56       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/${repoName}.git</developerConnection>
57       <tag>HEAD</tag>
58       <url>https://git.opendaylight.org/gerrit/gitweb?p=${repoName}.git;a=summary</url>
59    </scm>
60 </project>