Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <artifactId>onos-core</artifactId> |
| 24 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | aa868b6 | 2018-04-13 23:05:13 +0000 | [diff] [blame] | 25 | <version>1.13.0-SNAPSHOT</version> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-security</artifactId> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 30 | |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 31 | |
| 32 | <description>Security-Mode ONOS project</description> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.osgi</groupId> |
| 37 | <artifactId>org.osgi.core</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.osgi</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-api</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-core-serializers</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.apache.karaf.features</groupId> |
| 58 | <artifactId>org.apache.karaf.features.core</artifactId> |
| 59 | </dependency> |
Brian O'Connor | 1be4e6e | 2015-09-04 14:59:45 -0700 | [diff] [blame] | 60 | <!-- Adding dependency to pull the artifact from Maven Central. |
| 61 | Note: This is just needed for the onos-security feature. --> |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
| 64 | <artifactId>org.apache.felix.framework.security</artifactId> |
| 65 | <version>2.2.0.onos</version> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 68 | </dependencies> |
| 69 | |
| 70 | <build> |
| 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.felix</groupId> |
| 74 | <artifactId>maven-scr-plugin</artifactId> |
| 75 | </plugin> |
| 76 | </plugins> |
| 77 | </build> |
| 78 | |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 79 | </project> |