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