blob: 2401c3f83c901f7334d3d37490a9ea42afb3f4b2 [file] [log] [blame]
Pier Luigi Ventred1173a12016-03-30 15:51:03 +02001<?xml version="1.0" encoding="UTF-8"?>
Carolina Fernandezad893432016-07-18 11:11:34 +02002
Pier Luigi Ventred1173a12016-03-30 15:51:03 +02003<!--
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +02004 ~ Copyright 2016-present Open Networking Laboratory
Pier Luigi Ventred1173a12016-03-30 15:51:03 +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.
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020017 -->
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Pier Luigi Ventred1173a12016-03-30 15:51:03 +020019 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <artifactId>onos-app-samples</artifactId>
22 <groupId>org.onosproject</groupId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050023 <version>1.7.0-SNAPSHOT</version>
Pier Luigi Ventred1173a12016-03-30 15:51:03 +020024 </parent>
25
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-app-sdx-l2</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050028 <version>1.7.0-SNAPSHOT</version>
Pier Luigi Ventred1173a12016-03-30 15:51:03 +020029 <packaging>bundle</packaging>
30
31 <description>SDX-L2 application for ONOS project developed by GEANT</description>
32 <url>http://www.geant.org</url>
33
34 <properties>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050035 <onos.version>1.7.0-SNAPSHOT</onos.version>
Pier Luigi Ventred1173a12016-03-30 15:51:03 +020036 <onos.app.name>org.onosproject.sdx-l2</onos.app.name>
37 <onos.app.origin>GN4 project</onos.app.origin>
38 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
44 <version>${onos.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-dist</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-junit</artifactId>
56 <scope>test</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 <version>${onos.version}</version>
63 <scope>test</scope>
64 <classifier>tests</classifier>
65 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-cli</artifactId>
70 <version>${onos.version}</version>
71 <scope>provided</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.osgi</groupId>
76 <artifactId>org.osgi.core</artifactId>
77 <version>4.3.1</version>
78 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.karaf.shell</groupId>
83 <artifactId>org.apache.karaf.shell.console</artifactId>
84 <version>3.0.3</version>
85 <scope>provided</scope>
86 </dependency>
87
88 <dependency>
Pier Luigi Ventred1173a12016-03-30 15:51:03 +020089 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.compendium</artifactId>
91 <version>5.0.0</version>
92 </dependency>
93
94 </dependencies>
95
96 <build>
97 <plugins>
98 <plugin>
Carolina Fernandezad893432016-07-18 11:11:34 +020099 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-surefire-plugin</artifactId>
101 <version>2.18.1</version>
102 <configuration>
103 <useFile>false</useFile>
104 <redirectTestOutputToFile>false</redirectTestOutputToFile>
105 </configuration>
106 </plugin>
107 <plugin>
Pier Luigi Ventred1173a12016-03-30 15:51:03 +0200108 <groupId>org.apache.felix</groupId>
109 <artifactId>maven-bundle-plugin</artifactId>
110 <version>2.5.3</version>
111 <extensions>true</extensions>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <version>2.5.1</version>
117 <configuration>
118 <source>1.8</source>
119 <target>1.8</target>
120 </configuration>
121 </plugin>
122 <plugin>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>maven-scr-plugin</artifactId>
125 <version>1.20.0</version>
126 <executions>
127 <execution>
128 <id>generate-scr-srcdescriptor</id>
129 <goals>
130 <goal>scr</goal>
131 </goals>
132 </execution>
133 </executions>
134 <configuration>
135 <supportedProjectTypes>
136 <supportedProjectType>bundle</supportedProjectType>
137 <supportedProjectType>war</supportedProjectType>
138 </supportedProjectTypes>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.onosproject</groupId>
143 <artifactId>onos-maven-plugin</artifactId>
144 <version>1.5</version>
145 <executions>
146 <execution>
147 <id>cfg</id>
148 <phase>generate-resources</phase>
149 <goals>
150 <goal>cfg</goal>
151 </goals>
152 </execution>
153 <execution>
154 <id>swagger</id>
155 <phase>generate-sources</phase>
156 <goals>
157 <goal>swagger</goal>
158 </goals>
159 </execution>
160 <execution>
161 <id>app</id>
162 <phase>package</phase>
163 <goals>
164 <goal>app</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169 </plugins>
170 </build>
171
172</project>