blob: a764c3804b4c310d0e69636448f6abbac1c5fe6c [file] [log] [blame]
Pengfei Lue0c02e22015-07-07 15:41:31 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Ray Milkeybca90492018-04-13 12:47:31 -070029 <version>1.14.0-SNAPSHOT</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080030 </parent>
31
32 <artifactId>onos-app-acl</artifactId>
Ray Milkeybca90492018-04-13 12:47:31 -070033 <version>1.14.0-SNAPSHOT</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080034 <packaging>bundle</packaging>
35
36 <description>ONOS ACL application</description>
37 <url>http://onosproject.org</url>
38
39 <properties>
Pengfei Lue0c02e22015-07-07 15:41:31 +080040 <onos.app.name>org.onosproject.acl</onos.app.name>
Pengfei Lu38c7eda2015-07-20 08:58:03 +080041 <onos.app.origin>DLUT</onos.app.origin>
Jian Lifd46e1d2016-03-08 09:18:53 -080042 <onos.app.title>ACL App</onos.app.title>
43 <onos.app.category>Security</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080044 <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>
Jian Li9d616492016-03-09 10:52:49 -080064 <artifactId>javax.ws.rs-api</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080065 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onlab-junit</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080070 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-rest</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070075 <version>${project.version}</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onlab-osgi</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070081 <classifier>tests</classifier>
82 <scope>test</scope>
83 </dependency>
84
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onos-rest</artifactId>
88 <version>${project.version}</version>
89 <classifier>tests</classifier>
90 <scope>test</scope>
Pengfei Lue0c02e22015-07-07 15:41:31 +080091 </dependency>
92
93 <dependency>
Jian Lic5cd6622018-03-08 12:08:56 +090094 <groupId>org.glassfish.jersey.core</groupId>
95 <artifactId>jersey-common</artifactId>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.glassfish.jersey.inject</groupId>
100 <artifactId>jersey-hk2</artifactId>
101 <scope>test</scope>
102 </dependency>
103
104 <dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800105 <groupId>org.onosproject</groupId>
106 <artifactId>onos-core-serializers</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -0700107 <version>${project.version}</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800108 </dependency>
109
110 <dependency>
Jian Li9d616492016-03-09 10:52:49 -0800111 <groupId>org.glassfish.jersey.test-framework</groupId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800112 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -0800113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
Jian Li4fb71772016-04-20 09:41:56 -0700117 <artifactId>jersey-test-framework-provider-jetty</artifactId>
Jian Li9d616492016-03-09 10:52:49 -0800118 <scope>test</scope>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800119 </dependency>
120
121 <dependency>
122 <groupId>org.easymock</groupId>
123 <artifactId>easymock</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800124 </dependency>
125
126 <dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800127 <groupId>org.onosproject</groupId>
128 <artifactId>onlab-misc</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800129 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800130 </dependencies>
131
132 <build>
133 <plugins>
134 <plugin>
135 <groupId>org.apache.felix</groupId>
136 <artifactId>maven-bundle-plugin</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800137 <extensions>true</extensions>
138 <configuration>
139 <instructions>
140 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700141 <Include-Resource>
142 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
143 {maven-resources}
144 </Include-Resource>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800145 <Bundle-SymbolicName>
146 ${project.groupId}.${project.artifactId}
147 </Bundle-SymbolicName>
148 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700149 *,org.glassfish.jersey.servlet
Pengfei Lue0c02e22015-07-07 15:41:31 +0800150 </Import-Package>
151 <Web-ContextPath>${web.context}</Web-ContextPath>
152 </instructions>
153 </configuration>
154 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800155 </plugins>
156 </build>
157
158</project>