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