blob: f18bd29f65d4fe35ee71231bb4edd3887d3fd00e [file] [log] [blame]
Changhoon Yoon23dee8f2015-05-18 22:19:49 +09001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska58de4162015-09-10 16:15:33 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuska58de4162015-09-10 16:15:33 -07004 ~
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 Yoon23dee8f2015-05-18 22:19:49 +090017<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'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-security</artifactId>
Changhoon Yoonb856b812015-08-10 03:47:19 +090030 <packaging>bundle</packaging>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090031
Changhoon Yoonb856b812015-08-10 03:47:19 +090032
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'Connor1be4e6e2015-09-04 14:59:45 -070061 <!-- 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 Yoonb856b812015-08-10 03:47:19 +090069 </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 Yoon23dee8f2015-05-18 22:19:49 +090080</project>