blob: 20f784fcb891c45a502ec57e8f0db57d9d06456b [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 -->
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
25 <groupId>org.onosproject</groupId>
26 <artifactId>onos-apps</artifactId>
27 <version>1.3.0-SNAPSHOT</version>
28 <relativePath>../pom.xml</relativePath>
29 </parent>
30
31 <artifactId>onos-app-acl</artifactId>
32 <version>1.3.0-SNAPSHOT</version>
33 <packaging>bundle</packaging>
34
35 <description>ONOS ACL application</description>
36 <url>http://onosproject.org</url>
37
38 <properties>
39 <onos.version>1.3.0-SNAPSHOT</onos.version>
40 <onos.app.name>org.onosproject.acl</onos.app.name>
Pengfei Lu38c7eda2015-07-20 08:58:03 +080041 <onos.app.origin>DLUT</onos.app.origin>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070042 <web.context>/onos/acl</web.context>
43 <api.version>1.0.0</api.version>
44 <api.title>ONOS ACL Application REST API</api.title>
45 <api.description>
46 APIs for interacting with the ACL application.
47 </api.description>
48 <api.package>org.onos.acl.impl</api.package>
Pengfei Lue0c02e22015-07-07 15:41:31 +080049 </properties>
50
51 <dependencies>
52 <dependency>
53 <groupId>com.google.guava</groupId>
54 <artifactId>guava</artifactId>
55 <version>18.0</version>
56 </dependency>
57
58 <dependency>
59 <groupId>javax.ws.rs</groupId>
60 <artifactId>jsr311-api</artifactId>
61 <version>1.1.1</version>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-junit</artifactId>
67 <version>${onos.version}</version>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-rest</artifactId>
73 <version>${onos.version}</version>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-core-serializers</artifactId>
79 <version>${onos.version}</version>
80 </dependency>
81
82 <dependency>
83 <groupId>com.sun.jersey.jersey-test-framework</groupId>
84 <artifactId>jersey-test-framework-core</artifactId>
85 <version>1.19</version>
86 </dependency>
87
88 <dependency>
89 <groupId>org.easymock</groupId>
90 <artifactId>easymock</artifactId>
91 <version>3.2</version>
92 </dependency>
93
94 <dependency>
95 <groupId>com.sun.jersey.jersey-test-framework</groupId>
96 <artifactId>jersey-test-framework-grizzly2</artifactId>
97 <version>1.19</version>
98 </dependency>
99
100 <dependency>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onlab-misc</artifactId>
103 <version>${onos.version}</version>
104 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800105 </dependencies>
106
107 <build>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>maven-bundle-plugin</artifactId>
112 <version>2.5.3</version>
113 <extensions>true</extensions>
114 <configuration>
115 <instructions>
116 <_wab>src/main/webapp/</_wab>
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700117 <Include-Resource>
118 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
119 {maven-resources}
120 </Include-Resource>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800121 <Bundle-SymbolicName>
122 ${project.groupId}.${project.artifactId}
123 </Bundle-SymbolicName>
124 <Import-Package>
125 org.slf4j,
126 org.osgi.framework,
127 javax.ws.rs,javax.ws.rs.core,
128 com.fasterxml.jackson*,
129 com.sun.jersey.api.core,
130 com.sun.jersey.spi.container.servlet,
131 com.sun.jersey.server.impl.container.servlet,
132 org.onlab.packet.*,
133 org.onlab.rest.*,
134 org.onosproject.*,
135 org.onlab.util.*,
136 com.google.common.*;
137 </Import-Package>
138 <Web-ContextPath>${web.context}</Web-ContextPath>
139 </instructions>
140 </configuration>
141 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800142 </plugins>
143 </build>
144
145</project>