| <?xml version="1.0" encoding="UTF-8"?> |
| <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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onos</artifactId> |
| <packaging>pom</packaging> |
| <version>1.0.0-SNAPSHOT</version> |
| |
| <description>Open Networking Operating System root project</description> |
| |
| <modules> |
| <module>tools/build/conf</module> |
| <module>utils</module> |
| <module>core</module> |
| <module>web</module> |
| <module>cli</module> |
| <module>providers</module> |
| <module>openflow</module> |
| <module>apps</module> |
| <module>features</module> |
| <module>tools/package/branding</module> |
| </modules> |
| |
| <url>http://onlab.us/</url> |
| |
| <licenses> |
| <license> |
| <!-- TODO: Is this really our license scheme? --> |
| <name>Apache License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| </license> |
| </licenses> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.11</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.6</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| <version>1.7.6</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>18.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| <version>3.9.0.Final</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava-testlib</artifactId> |
| <version>18.0</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <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> |
| <artifactId>jersey-servlet</artifactId> |
| <version>1.18.1</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>2.4.2</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| <version>2.4.2</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- OSGi related --> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>4.3.1</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.scr.annotations</artifactId> |
| <version>1.9.8</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.karaf.shell</groupId> |
| <artifactId>org.apache.karaf.shell.console</artifactId> |
| <version>3.0.1</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.hazelcast</groupId> |
| <artifactId>hazelcast</artifactId> |
| <version>3.3</version> |
| </dependency> |
| <dependency> |
| <groupId>com.eclipsesource.minimal-json</groupId> |
| <artifactId>minimal-json</artifactId> |
| <version>0.9.1</version> |
| </dependency> |
| <dependency> |
| <groupId>com.esotericsoftware.kryo</groupId> |
| <artifactId>kryo</artifactId> |
| <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> |
| |
| <!-- ONOS related --> |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onlab-misc</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onlab-osgi</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onlab-junit</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onos-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onos-api</artifactId> |
| <version>${project.version}</version> |
| <classifier>tests</classifier> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onos-of-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onlab.onos</groupId> |
| <artifactId>onos-of-api</artifactId> |
| <version>${project.version}</version> |
| <classifier>tests</classifier> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.17</version> |
| <configuration> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| <printSummary>true</printSummary> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.3.1</version> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>2.3.7</version> |
| <extensions>true</extensions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-scr-plugin</artifactId> |
| <version>1.15.0</version> |
| <executions> |
| <execution> |
| <id>generate-scr-srcdescriptor</id> |
| <goals> |
| <goal>scr</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <supportedProjectTypes> |
| <supportedProjectType>bundle</supportedProjectType> |
| <supportedProjectType>war</supportedProjectType> |
| </supportedProjectTypes> |
| </configuration> |
| </plugin> |
| |
| <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only --> |
| </plugins> |
| </pluginManagement> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>2.12.1</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.onlab.tools</groupId> |
| <artifactId>onos-build-conf</artifactId> |
| <version>1.0</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <configLocation>onos/checkstyle.xml</configLocation> |
| <suppressionsLocation>onos/suppressions.xml |
| </suppressionsLocation> |
| <failsOnError>false</failsOnError> |
| <logViolationsToConsole>true</logViolationsToConsole> |
| <includeTestSourceDirectory>true |
| </includeTestSourceDirectory> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate-checkstyle</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.2</version> |
| <configuration> |
| <excludes> |
| <exclude>**/datastore/serializers/**</exclude> |
| <exclude>**/edu/stanford/**</exclude> |
| <exclude>**/net/floodlightcontroller/**</exclude> |
| </excludes> |
| <rulesets> |
| <ruleset>onos/pmd.xml</ruleset> |
| </rulesets> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate-pmd</id> |
| <phase>verify</phase> |
| <goals> |
| <!-- Uncomment this goal to make the build fail on pmd errors --> |
| <!--<goal>check</goal>--> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>0.7.1.201405082137</version> |
| <executions> |
| <execution> |
| <id>default-prepare-agent</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>default-report</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>report</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.9.1</version> |
| <configuration> |
| <show>package</show> |
| <docfilessubdirs>true</docfilessubdirs> |
| <doctitle>ONOS Java API</doctitle> |
| <groups> |
| <group> |
| <title>Network Model & Services</title> |
| <packages> |
| org.onlab.onos:org.onlab.onos.*: |
| </packages> |
| </group> |
| <group> |
| <title>Core Subsystems</title> |
| <packages> |
| org.onlab.onos.cluster.impl:org.onlab.onos.store:org.onlab.onos.net.device.impl:org.onlab.onos.net.link.impl:org.onlab.onos.net.host.impl:org.onlab.onos.net.topology.impl:org.onlab.onos.net.packet.impl:org.onlab.onos.net.flow.impl:org.onlab.onos.net.trivial.*:org.onlab.onos.net.*.impl:org.onlab.onos.cluster:org.onlab.onos.event.impl:org.onlab.onos.store.* |
| </packages> |
| </group> |
| <group> |
| <title>OpenFlow Providers & Controller |
| </title> |
| <packages> |
| org.onlab.onos.provider.of.*:org.onlab.onos.openflow.* |
| </packages> |
| </group> |
| <group> |
| <title>Utilities</title> |
| <packages> |
| org.onlab.* |
| </packages> |
| </group> |
| <group> |
| <title>GUI, REST & Command-Line</title> |
| <packages> |
| org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.* |
| </packages> |
| </group> |
| <group> |
| <title>Sample Applications</title> |
| <packages> |
| org.onlab.onos.tvue:org.onlab.onos.fwd |
| </packages> |
| </group> |
| </groups> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>2.12.1</version> |
| <configuration> |
| <configLocation>onos/checkstyle.xml</configLocation> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.2</version> |
| <configuration> |
| <excludes> |
| <exclude>**/datastore/serializers/**</exclude> |
| <exclude>**/edu/stanford/**</exclude> |
| <exclude>**/net/floodlightcontroller/**</exclude> |
| </excludes> |
| <rulesets> |
| <ruleset>onos/pmd.xml</ruleset> |
| </rulesets> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| |
| </reporting> |
| |
| </project> |