blob: 0957c42681760f2f99284e9919f1157ff9f9ba99 [file] [log] [blame]
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -07001<?xml version="1.0"?>
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 <prerequisites>
5 <maven>3.0.4</maven>
6 </prerequisites>
7 <groupId>net.onrc.onos</groupId>
HIGUCHI Yuta1ec484a2013-06-06 15:34:01 -07008 <artifactId>ONOS</artifactId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -07009 <version>0.1.0</version>
10 <packaging>jar</packaging>
HIGUCHI Yuta1ec484a2013-06-06 15:34:01 -070011 <name>ONOS</name>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070012 <url>http://onlab.us/</url>
13 <repositories>
14 <repository>
15 <id>central</id>
16 <name>Maven Central repository</name>
17 <url>http://repo1.maven.org/maven2</url>
18 </repository>
19 <repository>
20 <id>maven-restlet</id>
21 <name>Public online Restlet repository</name>
22 <url>http://maven.restlet.org</url>
23 </repository>
24 <repository>
25 <id>tinkerpop-repository</id>
26 <name>TinkerPop Maven2 Repository</name>
27 <url>http://tinkerpop.com/maven2</url>
28 </repository>
29 </repositories>
30 <properties>
31 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -070032 <powermock.version>1.5</powermock.version>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070033 <restlet.version>2.1-RC1</restlet.version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070034 </properties>
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-install-plugin</artifactId>
40 <version>2.3.1</version>
41 <executions>
42 </executions>
43 </plugin>
44 <!-- guice maven plugin for dependency injection inside maven -->
45 <plugin>
46 <groupId>org.apache.camel</groupId>
47 <artifactId>guice-maven-plugin</artifactId>
48 <version>2.11.0</version>
49 </plugin>
50 <!-- compile -->
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-compiler-plugin</artifactId>
54 <version>2.3.2</version>
55 <configuration>
56 <source>1.6</source>
57 <target>1.6</target>
58 <encoding>UTF-8</encoding>
59 </configuration>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070060 <executions>
61 </executions>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070062 </plugin>
63 <!-- test -->
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-surefire-plugin</artifactId>
67 <version>2.12</version>
68 <configuration>
69 <excludes>
70 <!-- exclude all test cases for now -->
71 <!-- <exclude>**/storage/tests/StorageTest.java</exclude> -->
72 <!-- <exclude>**/test/*</exclude> -->
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070073 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070074 <exclude>**/test/*</exclude>
75 <exclude>**/Test*.java</exclude>
76 <exclude>**/*Test.java</exclude>
77 <exclude>**/*TestCase.java</exclude>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -070078 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070079 </excludes>
80 </configuration>
81 </plugin>
82 <!-- exec:java -->
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>exec-maven-plugin</artifactId>
86 <version>1.2.1</version>
87 <configuration>
88 <mainClass>net.floodlightcontroller.core.Main</mainClass>
89 </configuration>
90 <executions>
91 </executions>
92 </plugin>
Jonathan Hart72f72f62013-06-12 09:54:19 +120093 <!--<plugin>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -070094 <groupId>org.codehaus.mojo</groupId>
95 <artifactId>build-helper-maven-plugin</artifactId>
96 <version>1.7</version>
97 <executions>
98 <execution>
99 <id>add-source</id>
100 <phase>generate-sources</phase>
101 <goals>
102 <goal>add-source</goal>
103 </goals>
104 <configuration>
105 <sources>
106 <source>lib/gen-java</source>
107 </sources>
108 </configuration>
109 </execution>
110 </executions>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200111 </plugin>-->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700112 </plugins>
113 </build>
114 <!-- for getting visualization reporting -->
115 <reporting>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.camel</groupId>
119 <artifactId>guice-maven-plugin</artifactId>
120 <version>2.11.0</version>
121 </plugin>
122 </plugins>
123 </reporting>
124 <dependencies>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700125 <!-- ONOS's direct dependencies -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700126 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700127 <groupId>org.apache.cassandra</groupId>
128 <artifactId>apache-cassandra</artifactId>
129 <version>1.2.4</version>
130 <type>pom</type>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700131 </dependency>
132 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700133 <groupId>com.thinkaurelius.titan</groupId>
134 <artifactId>titan-all</artifactId>
135 <version>0.2.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700136 </dependency>
137 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700138 <groupId>com.tinkerpop</groupId>
139 <artifactId>frames</artifactId>
140 <version>2.3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700141 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700142 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700143 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700144 <groupId>com.tinkerpop.blueprints</groupId>
145 <artifactId>blueprints-core</artifactId>
146 <version>2.3.0</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700147 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700148 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700149 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700150 <groupId>net.sf.json-lib</groupId>
151 <artifactId>json-lib</artifactId>
152 <version>2.4</version>
153 <classifier>jdk15</classifier>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700154 </dependency>
155 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700156 <groupId>org.restlet.jse</groupId>
157 <artifactId>org.restlet</artifactId>
158 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700159 </dependency>
160 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700161 <groupId>org.restlet.jse</groupId>
162 <artifactId>org.restlet.ext.slf4j</artifactId>
163 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700164 </dependency>
165 <dependency>
166 <groupId>org.codehaus.jackson</groupId>
167 <artifactId>jackson-core-asl</artifactId>
168 <version>1.9.11</version>
169 </dependency>
170 <dependency>
171 <groupId>org.codehaus.jackson</groupId>
172 <artifactId>jackson-mapper-asl</artifactId>
173 <version>1.9.11</version>
174 </dependency>
175 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700176 <groupId>ch.qos.logback</groupId>
177 <artifactId>logback-core</artifactId>
178 <version>1.0.0</version>
179 </dependency>
180 <dependency>
181 <groupId>ch.qos.logback</groupId>
182 <artifactId>logback-classic</artifactId>
183 <version>1.0.0</version>
184 <scope>runtime</scope>
185 </dependency>
186 <!-- Floodlight's dependencies -->
187 <dependency>
188 <groupId>net.sourceforge.cobertura</groupId>
189 <artifactId>cobertura</artifactId>
190 <version>1.9.4.1</version>
191 </dependency>
192 <!--
193 <dependency>
194 <groupId>com.google.guava</groupId>
195 <artifactId>guava</artifactId>
196 <version>13.0.1</version>
197 </dependency>
198 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700199 <dependency>
200 <groupId>org.slf4j</groupId>
201 <artifactId>slf4j-api</artifactId>
202 <version>1.6.4</version>
203 </dependency>
204 <dependency>
205 <groupId>org.restlet.jse</groupId>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700206 <artifactId>org.restlet.ext.jackson</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700207 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700208 </dependency>
209 <dependency>
210 <groupId>org.restlet.jse</groupId>
211 <artifactId>org.restlet.ext.simple</artifactId>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700212 <version>${restlet.version}</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700213 </dependency>
214 <dependency>
215 <groupId>org.simpleframework</groupId>
216 <artifactId>simple</artifactId>
217 <version>4.1.21</version>
218 </dependency>
219 <dependency>
220 <groupId>org.jboss.netty</groupId>
221 <artifactId>netty</artifactId>
222 <version>3.2.6.Final</version>
223 </dependency>
224 <dependency>
225 <groupId>args4j</groupId>
226 <artifactId>args4j</artifactId>
227 <version>2.0.16</version>
228 </dependency>
229 <dependency>
230 <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
231 <artifactId>concurrentlinkedhashmap-lru</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700232 <version>1.3</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700233 </dependency>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200234 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700235 <groupId>org.python</groupId>
236 <artifactId>jython-standalone</artifactId>
237 <version>2.5.2</version>
Jonathan Harta37f9c32013-06-12 09:13:58 +1200238 </dependency>-->
Jonathan Hart72f72f62013-06-12 09:54:19 +1200239 <!--<dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700240 <groupId>org.apache.thrift</groupId>
241 <artifactId>libthrift</artifactId>
242 <version>0.7.0</version>
Jonathan Hart72f72f62013-06-12 09:54:19 +1200243 </dependency>-->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700244 <dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700245 <groupId>com.google.inject</groupId>
246 <artifactId>guice</artifactId>
247 <version>3.0</version>
248 </dependency>
249 <!-- Dependency for libraries used for testing -->
250 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700251 <groupId>junit</groupId>
252 <artifactId>junit</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700253 <version>4.11</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700254 <scope>test</scope>
255 </dependency>
256 <dependency>
257 <groupId>org.easymock</groupId>
258 <artifactId>easymock</artifactId>
259 <version>3.1</version>
260 <scope>test</scope>
261 </dependency>
262 <dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700263 <groupId>org.powermock</groupId>
264 <artifactId>powermock-module-junit4</artifactId>
265 <version>${powermock.version}</version>
266 <scope>test</scope>
267 </dependency>
268 <dependency>
269 <groupId>org.powermock</groupId>
270 <artifactId>powermock-api-easymock</artifactId>
271 <version>${powermock.version}</version>
272 <scope>test</scope>
273 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700274 <!--
275 <dependency>
276 <groupId>org.objenesis</groupId>
277 <artifactId>objenesis</artifactId>
278 <version>1.2</version>
279 <scope>test</scope>
280 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700281 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700282 <groupId>cglib</groupId>
283 <artifactId>cglib-nodep</artifactId>
284 <version>2.2.2</version>
285 </dependency>
HIGUCHI Yuta9f5c5a72013-06-11 13:21:43 -0700286 -->
HIGUCHI Yuta1ec484a2013-06-06 15:34:01 -0700287 <!-- dependency to locally modified version -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700288 <dependency>
289 <groupId>com.netflix.curator</groupId>
290 <artifactId>curator-framework</artifactId>
291 <version>1.3.5-SNAPSHOT</version>
292 </dependency>
293 <dependency>
294 <groupId>com.netflix.curator</groupId>
295 <artifactId>curator-client</artifactId>
296 <version>1.3.5-SNAPSHOT</version>
297 </dependency>
298 <dependency>
299 <groupId>com.netflix.curator</groupId>
300 <artifactId>curator-recipes</artifactId>
301 <version>1.3.5-SNAPSHOT</version>
302 </dependency>
303 <dependency>
304 <groupId>com.netflix.curator</groupId>
305 <artifactId>curator-x-discovery</artifactId>
306 <version>1.3.5-SNAPSHOT</version>
307 </dependency>
308 <!--
309 <dependency>
310 <groupId>net.floodlightcontroller</groupId>
311 <artifactId>packetstreamer-thrift</artifactId>
312 <version>0.1.0</version>
313 </dependency>
314 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700315 </dependencies>
316</project>