blob: bd406cad6ef9d64b10e0411413e8c5976789bc21 [file] [log] [blame]
Hyunsun Moon90163ba2016-10-12 13:35:14 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Laboratory
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>
25 <version>1.9.0-SNAPSHOT</version>
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>
55 <groupId>org.projectfloodlight</groupId>
56 <artifactId>openflowj</artifactId>
57 <version>3.0.0-SNAPSHOT</version>
58 </dependency>
59 <dependency>
60 <groupId>io.netty</groupId>
61 <artifactId>netty-transport</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>io.netty</groupId>
65 <artifactId>netty-handler</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>io.netty</groupId>
69 <artifactId>netty-buffer</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>io.netty</groupId>
73 <artifactId>netty-codec</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-of-api</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-incubator-api</artifactId>
82 </dependency>
83 </dependencies>
84
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-bundle-plugin</artifactId>
90 <extensions>true</extensions>
91 <configuration>
92 <instructions>
93 <Embed-Dependency>
94 openflowj
95 </Embed-Dependency>
96 </instructions>
97 </configuration>
98 </plugin>
99 </plugins>
100 </build>
101
102</project>