blob: 9a53feb3ee99e30d568d165e645c737091b11d39 [file] [log] [blame]
Pengfei Lue0c02e22015-07-07 15:41:31 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Lic35415d2016-01-14 17:22:31 -08003 ~ Copyright 2015-2016 Open Networking Laboratory
Pengfei Lue0c02e22015-07-07 15:41:31 +08004 ~ Originally created by Pengfei Lu, Network and Cloud Computing Laboratory, Dalian University of Technology, China
5 ~ Advisers: Keqiu Li and Heng Qi
6 ~ This work is supported by the State Key Program of National Natural Science of China(Grant No. 61432002)
7 ~ and Prospective Research Project on Future Networks in Jiangsu Future Networks Innovation Institute.
8 ~
9 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 -->
Thomas Vachuska9bb32352015-09-25 11:31:22 -070021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Pengfei Lue0c02e22015-07-07 15:41:31 +080024 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-apps</artifactId>
Thomas Vachuska40d52552016-03-03 17:08:36 -080029 <version>1.5.0-rc2</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080030 <relativePath>../pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos-app-acl</artifactId>
Thomas Vachuska40d52552016-03-03 17:08:36 -080034 <version>1.5.0-rc2</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080035 <packaging>bundle</packaging>
36
37 <description>ONOS ACL application</description>
38 <url>http://onosproject.org</url>
39
40 <properties>
Pengfei Lue0c02e22015-07-07 15:41:31 +080041 <onos.app.name>org.onosproject.acl</onos.app.name>
Pengfei Lu38c7eda2015-07-20 08:58:03 +080042 <onos.app.origin>DLUT</onos.app.origin>
Jian Lic35415d2016-01-14 17:22:31 -080043 <onos.app.category>default</onos.app.category>
44 <onos.app.url>http://onosproject.org</onos.app.url>
45 <onos.app.readme>ONOS ACL application.</onos.app.readme>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070046
47 <web.context>/onos/v1/acl</web.context>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070048 <api.version>1.0.0</api.version>
49 <api.title>ONOS ACL Application REST API</api.title>
50 <api.description>
51 APIs for interacting with the ACL application.
52 </api.description>
Thomas Vachuska429a1162015-12-16 23:13:01 -080053 <api.package>org.onosproject.acl.impl</api.package>
Pengfei Lue0c02e22015-07-07 15:41:31 +080054 </properties>
55
56 <dependencies>
57 <dependency>
58 <groupId>com.google.guava</groupId>
59 <artifactId>guava</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080060 </dependency>
61
62 <dependency>
63 <groupId>javax.ws.rs</groupId>
64 <artifactId>jsr311-api</artifactId>
65 <version>1.1.1</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-junit</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080071 </dependency>
72
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-rest</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070076 <version>${project.version}</version>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onlab-osgi</artifactId>
82 <version>${project.version}</version>
83 <classifier>tests</classifier>
84 <scope>test</scope>
85 </dependency>
86
87 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-rest</artifactId>
90 <version>${project.version}</version>
91 <classifier>tests</classifier>
92 <scope>test</scope>
Pengfei Lue0c02e22015-07-07 15:41:31 +080093 </dependency>
94
95 <dependency>
96 <groupId>org.onosproject</groupId>
97 <artifactId>onos-core-serializers</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070098 <version>${project.version}</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080099 </dependency>
100
101 <dependency>
102 <groupId>com.sun.jersey.jersey-test-framework</groupId>
103 <artifactId>jersey-test-framework-core</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800104 </dependency>
105
106 <dependency>
107 <groupId>org.easymock</groupId>
108 <artifactId>easymock</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800109 </dependency>
110
111 <dependency>
112 <groupId>com.sun.jersey.jersey-test-framework</groupId>
113 <artifactId>jersey-test-framework-grizzly2</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800114 </dependency>
115
116 <dependency>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onlab-misc</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800119 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800127 <extensions>true</extensions>
128 <configuration>
129 <instructions>
130 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700131 <Include-Resource>
132 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
133 {maven-resources}
134 </Include-Resource>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800135 <Bundle-SymbolicName>
136 ${project.groupId}.${project.artifactId}
137 </Bundle-SymbolicName>
138 <Import-Package>
139 org.slf4j,
140 org.osgi.framework,
141 javax.ws.rs,javax.ws.rs.core,
142 com.fasterxml.jackson*,
143 com.sun.jersey.api.core,
144 com.sun.jersey.spi.container.servlet,
145 com.sun.jersey.server.impl.container.servlet,
146 org.onlab.packet.*,
147 org.onlab.rest.*,
148 org.onosproject.*,
149 org.onlab.util.*,
150 com.google.common.*;
151 </Import-Package>
152 <Web-ContextPath>${web.context}</Web-ContextPath>
153 </instructions>
154 </configuration>
155 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800156 </plugins>
157 </build>
158
159</project>