Properties in root pom.xml are sorted now.
[integration/distribution.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/xsd/maven-4.0.0.xsd">
3   <parent>
4     <groupId>org.opendaylight.odlparent</groupId>
5     <artifactId>odlparent</artifactId>
6     <version>1.5.0-SNAPSHOT</version>
7     <relativePath/>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.opendaylight.integration</groupId>
11   <artifactId>root</artifactId>
12   <version>0.3.0-SNAPSHOT</version>
13   <name>integration</name> <!-- Used by Sonar to set project name -->
14   <packaging>pom</packaging>
15   <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
16   <scm>
17     <connection>scm:git:ssh://git.opendaylight.org:29418/integration.git</connection>
18     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration.git</developerConnection>
19     <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
20     <tag>HEAD</tag>
21   </scm>
22   <properties>
23     <!-- Keep this list sorted alphabetically please -->
24     <checkstyle.version>2.13</checkstyle.version>
25     <didm.version>0.1.0-SNAPSHOT</didm.version>
26     <enforcer.version>1.3.1</enforcer.version>
27     <feature.adsal.version>0.9.0-SNAPSHOT</feature.adsal.version>
28     <feature.bgpcep.version>0.4.0-SNAPSHOT</feature.bgpcep.version>
29     <feature.capwap.version>0.1.0-SNAPSHOT</feature.capwap.version>
30     <feature.dlux.version>0.2.0-SNAPSHOT</feature.dlux.version>
31     <feature.flow.version>1.2.0-SNAPSHOT</feature.flow.version>
32     <feature.groupbasedpolicy.version>0.2.0-SNAPSHOT</feature.groupbasedpolicy.version>
33     <feature.iotdm.version>0.0.1-SNAPSHOT</feature.iotdm.version>
34     <feature.lacp.version>1.0.0-SNAPSHOT</feature.lacp.version>
35     <feature.lispflowmapping.version>1.2.0-SNAPSHOT</feature.lispflowmapping.version>
36     <feature.mdsal.version>1.2.0-SNAPSHOT</feature.mdsal.version>
37     <feature.nsf.version>0.5.0-SNAPSHOT</feature.nsf.version>
38     <feature.neutron.version>0.5.0-SNAPSHOT</feature.neutron.version>
39     <feature.openflowplugin.version>0.1.0-SNAPSHOT</feature.openflowplugin.version>
40     <feature.ovsdb.openstack.version>1.1.0-SNAPSHOT</feature.ovsdb.openstack.version>
41     <feature.ovsdb.version>1.1.0-SNAPSHOT</feature.ovsdb.version>
42     <feature.packetcable.version>1.2.0-SNAPSHOT</feature.packetcable.version>
43     <feature.plugin2oc.version>0.2.0-SNAPSHOT</feature.plugin2oc.version>
44     <feature.sfc.version>0.1.0-SNAPSHOT</feature.sfc.version>
45     <feature.snbi.version>1.1.0-SNAPSHOT</feature.snbi.version>
46     <feature.tcpmd5.version>1.1.0-SNAPSHOT</feature.tcpmd5.version>
47     <feature.topoprocessing.version>0.0.1-SNAPSHOT</feature.topoprocessing.version>
48     <feature.ttp.version>0.1.0-SNAPSHOT</feature.ttp.version>
49     <feature.usc.version>1.0-SNAPSHOT</feature.usc.version>
50     <feature.vpnservice.version>1.0-SNAPSHOT</feature.vpnservice.version>
51     <feature.vtn-manager.version>0.3.0-SNAPSHOT</feature.vtn-manager.version>
52     <feature.yangtools.version>0.7.0-SNAPSHOT</feature.yangtools.version>
53     <karaf.branding.version>1.1.0-SNAPSHOT</karaf.branding.version>
54     <maven.surefire.version>2.16</maven.surefire.version>
55     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
56     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57     <snmp.plugin.version>1.0-SNAPSHOT</snmp.plugin.version>
58     <!-- Keep this list sorted alphabetically please -->
59   </properties>
60   <modules>
61     <module>distributions/</module>
62     <module>features/</module>
63     <module>feature-selector</module>
64   </modules>
65   <repositories>
66     <!-- OpenDayLight Repo Mirror -->
67     <repository>
68       <id>opendaylight-mirror</id>
69       <name>opendaylight-mirror</name>
70       <url>${nexusproxy}/groups/public/</url>
71       <snapshots>
72           <enabled>false</enabled>
73       </snapshots>
74       <releases>
75           <enabled>true</enabled>
76           <updatePolicy>never</updatePolicy>
77       </releases>
78     </repository>
79     <!-- OpenDayLight Snapshot artifact -->
80     <repository>
81       <id>opendaylight-snapshot</id>
82       <name>opendaylight-snapshot</name>
83       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
84       <snapshots>
85           <enabled>true</enabled>
86       </snapshots>
87       <releases>
88           <enabled>false</enabled>
89       </releases>
90     </repository>
91   </repositories>
92   <pluginRepositories>
93     <pluginRepository>
94       <id>central2</id>
95       <name>central2</name>
96       <url>${nexusproxy}/repositories/central2/</url>
97     </pluginRepository>
98     <pluginRepository>
99       <id>opendaylight-snapshot</id>
100       <name>central2</name>
101       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
102     </pluginRepository>
103   </pluginRepositories>
104   <distributionManagement>
105     <!-- OpenDayLight Released artifact -->
106     <repository>
107       <id>opendaylight-release</id>
108       <url>${nexusproxy}/repositories/opendaylight.release/</url>
109     </repository>
110     <!-- OpenDayLight Snapshot artifact -->
111     <snapshotRepository>
112       <id>opendaylight-snapshot</id>
113       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
114     </snapshotRepository>
115     <site>
116       <id>${project.artifactId}-site</id>
117       <url>./</url>
118     </site>
119   </distributionManagement>
120   <build>
121     <pluginManagement>
122       <plugins>
123         <plugin>
124           <groupId>org.apache.maven.plugins</groupId>
125           <artifactId>maven-surefire-plugin</artifactId>
126           <version>${maven.surefire.version}</version>
127         </plugin>
128       </plugins>
129     </pluginManagement>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-enforcer-plugin</artifactId>
134         <version>${enforcer.version}</version>
135         <executions>
136           <execution>
137             <id>enforce-maven</id>
138             <goals>
139               <goal>enforce</goal>
140             </goals>
141             <configuration>
142               <rules>
143                 <requireMavenVersion>
144                   <version>3.1.1</version>
145                 </requireMavenVersion>
146               </rules>
147             </configuration>
148           </execution>
149         </executions>
150       </plugin>
151     </plugins>
152   </build>
153 </project>