Merge "Remove AD-SAL dependencies from Neutron service"
[lispflowmapping.git] / 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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.lispflowmapping</groupId>
6     <artifactId>lispflowmapping-commons</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>commons/parent</relativePath>
9   </parent>
10
11   <artifactId>lispflowmapping-all</artifactId>
12   <packaging>pom</packaging>
13   <!-- Used by Sonar to set project name -->
14   <name>lispflowmapping</name>
15
16   <modules>
17     <module>commons/parent</module>
18     <module>commons/build_tools</module>
19     <module>commons/unittest_tools</module>
20     <module>mappingservice</module>
21     <module>distribution</module>
22     <module>features</module>
23     <module>artifacts</module>
24     <module>distribution-karaf</module>
25   </modules>
26
27   <build>
28     <pluginManagement>
29       <plugins>
30         <plugin>
31           <!-- we are overriding the default version of this plugin here... not sure why. -->
32           <groupId>org.apache.maven.plugins</groupId>
33           <artifactId>maven-dependency-plugin</artifactId>
34           <version>2.8</version>
35         </plugin>
36       </plugins>
37     </pluginManagement>
38     <plugins>
39       <plugin>
40         <!-- In this project we want to automatically sort all poms, thus we
41              add the invocation of this plugin to the root parent. Configuration is in
42              the ODL parent. -->
43         <groupId>com.google.code.sortpom</groupId>
44         <artifactId>maven-sortpom-plugin</artifactId>
45       </plugin>
46       <plugin>
47         <!-- Check for coding style violations.  Configuration in the parent pom. -->
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-checkstyle-plugin</artifactId>
50       </plugin>
51     </plugins>
52   </build>
53
54   <repositories>
55     <!-- NOTE: The repositories and plugin repositories sections need fully
56          qualified URLs to the nexus because it has to download the parent. There
57          seems to be a bug where you need to parent before any properties can be substituted
58          in. You can override this URL by using the "mirror" section of your settings.xml
59          configuration file. See http://maven.apache.org/guides/mini/guide-mirror-settings.html -->
60     <!-- OpenDayLight Repo Mirror -->
61     <repository>
62       <releases>
63         <enabled>true</enabled>
64         <updatePolicy>never</updatePolicy>
65       </releases>
66       <snapshots>
67         <enabled>false</enabled>
68       </snapshots>
69       <id>opendaylight-mirror</id>
70       <name>opendaylight-mirror</name>
71       <url>http://nexus.opendaylight.org/content/groups/public/</url>
72     </repository>
73     <!-- OpenDayLight Snapshot artifact -->
74     <repository>
75       <releases>
76         <enabled>false</enabled>
77       </releases>
78       <snapshots>
79         <enabled>true</enabled>
80       </snapshots>
81       <id>opendaylight-snapshot</id>
82       <name>opendaylight-snapshot</name>
83       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
84     </repository>
85     <repository>
86       <releases>
87         <enabled>true</enabled>
88       </releases>
89       <snapshots>
90         <enabled>false</enabled>
91       </snapshots>
92       <id>opendaylight-snapshot-release</id>
93       <name>opendaylight-snapshot-release</name>
94       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
95     </repository>
96     <repository>
97       <snapshots>
98         <enabled>true</enabled>
99         <updatePolicy>never</updatePolicy>
100       </snapshots>
101       <id>maven-restlet</id>
102       <name>Public online Restlet repository</name>
103       <url>http://maven.restlet.org</url>
104     </repository>
105   </repositories>
106
107   <pluginRepositories>
108     <!-- see above note about mirrors and hard coded URLs. -->
109     <!-- OpenDayLight Repo Mirror -->
110     <pluginRepository>
111       <releases>
112         <enabled>true</enabled>
113         <updatePolicy>never</updatePolicy>
114       </releases>
115       <snapshots>
116         <enabled>false</enabled>
117       </snapshots>
118       <id>opendaylight-mirror</id>
119       <name>opendaylight-mirror</name>
120       <url>http://nexus.opendaylight.org/content/groups/public/</url>
121     </pluginRepository>
122     <!-- OpenDayLight Snapshot artifact -->
123     <pluginRepository>
124       <releases>
125         <enabled>false</enabled>
126       </releases>
127       <snapshots>
128         <enabled>true</enabled>
129       </snapshots>
130       <id>opendaylight-snapshot</id>
131       <name>opendaylight-snapshot</name>
132       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
133     </pluginRepository>
134   </pluginRepositories>
135
136 </project>