blob: 82862a68f065e71b457d54e0ca4856f2fd938140 [file] [log] [blame]
Pengfei Lue0c02e22015-07-07 15:41:31 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~ 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'Connord1cdd192015-12-15 15:36:45 -080029 <version>1.4.0-rc3</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080030 <relativePath>../pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos-app-acl</artifactId>
Brian O'Connord1cdd192015-12-15 15:36:45 -080034 <version>1.4.0-rc3</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>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070043
44 <web.context>/onos/v1/acl</web.context>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070045 <api.version>1.0.0</api.version>
46 <api.title>ONOS ACL Application REST API</api.title>
47 <api.description>
48 APIs for interacting with the ACL application.
49 </api.description>
50 <api.package>org.onos.acl.impl</api.package>
Pengfei Lue0c02e22015-07-07 15:41:31 +080051 </properties>
52
53 <dependencies>
54 <dependency>
55 <groupId>com.google.guava</groupId>
56 <artifactId>guava</artifactId>
57 <version>18.0</version>
58 </dependency>
59
60 <dependency>
61 <groupId>javax.ws.rs</groupId>
62 <artifactId>jsr311-api</artifactId>
63 <version>1.1.1</version>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-junit</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +080069 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-rest</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070074 <version>${project.version}</version>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onlab-osgi</artifactId>
80 <version>${project.version}</version>
81 <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>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-core-serializers</artifactId>
Thomas Vachuska9bb32352015-09-25 11:31:22 -070096 <version>${project.version}</version>
Pengfei Lue0c02e22015-07-07 15:41:31 +080097 </dependency>
98
99 <dependency>
100 <groupId>com.sun.jersey.jersey-test-framework</groupId>
101 <artifactId>jersey-test-framework-core</artifactId>
102 <version>1.19</version>
103 </dependency>
104
105 <dependency>
106 <groupId>org.easymock</groupId>
107 <artifactId>easymock</artifactId>
108 <version>3.2</version>
109 </dependency>
110
111 <dependency>
112 <groupId>com.sun.jersey.jersey-test-framework</groupId>
113 <artifactId>jersey-test-framework-grizzly2</artifactId>
114 <version>1.19</version>
115 </dependency>
116
117 <dependency>
118 <groupId>org.onosproject</groupId>
119 <artifactId>onlab-misc</artifactId>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800120 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800121 </dependencies>
122
123 <build>
124 <plugins>
125 <plugin>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>maven-bundle-plugin</artifactId>
128 <version>2.5.3</version>
129 <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*,
145 com.sun.jersey.api.core,
146 com.sun.jersey.spi.container.servlet,
147 com.sun.jersey.server.impl.container.servlet,
148 org.onlab.packet.*,
149 org.onlab.rest.*,
150 org.onosproject.*,
151 org.onlab.util.*,
152 com.google.common.*;
153 </Import-Package>
154 <Web-ContextPath>${web.context}</Web-ContextPath>
155 </instructions>
156 </configuration>
157 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800158 </plugins>
159 </build>
160
161</project>