blob: a074002043a3974974ad5e49110016ca312db7ce [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>
Brian O'Connor955c3162016-03-10 15:27:19 -080029 <version>1.6.0-SNAPSHOT</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080030 <relativePath>../pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos-app-acl</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080034 <version>1.6.0-SNAPSHOT</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 Lifd46e1d2016-03-08 09:18:53 -080043 <onos.app.title>ACL App</onos.app.title>
44 <onos.app.category>Security</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080045 <onos.app.url>http://onosproject.org</onos.app.url>
46 <onos.app.readme>ONOS ACL application.</onos.app.readme>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070047
48 <web.context>/onos/v1/acl</web.context>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070049 <api.version>1.0.0</api.version>
50 <api.title>ONOS ACL Application REST API</api.title>
51 <api.description>
52 APIs for interacting with the ACL application.
53 </api.description>
Thomas Vachuska429a1162015-12-16 23:13:01 -080054 <api.package>org.onosproject.acl.impl</api.package>
Pengfei Lue0c02e22015-07-07 15:41:31 +080055 </properties>
56
57 <dependencies>
58 <dependency>
59 <groupId>com.google.guava</groupId>
60 <artifactId>guava</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080061 </dependency>
62
63 <dependency>
64 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080065 <artifactId>javax.ws.rs-api</artifactId>
66 <version>2.0.1</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080067 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-junit</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080072 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-rest</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070077 <version>${project.version}</version>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onlab-osgi</artifactId>
83 <version>${project.version}</version>
84 <classifier>tests</classifier>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-rest</artifactId>
91 <version>${project.version}</version>
92 <classifier>tests</classifier>
93 <scope>test</scope>
Pengfei Lue0c02e22015-07-07 15:41:31 +080094 </dependency>
95
96 <dependency>
97 <groupId>org.onosproject</groupId>
98 <artifactId>onos-core-serializers</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070099 <version>${project.version}</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800100 </dependency>
101
102 <dependency>
Jian Li9d616492016-03-09 10:52:49 -0800103 <groupId>org.glassfish.jersey.test-framework</groupId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800104 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -0800105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
109 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
110 <scope>test</scope>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800111 </dependency>
112
113 <dependency>
114 <groupId>org.easymock</groupId>
115 <artifactId>easymock</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800116 </dependency>
117
118 <dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800119 <groupId>org.onosproject</groupId>
120 <artifactId>onlab-misc</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800121 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800122 </dependencies>
123
124 <build>
125 <plugins>
126 <plugin>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>maven-bundle-plugin</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800129 <extensions>true</extensions>
130 <configuration>
131 <instructions>
132 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700133 <Include-Resource>
134 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
135 {maven-resources}
136 </Include-Resource>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800137 <Bundle-SymbolicName>
138 ${project.groupId}.${project.artifactId}
139 </Bundle-SymbolicName>
140 <Import-Package>
141 org.slf4j,
142 org.osgi.framework,
143 javax.ws.rs,javax.ws.rs.core,
144 com.fasterxml.jackson*,
Jian Li9d616492016-03-09 10:52:49 -0800145 org.glassfish.jersey,
146 org.glassfish.jersey.servlet,
Pengfei Lue0c02e22015-07-07 15:41:31 +0800147 org.onlab.packet.*,
148 org.onlab.rest.*,
149 org.onosproject.*,
150 org.onlab.util.*,
151 com.google.common.*;
152 </Import-Package>
153 <Web-ContextPath>${web.context}</Web-ContextPath>
154 </instructions>
155 </configuration>
156 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800157 </plugins>
158 </build>
159
160</project>