blob: d55b2e73748c7185fb366da75569245f893522b1 [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>
22 <version>1.6.0-SNAPSHOT</version>
23 </parent>
24
25 <groupId>org.onosproject</groupId>
26 <artifactId>onos-app-sdx-l2</artifactId>
27 <version>1.6.0-SNAPSHOT</version>
28 <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>
34 <onos.version>1.6.0-SNAPSHOT</onos.version>
35 <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>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-app-sdnip</artifactId>
90 <version>${onos.version}</version>
91 </dependency>
92
93 <dependency>
94 <groupId>org.easymock</groupId>
95 <artifactId>easymock</artifactId>
96 <version>3.2</version>
97 <scope>test</scope>
98 </dependency>
99
100 <dependency>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-app-routing-api</artifactId>
103 <version>${onos.version}</version>
104 </dependency>
105
106 <dependency>
107 <groupId>org.osgi</groupId>
108 <artifactId>org.osgi.compendium</artifactId>
109 <version>5.0.0</version>
110 </dependency>
111
112 </dependencies>
113
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>maven-bundle-plugin</artifactId>
119 <version>2.5.3</version>
120 <extensions>true</extensions>
121 </plugin>
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-compiler-plugin</artifactId>
125 <version>2.5.1</version>
126 <configuration>
127 <source>1.8</source>
128 <target>1.8</target>
129 </configuration>
130 </plugin>
131 <plugin>
132 <groupId>org.apache.felix</groupId>
133 <artifactId>maven-scr-plugin</artifactId>
134 <version>1.20.0</version>
135 <executions>
136 <execution>
137 <id>generate-scr-srcdescriptor</id>
138 <goals>
139 <goal>scr</goal>
140 </goals>
141 </execution>
142 </executions>
143 <configuration>
144 <supportedProjectTypes>
145 <supportedProjectType>bundle</supportedProjectType>
146 <supportedProjectType>war</supportedProjectType>
147 </supportedProjectTypes>
148 </configuration>
149 </plugin>
150 <plugin>
151 <groupId>org.onosproject</groupId>
152 <artifactId>onos-maven-plugin</artifactId>
153 <version>1.5</version>
154 <executions>
155 <execution>
156 <id>cfg</id>
157 <phase>generate-resources</phase>
158 <goals>
159 <goal>cfg</goal>
160 </goals>
161 </execution>
162 <execution>
163 <id>swagger</id>
164 <phase>generate-sources</phase>
165 <goals>
166 <goal>swagger</goal>
167 </goals>
168 </execution>
169 <execution>
170 <id>app</id>
171 <phase>package</phase>
172 <goals>
173 <goal>app</goal>
174 </goals>
175 </execution>
176 </executions>
177 </plugin>
178 </plugins>
179 </build>
180
181</project>