tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onlab.onos</groupId> |
| 8 | <artifactId>onos-of</artifactId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | <relativePath>../pom.xml</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <artifactId>onos-of-ctl</artifactId> |
| 14 | <packaging>bundle</packaging> |
| 15 | |
| 16 | <description>ONOS OpenFlow controller subsystem API</description> |
| 17 | |
| 18 | <properties> |
| 19 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | <powermock.version>1.5.5</powermock.version> |
| 21 | <restlet.version>2.1.4</restlet.version> |
| 22 | <cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version> |
| 23 | <!-- Following 2 findbugs version needs to be updated in sync to match the |
| 24 | findbugs version used in findbugs-plugin --> |
| 25 | <findbugs.version>3.0.0</findbugs.version> |
| 26 | <findbugs-plugin.version>3.0.0</findbugs-plugin.version> |
| 27 | <findbugs.effort>Max</findbugs.effort> |
| 28 | <findbugs.excludeFilterFile>${project.basedir}/conf/findbugs/exclude.xml |
| 29 | </findbugs.excludeFilterFile> |
| 30 | <checkstyle-plugin.version>2.12</checkstyle-plugin.version> |
| 31 | <!-- To publish javadoc to github, |
| 32 | uncomment com.github.github site-maven-plugin and |
| 33 | see https://github.com/OPENNETWORKINGLAB/ONOS/pull/425 |
| 34 | <github.global.server>github</github.global.server> |
| 35 | --> |
| 36 | <metrics.version>3.0.2</metrics.version> |
| 37 | <maven.surefire.plugin.version>2.16</maven.surefire.plugin.version> |
| 38 | </properties> |
| 39 | |
| 40 | <dependencies> |
alshabib | 54ebd9c | 2014-08-27 18:38:41 -0700 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>org.onlab.onos</groupId> |
| 43 | <artifactId>onos-of-api</artifactId> |
| 44 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 45 | <!-- ONOS's direct dependencies --> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 49 | <version>1.9.6</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>ch.qos.logback</groupId> |
| 53 | <artifactId>logback-classic</artifactId> |
| 54 | <version>1.1.2</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>ch.qos.logback</groupId> |
| 58 | <artifactId>logback-core</artifactId> |
| 59 | <version>1.1.2</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.slf4j</groupId> |
| 63 | <artifactId>slf4j-api</artifactId> |
| 64 | <version>1.7.5</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <!-- findbugs suppression annotation and @GuardedBy, etc. --> |
| 68 | <groupId>com.google.code.findbugs</groupId> |
| 69 | <artifactId>annotations</artifactId> |
| 70 | <version>${findbugs.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.projectfloodlight</groupId> |
| 74 | <artifactId>openflowj</artifactId> |
tom | b5a46e6 | 2014-08-26 14:20:00 -0700 | [diff] [blame] | 75 | <version>0.3.8-SNAPSHOT</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 76 | </dependency> |
| 77 | <!-- Floodlight's dependencies --> |
| 78 | <dependency> |
| 79 | <!-- dependency to old version of netty? --> |
| 80 | <groupId>io.netty</groupId> |
| 81 | <artifactId>netty</artifactId> |
| 82 | <version>3.9.2.Final</version> |
| 83 | </dependency> |
| 84 | <!-- Dependency for libraries used for testing --> |
| 85 | <dependency> |
| 86 | <groupId>junit</groupId> |
| 87 | <artifactId>junit</artifactId> |
| 88 | <version>4.11</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.easymock</groupId> |
| 93 | <artifactId>easymock</artifactId> |
| 94 | <version>3.2</version> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.powermock</groupId> |
| 99 | <artifactId>powermock-module-junit4</artifactId> |
| 100 | <version>${powermock.version}</version> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.powermock</groupId> |
| 105 | <artifactId>powermock-api-easymock</artifactId> |
| 106 | <version>${powermock.version}</version> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | </dependencies> |
| 110 | |
| 111 | |
| 112 | <build> |
| 113 | <plugins> |
alshabib | 1f44e8e | 2014-08-14 15:19:57 -0700 | [diff] [blame] | 114 | <plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>maven-scr-plugin</artifactId> |
alshabib | 1f44e8e | 2014-08-14 15:19:57 -0700 | [diff] [blame] | 117 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 118 | |
alshabib | 1f44e8e | 2014-08-14 15:19:57 -0700 | [diff] [blame] | 119 | </plugins> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 120 | </build> |
| 121 | |
alshabib | 1f44e8e | 2014-08-14 15:19:57 -0700 | [diff] [blame] | 122 | </project> |