Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,18 @@ This repository contains sample and testing applications for ONOS.
ONOS is a new SDN network operating system designed for high availability,
performance, scale-out.

You can find the main project repository here:
https://github.com/opennetworkinglab/onos
### Versions
ONOS 2.7.0 <br/>
Apache Maven 3.6.3<br/>
Java version: 11.0.20, vendor: Ubuntu, runtime: /usr/lib/jvm/java-11-openjdk-amd64<br/>




### Where can I learn more about ONOS?
Checkout out our [website](http://www.onosproject.org) and our
[tools](http://www.onosproject.org/software/#tools)
<br/><br/>
You can find the main project repository here:<br/>
https://github.com/opennetworkinglab/onos

3 changes: 2 additions & 1 deletion carrierethernet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,11 @@
<target>1.8</target>
</configuration>
</plugin>
<!-- Updated apache.felix version from 1.21.0 to 1.22.0 for onos 2.7.0 compatibility-->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.21.0</version>
<version>1.22.0</version>
<executions>
<execution>
<id>generate-scr-srcdescriptor</id>
Expand Down
10 changes: 10 additions & 0 deletions ipfix/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,16 @@
</goals>
</execution>
</executions>
<!-- Added plugin for onos 2.7.0 compatibility-->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
23 changes: 23 additions & 0 deletions mef-nrp-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,29 @@
<artifactId>jersey-media-multipart</artifactId>
</dependency>

<!-- New dependencies for onos 2.7.0 compatibility -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>


<!-- End of extra dependencies due to MEF NRP API code -->

</dependencies>
Expand Down
22 changes: 22 additions & 0 deletions mef-sca-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,28 @@
<artifactId>jersey-media-multipart</artifactId>
</dependency>

<!-- New dependencies for onos 2.7.0 compatibility -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>

<!-- End of extra dependencies due to MEF SCA API code -->

</dependencies>
Expand Down
10 changes: 10 additions & 0 deletions pppoe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@
<groupId>org.onosproject</groupId>
<artifactId>onos-maven-plugin</artifactId>
</plugin>
<!--Added plugin for onos 2.7.0 compatibility-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
10 changes: 10 additions & 0 deletions sdx-l2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,16 @@
</execution>
</executions>
</plugin>
<!--Added a plugin for onos 2.7.0 compatibility-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
10 changes: 10 additions & 0 deletions sdx-l3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,16 @@
<groupId>org.onosproject</groupId>
<artifactId>onos-maven-plugin</artifactId>
</plugin>
<!--Added a plugin for onos 2.7.0 compatibility-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>