blob: 2557576fbe89a30c0f1f5462780f2635a1962707 [file] [log] [blame]
srikanth116e6e82014-08-19 07:22:37 -07001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 <groupId>org.opendaylight.netvirtplatform</groupId>
5 <artifactId>netvirtplatform-parent</artifactId>
6 <version>0.0.1-SNAPSHOT</version>
7 <name>Net Virt Platform Parent</name>
8 <description></description>
9
10 <packaging>pom</packaging>
11 <url>http://www.opendaylight.org</url>
12 <scm>
13 <connection>scm:git:https://git.opendaylight.org/gerrit/p/net-virt-platform.git</connection>
14 </scm>
15 <properties>
16 <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 </properties>
19
20 <modules>
21 <module>../../distribution/netvirtplatform</module>
22 <module>../../sdnplatform</module>
23 <module>../../staging/adaptors/adaptor.controllerservice</module>
24 </modules>
25
26 <repositories>
27 <!-- EBR release -->
28 <!-- http://repository.springsource.com/maven/bundles/release -->
29 <repository>
30 <id>ebr-bundles-release</id>
31 <name>ebr-bundles-release</name>
32 <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
33 </repository>
34 <!-- EBR external -->
35 <!-- http://repository.springsource.com/maven/bundles/external -->
36 <repository>
37 <id>ebr-bundles-external</id>
38 <name>ebr-bundles-external</name>
39 <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
40 </repository>
41 <!-- Maven repo2 mirror -->
42 <!-- http://repo2.maven.org/maven2 -->
43 <repository>
44 <id>central2</id>
45 <name>central2</name>
46 <url>${nexusproxy}/repositories/central2/</url>
47 </repository>
48 <!-- Maven repo1 mirror -->
49 <!-- http://repo1.maven.org/maven2 -->
50 <repository>
51 <id>central</id>
52 <name>central</name>
53 <url>${nexusproxy}/repositories/central/</url>
54 </repository>
55 <!-- Pax mirror -->
56 <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
57 <repository>
58 <id>ops4j-releases</id>
59 <name>ops4j-releases</name>
60 <url>${nexusproxy}/repositories/ops4j-releases/</url>
61 </repository>
62 <!-- Third Packages hosted in local maven because not available in other
63 places -->
64 <repository>
65 <id>thirdparty</id>
66 <name>thirdparty</name>
67 <url>${nexusproxy}/repositories/thirdparty/</url>
68 </repository>
69 <!-- Jboss mirror -->
70 <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
71 <repository>
72 <id>jboss.releases</id>
73 <name>jboss.releases</name>
74 <url>${nexusproxy}/repositories/jboss.releases/</url>
75 </repository>
76 <!-- OpenDayLight Released artifact -->
77 <repository>
78 <id>opendaylight-release</id>
79 <name>opendaylight-release</name>
80 <url>${nexusproxy}/repositories/opendaylight.release/</url>
81 </repository>
82 <!-- OpenDayLight Snapshot artifact -->
83 <repository>
84 <id>opendaylight-snapshot</id>
85 <name>opendaylight-snapshot</name>
86 <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
87 </repository>
88 <!-- Needed for the org.restlet.* dependencies. -->
89 <repository>
90 <id>maven-restlet</id>
91 <name>Public online Restlet repository</name>
92 <url>http://maven.restlet.org</url>
93 <snapshots>
94 <enabled>true</enabled>
95 <updatePolicy>never</updatePolicy>
96 </snapshots>
97 </repository>
98 </repositories>
99
100 <distributionManagement>
101 <!-- OpenDayLight Released artifact -->
102 <repository>
103 <id>opendaylight-release</id>
104 <url>${nexusproxy}/repositories/opendaylight.release/</url>
105 </repository>
106 <!-- OpenDayLight Snapshot artifact -->
107 <snapshotRepository>
108 <id>opendaylight-snapshot</id>
109 <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
110 </snapshotRepository>
111 <!-- Site deployment -->
112 </distributionManagement>
113
114 <build>
115 <pluginManagement>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>maven-bundle-plugin</artifactId>
120 <version>2.3.6</version>
121 <extensions>true</extensions>
122 <configuration>
123 <manifestLocation>${project.basedir}/META-INF</manifestLocation>
124 </configuration>
125 </plugin>
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-assembly-plugin</artifactId>
129 <version>2.4</version>
130 </plugin>
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-compiler-plugin</artifactId>
134 <version>2.3.2</version>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-dependency-plugin</artifactId>
139 <version>2.8</version>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-surefire-plugin</artifactId>
144 <version>2.14.1</version>
145 </plugin>
146 </plugins>
147 </pluginManagement>
148 </build>
149</project>