Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tom
2014-09-22 11:58:56 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
66a7eb220daedca4be3b63adedac3f6ca15fa551
66a7eb22
1 parent
25236f5b
Fixed deployment to allow all the Kryo related stuff to operate in the OSGi context.
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
11 deletions
features/features.xml
pom.xml
utils/misc/pom.xml
features/features.xml
View file @
66a7eb2
...
...
@@ -6,10 +6,13 @@
<feature
name=
"onos-thirdparty-base"
version=
"1.0.0"
description=
"ONOS 3rd party dependencies"
>
<bundle>
mvn:commons-lang/commons-lang/2.6
</bundle>
<bundle>
mvn:org.apache.commons/commons-lang3/3.3.2
</bundle>
<bundle>
mvn:com.google.guava/guava/18.0
</bundle>
<bundle>
mvn:io.netty/netty/3.9.2.Final
</bundle>
<bundle>
mvn:com.esotericsoftware.kryo/kryo/2.24.0
</bundle>
<bundle>
mvn:com.esotericsoftware.minlog/minlog/1.3
</bundle>
<bundle>
mvn:com.esotericsoftware/minlog/1.3.0
</bundle>
<bundle>
mvn:org.objenesis/objenesis/2.1
</bundle>
</feature>
<feature
name=
"onos-thirdparty-web"
version=
"1.0.0"
...
...
pom.xml
View file @
66a7eb2
...
...
@@ -73,8 +73,6 @@
<version>
3.9.0.Final
</version>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava-testlib
</artifactId>
...
...
@@ -88,6 +86,13 @@
<version>
2.6
</version>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
<version>
3.3.2
</version>
</dependency>
<!-- Web related -->
<dependency>
<groupId>
com.sun.jersey
</groupId>
...
...
@@ -139,17 +144,21 @@
<version>
2.24.0
</version>
</dependency>
<dependency>
<groupId>
com.esotericsoftware
</groupId>
<artifactId>
minlog
</artifactId>
<version>
1.3.0
</version>
</dependency>
<dependency>
<groupId>
org.objenesis
</groupId>
<artifactId>
objenesis
</artifactId>
<version>
2.1
</version>
</dependency>
<dependency>
<groupId>
de.javakaffee
</groupId>
<artifactId>
kryo-serializers
</artifactId>
<version>
0.27
</version>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
<version>
3.3.2
</version>
</dependency>
<!-- ONOS related -->
<dependency>
<groupId>
org.onlab.onos
</groupId>
...
...
utils/misc/pom.xml
View file @
66a7eb2
...
...
@@ -31,12 +31,21 @@
<artifactId>
commons-lang
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
</dependency>
<dependency>
<groupId>
com.esotericsoftware.kryo
</groupId>
<artifactId>
kryo
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
<groupId>
com.esotericsoftware
</groupId>
<artifactId>
minlog
</artifactId>
</dependency>
<dependency>
<groupId>
org.objenesis
</groupId>
<artifactId>
objenesis
</artifactId>
</dependency>
</dependencies>
...
...
Please
register
or
login
to post a comment