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 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 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> |
Brian O'Connor | 905ea22 | 2015-12-04 23:59:23 -0800 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-security</artifactId> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 31 | |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 32 | |
| 33 | <description>Security-Mode ONOS project</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.osgi</groupId> |
| 38 | <artifactId>org.osgi.core</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.osgi</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-api</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-core-serializers</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.karaf.features</groupId> |
| 59 | <artifactId>org.apache.karaf.features.core</artifactId> |
| 60 | </dependency> |
Brian O'Connor | 1be4e6e | 2015-09-04 14:59:45 -0700 | [diff] [blame] | 61 | <!-- Adding dependency to pull the artifact from Maven Central. |
| 62 | Note: This is just needed for the onos-security feature. --> |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>org.apache.felix.framework.security</artifactId> |
| 66 | <version>2.2.0.onos</version> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 69 | </dependencies> |
| 70 | |
| 71 | <build> |
| 72 | <plugins> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.felix</groupId> |
| 75 | <artifactId>maven-scr-plugin</artifactId> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 80 | </project> |