blob: e24c59e43f31d9e1991056bd9f14bf74b8414cdb [file] [log] [blame]
Andreas Papazoisa9964ea2016-01-08 15:58:22 +02001<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
Andreas Papazoiseb518932016-06-21 13:46:20 +03004 ~ Copyright 2016 - present Open Networking Laboratory
Andreas Papazoisa9964ea2016-01-08 15:58:22 +02005 ~
6 ~ Licensed under the Apache License, Version 2.0 (the "License");
7 ~ you may not use this file except in compliance with the License.
8 ~ You may obtain a copy of the License at
9 ~
10 ~ http://www.apache.org/licenses/LICENSE-2.0
11 ~
12 ~ Unless required by applicable law or agreed to in writing, software
13 ~ distributed under the License is distributed on an "AS IS" BASIS,
14 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ See the License for the specific language governing permissions and
16 ~ limitations under the License.
17 -->
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080025 <artifactId>onos-dependencies</artifactId>
26 <version>1.7.0</version>
27 <relativePath/>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020028 </parent>
29
30 <artifactId>onos-app-sdx-l3</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080031 <version>1.9.0-SNAPSHOT</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020032 <packaging>bundle</packaging>
33
34 <description>SDX-L3 application for GEANT</description>
35
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080036 <properties>
37 <onos.version>1.7.0</onos.version>
38 </properties>
39
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020040 <dependencies>
41 <dependency>
42 <groupId>com.google.guava</groupId>
43 <artifactId>guava</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.onosproject</groupId>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020048 <artifactId>onlab-junit</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080049 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020050 <scope>test</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080056 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020057 <scope>test</scope>
58 <classifier>tests</classifier>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
Andreas Papazoiseb518932016-06-21 13:46:20 +030063 <artifactId>onos-incubator-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080064 <version>${onos.version}</version>
Andreas Papazoiseb518932016-06-21 13:46:20 +030065 <scope>test</scope>
66 <classifier>tests</classifier>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080071 <artifactId>onos-apps-routing</artifactId>
72 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020073 </dependency>
74
75 <dependency>
76 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080077 <artifactId>onos-apps-routing-api</artifactId>
78 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020079 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080083 <artifactId>onos-apps-routing-api</artifactId>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020084 <scope>test</scope>
85 <classifier>tests</classifier>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080086 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020087 </dependency>
88
89 <dependency>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onos-cli</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080092 <version>${onos.version}</version>
Andreas Papazoisa9964ea2016-01-08 15:58:22 +020093 </dependency>
94
95 <dependency>
96 <groupId>org.apache.karaf.shell</groupId>
97 <artifactId>org.apache.karaf.shell.console</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.osgi</groupId>
102 <artifactId>org.osgi.core</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>org.easymock</groupId>
107 <artifactId>easymock</artifactId>
108 <scope>test</scope>
109 </dependency>
110 </dependencies>
111
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -0800112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-bundle-plugin</artifactId>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>maven-scr-plugin</artifactId>
121 </plugin>
122 <plugin>
123 <groupId>org.onosproject</groupId>
124 <artifactId>onos-maven-plugin</artifactId>
125 </plugin>
126 </plugins>
127 </build>
128
Andreas Papazoisa9964ea2016-01-08 15:58:22 +0200129</project>