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