Refactor pom files to reflects right parents.
[packetcable.git] / packetcable-policy-config / 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   <parent>
13     <artifactId>packetcable</artifactId>
14     <groupId>org.opendaylight.packetcable</groupId>
15     <version>1.3.0-SNAPSHOT</version>
16   </parent>
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   -->
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   -->
27   <artifactId>packetcable-policy-config</artifactId>
28   <groupId>org.opendaylight.packetcable</groupId>
29   <description>Configuration files for md-sal</description>
30   <!-- Optional TODO: Uncomment version if you are not using a parent pom.xml
31    <version>1.2.0-SNAPSHOT</version>
32    -->
33   <packaging>jar</packaging>
34   <properties>
35       <!-- Optional TODO: Rename your configfile to taste -->
36       <configfile>default-config.xml</configfile>
37   </properties>
38   <build>
39     <plugins>
40         <plugin>
41         <groupId>org.codehaus.mojo</groupId>
42         <artifactId>build-helper-maven-plugin</artifactId>
43         <executions>
44           <execution>
45             <id>attach-artifacts</id>
46             <goals>
47               <goal>attach-artifact</goal>
48             </goals>
49             <phase>package</phase>
50             <configuration>
51               <artifacts>
52                 <artifact>
53                   <file>${project.build.directory}/classes/${configfile}</file>
54                   <type>xml</type>
55                   <classifier>config</classifier>
56                 </artifact>
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                 -->
69               </artifacts>
70             </configuration>
71           </execution>
72         </executions>
73       </plugin>
74     </plugins>
75   </build>
76   <scm>
77       <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
78       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
79       <tag>HEAD</tag>
80       <url>https://git.opendaylight.org/gerrit/gitweb?p=packetcable.git;a=summary</url>
81    </scm>
82 </project>