blob: e79f8e7127a82735f91c1bb902e05ec954a89e52 [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 Yutae7aa9252013-06-06 14:54:21 -070033 </properties>
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-install-plugin</artifactId>
39 <version>2.3.1</version>
40 <executions>
41 </executions>
42 </plugin>
43 <!-- guice maven plugin for dependency injection inside maven -->
44 <plugin>
45 <groupId>org.apache.camel</groupId>
46 <artifactId>guice-maven-plugin</artifactId>
47 <version>2.11.0</version>
48 </plugin>
49 <!-- compile -->
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-compiler-plugin</artifactId>
53 <version>2.3.2</version>
54 <configuration>
55 <source>1.6</source>
56 <target>1.6</target>
57 <encoding>UTF-8</encoding>
58 </configuration>
59 <executions>
60 </executions>
61 </plugin>
62 <!-- test -->
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-surefire-plugin</artifactId>
66 <version>2.12</version>
67 <configuration>
68 <excludes>
69 <!-- exclude all test cases for now -->
70 <!-- <exclude>**/storage/tests/StorageTest.java</exclude> -->
71 <!-- <exclude>**/test/*</exclude> -->
72 <exclude>**/test/*</exclude>
73 <exclude>**/Test*.java</exclude>
74 <exclude>**/*Test.java</exclude>
75 <exclude>**/*TestCase.java</exclude>
76 </excludes>
77 </configuration>
78 </plugin>
79 <!-- exec:java -->
80 <plugin>
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>exec-maven-plugin</artifactId>
83 <version>1.2.1</version>
84 <configuration>
85 <mainClass>net.floodlightcontroller.core.Main</mainClass>
86 </configuration>
87 <executions>
88 </executions>
89 </plugin>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>build-helper-maven-plugin</artifactId>
93 <version>1.7</version>
94 <executions>
95 <execution>
96 <id>add-source</id>
97 <phase>generate-sources</phase>
98 <goals>
99 <goal>add-source</goal>
100 </goals>
101 <configuration>
102 <sources>
103 <source>lib/gen-java</source>
104 </sources>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 </plugins>
110 </build>
111 <!-- for getting visualization reporting -->
112 <reporting>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.camel</groupId>
116 <artifactId>guice-maven-plugin</artifactId>
117 <version>2.11.0</version>
118 </plugin>
119 </plugins>
120 </reporting>
121 <dependencies>
122 <dependency>
123 <groupId>asm</groupId>
124 <artifactId>asm-tree</artifactId>
125 <version>3.0</version>
126 </dependency>
127 <dependency>
128 <groupId>net.sourceforge.cobertura</groupId>
129 <artifactId>cobertura</artifactId>
130 <version>1.9.4.1</version>
131 </dependency>
132 <dependency>
133 <groupId>ch.qos.logback</groupId>
134 <artifactId>logback-core</artifactId>
135 <version>1.0.0</version>
136 </dependency>
137 <dependency>
138 <groupId>org.objenesis</groupId>
139 <artifactId>objenesis</artifactId>
140 <version>1.2</version>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700141 <scope>test</scope>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700142 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700143 <!--
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700144 <dependency>
145 <groupId>com.google.guava</groupId>
146 <artifactId>guava</artifactId>
147 <version>13.0.1</version>
148 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700149 -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700150 <dependency>
151 <groupId>ch.qos.logback</groupId>
152 <artifactId>logback-classic</artifactId>
153 <version>1.0.0</version>
154 <scope>runtime</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.codehaus.jackson</groupId>
158 <artifactId>jackson-core-asl</artifactId>
159 <version>1.9.11</version>
160 </dependency>
161 <dependency>
162 <groupId>org.codehaus.jackson</groupId>
163 <artifactId>jackson-mapper-asl</artifactId>
164 <version>1.9.11</version>
165 </dependency>
166 <dependency>
167 <groupId>org.slf4j</groupId>
168 <artifactId>slf4j-api</artifactId>
169 <version>1.6.4</version>
170 </dependency>
171 <dependency>
172 <groupId>org.restlet.jse</groupId>
173 <artifactId>org.restlet</artifactId>
174 <version>2.1-RC1</version>
175 </dependency>
176 <dependency>
177 <groupId>org.restlet.jse</groupId>
178 <artifactId>org.restlet.ext.jackson</artifactId>
179 <version>2.1-RC1</version>
180 </dependency>
181 <dependency>
182 <groupId>org.restlet.jse</groupId>
183 <artifactId>org.restlet.ext.simple</artifactId>
184 <version>2.1-RC1</version>
185 </dependency>
186 <dependency>
187 <groupId>org.restlet.jse</groupId>
188 <artifactId>org.restlet.ext.slf4j</artifactId>
189 <version>2.1-RC1</version>
190 </dependency>
191 <dependency>
192 <groupId>org.simpleframework</groupId>
193 <artifactId>simple</artifactId>
194 <version>4.1.21</version>
195 </dependency>
196 <dependency>
197 <groupId>org.jboss.netty</groupId>
198 <artifactId>netty</artifactId>
199 <version>3.2.6.Final</version>
200 </dependency>
201 <dependency>
202 <groupId>args4j</groupId>
203 <artifactId>args4j</artifactId>
204 <version>2.0.16</version>
205 </dependency>
206 <dependency>
207 <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
208 <artifactId>concurrentlinkedhashmap-lru</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700209 <version>1.3</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700210 </dependency>
211 <dependency>
212 <groupId>org.python</groupId>
213 <artifactId>jython-standalone</artifactId>
214 <version>2.5.2</version>
215 </dependency>
216 <dependency>
217 <groupId>org.apache.thrift</groupId>
218 <artifactId>libthrift</artifactId>
219 <version>0.7.0</version>
220 </dependency>
221 <dependency>
222 <groupId>junit</groupId>
223 <artifactId>junit</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700224 <version>4.11</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700225 <scope>test</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.easymock</groupId>
229 <artifactId>easymock</artifactId>
230 <version>3.1</version>
231 <scope>test</scope>
232 </dependency>
233 <dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700234 <groupId>org.powermock</groupId>
235 <artifactId>powermock-module-junit4</artifactId>
236 <version>${powermock.version}</version>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
240 <groupId>org.powermock</groupId>
241 <artifactId>powermock-api-easymock</artifactId>
242 <version>${powermock.version}</version>
243 <scope>test</scope>
244 </dependency>
245 <dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700246 <groupId>cglib</groupId>
247 <artifactId>cglib-nodep</artifactId>
248 <version>2.2.2</version>
249 </dependency>
250 <dependency>
251 <groupId>com.thinkaurelius.titan</groupId>
252 <artifactId>titan-all</artifactId>
253 <version>0.2.1</version>
254 </dependency>
255 <dependency>
256 <groupId>com.google.inject</groupId>
257 <artifactId>guice</artifactId>
258 <version>3.0</version>
259 </dependency>
260 <dependency>
261 <groupId>com.tinkerpop</groupId>
262 <artifactId>frames</artifactId>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700263 <version>2.3.1</version>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700264 </dependency>
265 <dependency>
266 <groupId>com.tinkerpop.blueprints</groupId>
267 <artifactId>blueprints-core</artifactId>
268 <version>2.3.0</version>
269 </dependency>
HIGUCHI Yuta1ec484a2013-06-06 15:34:01 -0700270 <!-- dependency to locally modified version -->
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700271 <dependency>
272 <groupId>com.netflix.curator</groupId>
273 <artifactId>curator-framework</artifactId>
274 <version>1.3.5-SNAPSHOT</version>
275 </dependency>
276 <dependency>
277 <groupId>com.netflix.curator</groupId>
278 <artifactId>curator-client</artifactId>
279 <version>1.3.5-SNAPSHOT</version>
280 </dependency>
281 <dependency>
282 <groupId>com.netflix.curator</groupId>
283 <artifactId>curator-recipes</artifactId>
284 <version>1.3.5-SNAPSHOT</version>
285 </dependency>
286 <dependency>
287 <groupId>com.netflix.curator</groupId>
288 <artifactId>curator-x-discovery</artifactId>
289 <version>1.3.5-SNAPSHOT</version>
290 </dependency>
291 <!--
292 <dependency>
293 <groupId>net.floodlightcontroller</groupId>
294 <artifactId>packetstreamer-thrift</artifactId>
295 <version>0.1.0</version>
296 </dependency>
297 -->
298 <dependency>
299 <groupId>net.sf.json-lib</groupId>
300 <artifactId>json-lib</artifactId>
301 <version>2.4</version>
302 <classifier>jdk15</classifier>
303 </dependency>
HIGUCHI Yutae4b07222013-06-08 02:17:30 -0700304 <dependency>
305 <groupId>org.apache.cassandra</groupId>
306 <artifactId>apache-cassandra</artifactId>
307 <version>1.2.4</version>
308 <type>pom</type>
309 </dependency>
HIGUCHI Yutae7aa9252013-06-06 14:54:21 -0700310 </dependencies>
311</project>