blob: e2c1454a5fbcfc9c06526527e964a7b026efd086 [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>
41 <onos.app.origin>Pengfei Lu</onos.app.origin>
42 <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>
99
100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>maven-bundle-plugin</artifactId>
107 <version>2.5.3</version>
108 <extensions>true</extensions>
109 <configuration>
110 <instructions>
111 <_wab>src/main/webapp/</_wab>
112 <Bundle-SymbolicName>
113 ${project.groupId}.${project.artifactId}
114 </Bundle-SymbolicName>
115 <Import-Package>
116 org.slf4j,
117 org.osgi.framework,
118 javax.ws.rs,javax.ws.rs.core,
119 com.fasterxml.jackson*,
120 com.sun.jersey.api.core,
121 com.sun.jersey.spi.container.servlet,
122 com.sun.jersey.server.impl.container.servlet,
123 org.onlab.packet.*,
124 org.onlab.rest.*,
125 org.onosproject.*,
126 org.onlab.util.*,
127 com.google.common.*;
128 </Import-Package>
129 <Web-ContextPath>${web.context}</Web-ContextPath>
130 </instructions>
131 </configuration>
132 </plugin>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-compiler-plugin</artifactId>
136 <version>2.5.1</version>
137 <configuration>
138 <source>1.8</source>
139 <target>1.8</target>
140 </configuration>
141 </plugin>
142 <plugin>
143 <groupId>org.apache.felix</groupId>
144 <artifactId>maven-scr-plugin</artifactId>
145 <version>1.20.0</version>
146 <executions>
147 <execution>
148 <id>generate-scr-srcdescriptor</id>
149 <goals>
150 <goal>scr</goal>
151 </goals>
152 </execution>
153 </executions>
154 <configuration>
155 <supportedProjectTypes>
156 <supportedProjectType>bundle</supportedProjectType>
157 <supportedProjectType>war</supportedProjectType>
158 </supportedProjectTypes>
159 </configuration>
160 </plugin>
161 <plugin>
162 <groupId>org.onosproject</groupId>
163 <artifactId>onos-maven-plugin</artifactId>
164 <version>1.4-SNAPSHOT</version>
165 <executions>
166 <execution>
167 <id>cfg</id>
168 <phase>generate-resources</phase>
169 <goals>
170 <goal>cfg</goal>
171 </goals>
172 </execution>
173 <execution>
174 <id>app</id>
175 <phase>package</phase>
176 <goals>
177 <goal>app</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182 </plugins>
183 </build>
184
185</project>