33afb20e5e6309b2bd932ff9ea4422ca474aebfd
[packetcable.git] / packetcable-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
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">\r
9 \r
10   <modelVersion>4.0.0</modelVersion>\r
11 \r
12   <parent>\r
13     <artifactId>packetcable</artifactId>\r
14     <groupId>org.opendaylight.packetcable</groupId>\r
15     <version>1.2.0-SNAPSHOT</version>\r
16   </parent>\r
17   <!--
18     Necessary TODO: Hookup your parent pom here, else you will not get necessary versions,
19     maven repos etc.  If you run this archetype in a subdirectory of your project, it
20     will pick the pom.xml from the parent directory as the parent pom, which may or may
21     not be correct.
22   -->\r
23   <!-- 
24     Necessary TODO: Replace the contents of src/main/resources/80-packetcable.xml with
25     the proper config subsystem contents for your module
26   -->\r
27   <artifactId>packetcable-config</artifactId>\r
28   <groupId>org.opendaylight.packetcable</groupId>\r
29   <description>Configuration files for md-sal</description>\r
30   <!-- Optional TODO: Uncomment version if you are not using a parent pom.xml
31    <version>1.1.0-SNAPSHOT</version>
32    -->\r
33   <packaging>jar</packaging>\r
34   <properties>\r
35       <!-- Optional TODO: Rename your configfile to taste -->\r
36       <configfile>80-packetcable.xml</configfile>\r
37   </properties>\r
38   <build>\r
39     <plugins>\r
40         <plugin>\r
41         <groupId>org.codehaus.mojo</groupId>\r
42         <artifactId>build-helper-maven-plugin</artifactId>\r
43         <executions>\r
44           <execution>\r
45             <id>attach-artifacts</id>\r
46             <goals>\r
47               <goal>attach-artifact</goal>\r
48             </goals>\r
49             <phase>package</phase>\r
50             <configuration>\r
51               <artifacts>\r
52                 <artifact>\r
53                   <file>${project.build.directory}/classes/${configfile}</file>\r
54                   <type>xml</type>\r
55                   <classifier>config</classifier>\r
56                 </artifact>\r
57                 <!--
58                   Optional TODO: Add additional config files
59                     You may need to add more than one config file
60                     if so, you just need to add additional <artifact> entries
61                     here WITH DIFFERENT CLASSIFIERS
62                     Example:
63                     <artifact>
64                       <file>${project.build.directory}/classes/<another-configfile></file>
65                       <type>xml</type>
66                       <classifier>config-<meaningful suffix to describe your other configfile></classifier>
67                     </artifact>
68                 -->\r
69               </artifacts>\r
70             </configuration>\r
71           </execution>\r
72         </executions>\r
73       </plugin>\r
74     </plugins>\r
75   </build>\r
76   <scm>\r
77       <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>\r
78       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>\r
79       <tag>HEAD</tag>\r
80       <url>https://git.opendaylight.org/gerrit/gitweb?p=packetcable.git;a=summary</url>\r
81    </scm>\r
82 </project>\r