Merge "BUG-2459: Fix netconf-monitoring not reusing JAXB context"
[controller.git] / features / neutron / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../../opendaylight/commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>features-neutron</artifactId>
11   <version>${networkconfig.neutron.version}</version>
12   <packaging>jar</packaging>
13
14   <properties>
15     <features.file>features.xml</features.file>
16   </properties>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>networkconfig.neutron</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.osgi</groupId>
25       <artifactId>org.osgi.core</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>com.sun.jersey</groupId>
29       <artifactId>jersey-core</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>com.sun.jersey</groupId>
33       <artifactId>jersey-server</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.sun.jersey</groupId>
37       <artifactId>jersey-servlet</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.eclipse.persistence</groupId>
41       <artifactId>org.eclipse.persistence.moxy</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.eclipse.persistence</groupId>
45       <artifactId>org.eclipse.persistence.core</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>networkconfig.neutron</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>commons-net</groupId>
53       <artifactId>commons-net</artifactId>
54     </dependency>
55     <!-- test to validate features.xml -->
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>features-test</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>features-test</artifactId>
63       <version>0.7.0-SNAPSHOT</version>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <resources>
69       <resource>
70         <filtering>true</filtering>
71         <directory>src/main/resources</directory>
72       </resource>
73     </resources>
74     <plugins>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-resources-plugin</artifactId>
78         <executions>
79           <execution>
80             <id>filter</id>
81             <goals>
82               <goal>resources</goal>
83             </goals>
84             <phase>generate-resources</phase>
85           </execution>
86         </executions>
87       </plugin>
88       <plugin>
89         <groupId>org.codehaus.mojo</groupId>
90         <artifactId>build-helper-maven-plugin</artifactId>
91         <executions>
92           <execution>
93             <id>attach-artifacts</id>
94             <goals>
95               <goal>attach-artifact</goal>
96             </goals>
97             <phase>package</phase>
98             <configuration>
99               <artifacts>
100                 <artifact>
101                   <file>${project.build.directory}/classes/${features.file}</file>
102                   <type>xml</type>
103                   <classifier>features</classifier>
104                 </artifact>
105               </artifacts>
106             </configuration>
107           </execution>
108         </executions>
109       </plugin>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-surefire-plugin</artifactId>
113         <configuration>
114           <systemPropertyVariables>
115             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
116             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
117             <karaf.distro.version>${commons.opendaylight.version}</karaf.distro.version>
118           </systemPropertyVariables>
119           <dependenciesToScan>
120            <dependency>org.opendaylight.yangtools:features-test</dependency>
121           </dependenciesToScan>
122         </configuration>
123       </plugin>
124     </plugins>
125   </build>
126   <scm>
127     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
128     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
129     <tag>HEAD</tag>
130     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
131   </scm>
132 </project>