Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps</artifactId> |
Ray Milkey | cc6ec60 | 2017-11-10 16:22:59 -0800 | [diff] [blame] | 25 | <version>1.12.0-SNAPSHOT</version> |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-ofagent</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>OpenFlow agent for virtual subsystem</description> |
| 32 | |
| 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.ofagent</onos.app.name> |
| 35 | <onos.app.title>OpenFlow Agent App</onos.app.title> |
| 36 | <onos.app.category>Traffic Steering</onos.app.category> |
| 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <onos.app.readme>OpenFlow agent for virtualization subsystem.</onos.app.readme> |
| 39 | </properties> |
| 40 | |
| 41 | <repositories> |
| 42 | <repository> |
| 43 | <id>sonatype-oss-snapshot</id> |
| 44 | <name>Sonatype OSS snapshot repository</name> |
| 45 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 46 | </repository> |
| 47 | </repositories> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>org.osgi.compendium</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
Hyunsun Moon | f4ba44f | 2017-03-14 03:25:52 +0900 | [diff] [blame] | 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-core-serializers</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-cli</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.karaf.shell</groupId> |
| 66 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onlab-osgi</artifactId> |
| 75 | <version>${project.version}</version> |
Jovana Vuleta | fe32db7d | 2017-05-01 12:18:00 +0200 | [diff] [blame] | 76 | <classifier>tests</classifier> |
| 77 | <scope>test</scope> |
Hyunsun Moon | f4ba44f | 2017-03-14 03:25:52 +0900 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onlab-misc</artifactId> |
| 82 | <version>${project.version}</version> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onos-core-common</artifactId> |
| 87 | <version>${project.version}</version> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onos-incubator-api</artifactId> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.onosproject</groupId> |
| 95 | <artifactId>onlab-junit</artifactId> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.onosproject</groupId> |
| 100 | <artifactId>onos-api</artifactId> |
| 101 | <classifier>tests</classifier> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.onosproject</groupId> |
| 106 | <artifactId>onos-core-common</artifactId> |
| 107 | <classifier>tests</classifier> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>com.google.guava</groupId> |
| 112 | <artifactId>guava-testlib</artifactId> |
| 113 | <version>${guava.version}</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.easymock</groupId> |
| 118 | <artifactId>easymock</artifactId> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
Harold Huang | 6354b35 | 2017-06-09 23:06:35 +0800 | [diff] [blame] | 122 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 123 | <artifactId>openflowj</artifactId> |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>io.netty</groupId> |
Hyunsun Moon | f4ba44f | 2017-03-14 03:25:52 +0900 | [diff] [blame] | 127 | <artifactId>netty-all</artifactId> |
| 128 | <version>${netty4.version}</version> |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 129 | </dependency> |
Jovana Vuleta | fe32db7d | 2017-05-01 12:18:00 +0200 | [diff] [blame] | 130 | |
| 131 | <!-- REST api dependencies --> |
| 132 | <dependency> |
| 133 | <groupId>org.onosproject</groupId> |
| 134 | <artifactId>onos-rest</artifactId> |
| 135 | <version>${project.version}</version> |
Jian Li | 242ce52 | 2017-05-23 11:41:41 +0900 | [diff] [blame] | 136 | <scope>test</scope> |
| 137 | <type>jar</type> |
Jovana Vuleta | fe32db7d | 2017-05-01 12:18:00 +0200 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.onosproject</groupId> |
| 141 | <artifactId>onlab-rest</artifactId> |
| 142 | <version>${project.version}</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>javax.ws.rs</groupId> |
| 146 | <artifactId>javax.ws.rs-api</artifactId> |
| 147 | <version>2.0.1</version> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>org.glassfish.jersey.containers</groupId> |
| 151 | <artifactId>jersey-container-servlet</artifactId> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>com.fasterxml.jackson.core</groupId> |
| 155 | <artifactId>jackson-databind</artifactId> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 159 | <artifactId>jersey-test-framework-core</artifactId> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 164 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
| 165 | <scope>test</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.onosproject</groupId> |
| 169 | <artifactId>onos-rest</artifactId> |
| 170 | <version>${project.version}</version> |
| 171 | <classifier>tests</classifier> |
| 172 | <scope>test</scope> |
| 173 | </dependency> |
| 174 | |
Claudine Chiu | 20cbd45 | 2017-08-30 19:23:11 -0400 | [diff] [blame] | 175 | <!-- Flow Entry building dependencies --> |
| 176 | <dependency> |
| 177 | <groupId>org.onosproject</groupId> |
| 178 | <artifactId>onos-providers-openflow-flow</artifactId> |
| 179 | <version>${project.version}</version> |
| 180 | </dependency> |
| 181 | |
Claudine Chiu | b211b87 | 2017-09-05 17:27:00 -0400 | [diff] [blame] | 182 | <!-- GroupBucket building dependencies --> |
| 183 | <dependency> |
| 184 | <groupId>org.onosproject</groupId> |
| 185 | <artifactId>onos-protocols-openflow-api</artifactId> |
| 186 | <version>${project.version}</version> |
| 187 | </dependency> |
| 188 | |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 189 | </dependencies> |
| 190 | |
| 191 | <build> |
| 192 | <plugins> |
| 193 | <plugin> |
| 194 | <groupId>org.apache.felix</groupId> |
| 195 | <artifactId>maven-bundle-plugin</artifactId> |
| 196 | <extensions>true</extensions> |
| 197 | <configuration> |
| 198 | <instructions> |
Jovana Vuleta | fe32db7d | 2017-05-01 12:18:00 +0200 | [diff] [blame] | 199 | <_wab>src/main/webapp/</_wab> |
| 200 | <Include-Resource> |
| 201 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 202 | {maven-resources} |
| 203 | </Include-Resource> |
Jovana Vuleta | fe32db7d | 2017-05-01 12:18:00 +0200 | [diff] [blame] | 204 | <Import-Package> |
| 205 | *,org.glassfish.jersey.servlet |
| 206 | </Import-Package> |
| 207 | <Web-ContextPath>${web.context}</Web-ContextPath> |
Claudine Chiu | 20cbd45 | 2017-08-30 19:23:11 -0400 | [diff] [blame] | 208 | <Private-Package> |
| 209 | org.onosproject.provider.of.flow.util |
| 210 | </Private-Package> |
Hyunsun Moon | 90163ba | 2016-10-12 13:35:14 -0700 | [diff] [blame] | 211 | </instructions> |
| 212 | </configuration> |
| 213 | </plugin> |
| 214 | </plugins> |
| 215 | </build> |
| 216 | |
| 217 | </project> |