Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 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 Vachuska | 9bb3235 | 2015-09-25 11:31:22 -0700 | [diff] [blame] | 21 | <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 Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onosproject</groupId> |
| 28 | <artifactId>onos-apps</artifactId> |
Ray Milkey | 0a64b86 | 2017-09-08 14:39:41 -0700 | [diff] [blame] | 29 | <version>1.11.1-SNAPSHOT</version> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>onos-app-acl</artifactId> |
Ray Milkey | 0a64b86 | 2017-09-08 14:39:41 -0700 | [diff] [blame] | 33 | <version>1.11.1-SNAPSHOT</version> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 34 | <packaging>bundle</packaging> |
| 35 | |
| 36 | <description>ONOS ACL application</description> |
| 37 | <url>http://onosproject.org</url> |
| 38 | |
| 39 | <properties> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 40 | <onos.app.name>org.onosproject.acl</onos.app.name> |
Pengfei Lu | 38c7eda | 2015-07-20 08:58:03 +0800 | [diff] [blame] | 41 | <onos.app.origin>DLUT</onos.app.origin> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 42 | <onos.app.title>ACL App</onos.app.title> |
| 43 | <onos.app.category>Security</onos.app.category> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 44 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 45 | <onos.app.readme>ONOS ACL application.</onos.app.readme> |
Thomas Vachuska | 9bb3235 | 2015-09-25 11:31:22 -0700 | [diff] [blame] | 46 | |
| 47 | <web.context>/onos/v1/acl</web.context> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 48 | <api.version>1.0.0</api.version> |
| 49 | <api.title>ONOS ACL Application REST API</api.title> |
| 50 | <api.description> |
| 51 | APIs for interacting with the ACL application. |
| 52 | </api.description> |
Thomas Vachuska | 429a116 | 2015-12-16 23:13:01 -0800 | [diff] [blame] | 53 | <api.package>org.onosproject.acl.impl</api.package> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 54 | </properties> |
| 55 | |
| 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>com.google.guava</groupId> |
| 59 | <artifactId>guava</artifactId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 64 | <artifactId>javax.ws.rs-api</artifactId> |
| 65 | <version>2.0.1</version> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onlab-junit</artifactId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
| 75 | <artifactId>onos-rest</artifactId> |
Thomas Vachuska | 9bb3235 | 2015-09-25 11:31:22 -0700 | [diff] [blame] | 76 | <version>${project.version}</version> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onlab-osgi</artifactId> |
Thomas Vachuska | 9bb3235 | 2015-09-25 11:31:22 -0700 | [diff] [blame] | 82 | <classifier>tests</classifier> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onos-rest</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | <classifier>tests</classifier> |
| 91 | <scope>test</scope> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.onosproject</groupId> |
| 96 | <artifactId>onos-core-serializers</artifactId> |
Thomas Vachuska | 9bb3235 | 2015-09-25 11:31:22 -0700 | [diff] [blame] | 97 | <version>${project.version}</version> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 101 | <groupId>org.glassfish.jersey.test-framework</groupId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 102 | <artifactId>jersey-test-framework-core</artifactId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
Jian Li | 4fb7177 | 2016-04-20 09:41:56 -0700 | [diff] [blame] | 107 | <artifactId>jersey-test-framework-provider-jetty</artifactId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 108 | <scope>test</scope> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.easymock</groupId> |
| 113 | <artifactId>easymock</artifactId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 117 | <groupId>org.onosproject</groupId> |
| 118 | <artifactId>onlab-misc</artifactId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 119 | </dependency> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 120 | </dependencies> |
| 121 | |
| 122 | <build> |
| 123 | <plugins> |
| 124 | <plugin> |
| 125 | <groupId>org.apache.felix</groupId> |
| 126 | <artifactId>maven-bundle-plugin</artifactId> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 127 | <extensions>true</extensions> |
| 128 | <configuration> |
| 129 | <instructions> |
| 130 | <_wab>src/main/webapp/</_wab> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 131 | <Include-Resource> |
| 132 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 133 | {maven-resources} |
| 134 | </Include-Resource> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 135 | <Bundle-SymbolicName> |
| 136 | ${project.groupId}.${project.artifactId} |
| 137 | </Bundle-SymbolicName> |
| 138 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 139 | *,org.glassfish.jersey.servlet |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 140 | </Import-Package> |
| 141 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 142 | </instructions> |
| 143 | </configuration> |
| 144 | </plugin> |
Pengfei Lu | e0c02e2 | 2015-07-07 15:41:31 +0800 | [diff] [blame] | 145 | </plugins> |
| 146 | </build> |
| 147 | |
| 148 | </project> |