blob: 698771e513da2a61c608035d0c20ce59743742e7 [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>
Pengfei Lue0c02e22015-07-07 15:41:31 +080042 <web.context>/onos/v1/acl</web.context>
43 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>com.google.guava</groupId>
48 <artifactId>guava</artifactId>
49 <version>18.0</version>
50 </dependency>
51
52 <dependency>
53 <groupId>javax.ws.rs</groupId>
54 <artifactId>jsr311-api</artifactId>
55 <version>1.1.1</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-junit</artifactId>
61 <version>${onos.version}</version>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onos-rest</artifactId>
67 <version>${onos.version}</version>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-core-serializers</artifactId>
73 <version>${onos.version}</version>
74 </dependency>
75
76 <dependency>
77 <groupId>com.sun.jersey.jersey-test-framework</groupId>
78 <artifactId>jersey-test-framework-core</artifactId>
79 <version>1.19</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.easymock</groupId>
84 <artifactId>easymock</artifactId>
85 <version>3.2</version>
86 </dependency>
87
88 <dependency>
89 <groupId>com.sun.jersey.jersey-test-framework</groupId>
90 <artifactId>jersey-test-framework-grizzly2</artifactId>
91 <version>1.19</version>
92 </dependency>
93
94 <dependency>
95 <groupId>org.onosproject</groupId>
96 <artifactId>onlab-misc</artifactId>
97 <version>${onos.version}</version>
98 </dependency>
Pengfei Lue0c02e22015-07-07 15:41:31 +080099 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-bundle-plugin</artifactId>
106 <version>2.5.3</version>
107 <extensions>true</extensions>
108 <configuration>
109 <instructions>
110 <_wab>src/main/webapp/</_wab>
111 <Bundle-SymbolicName>
112 ${project.groupId}.${project.artifactId}
113 </Bundle-SymbolicName>
114 <Import-Package>
115 org.slf4j,
116 org.osgi.framework,
117 javax.ws.rs,javax.ws.rs.core,
118 com.fasterxml.jackson*,
119 com.sun.jersey.api.core,
120 com.sun.jersey.spi.container.servlet,
121 com.sun.jersey.server.impl.container.servlet,
122 org.onlab.packet.*,
123 org.onlab.rest.*,
124 org.onosproject.*,
125 org.onlab.util.*,
126 com.google.common.*;
127 </Import-Package>
128 <Web-ContextPath>${web.context}</Web-ContextPath>
129 </instructions>
130 </configuration>
131 </plugin>
Pengfei Lue0c02e22015-07-07 15:41:31 +0800132 </plugins>
133 </build>
134
135</project>