blob: 0defa7a52e459b3a37d0d72c042dd44979b3c7d0 [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'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Ray Milkeybbcd6a72017-11-22 19:03:05 -080025 <version>1.11.2-SNAPSHOT</version>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090026 </parent>
27
28 <artifactId>onos-security</artifactId>
Changhoon Yoonb856b812015-08-10 03:47:19 +090029 <packaging>bundle</packaging>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090030
Changhoon Yoonb856b812015-08-10 03:47:19 +090031
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'Connor1be4e6e2015-09-04 14:59:45 -070060 <!-- 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 Yoonb856b812015-08-10 03:47:19 +090068 </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 Yoon23dee8f2015-05-18 22:19:49 +090079</project>