blob: 4ef8f36c7c29b6cdc5f22db0e761e0b055aeef1b [file] [log] [blame]
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -06001<?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 -->
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">
18 <modelVersion>4.0.0</modelVersion>
19
Yuta HIGUCHIdbd2fec2017-02-01 16:34:38 -080020 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-dependencies</artifactId>
23 <version>1.8.0</version>
24 <relativePath/><!-- parent is remote -->
25 </parent>
26
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060027 <groupId>org.onosproject</groupId>
28 <artifactId>onos-app-carrierethernet</artifactId>
Konstantinos Kanonakisa002f022016-09-27 16:13:12 -050029 <version>1.8.0-SNAPSHOT</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060030 <packaging>bundle</packaging>
31
32 <description>Application for installing MEF services in ONOS</description>
33 <url>http://onosproject.org</url>
34
35 <properties>
36 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080037 <onos.version>1.8.0</onos.version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060038 <onos.app.name>org.onosproject.ecord.carrierethernet</onos.app.name>
Marc De Leenheer6dba4332016-06-06 16:54:30 -070039 <onos.app.origin>ON.Lab</onos.app.origin>
Konstantinos Kanonakisb9486942016-11-17 15:47:02 -060040 <onos.app.requires>org.onosproject.newoptical</onos.app.requires>
41 <onos.app.category>Traffic Steering</onos.app.category>
42 <onos.app.title>Carrier Ethernet</onos.app.title>
43 <onos.app.url>https://wiki.onosproject.org/display/ONOS/Carrier+Ethernet+Application</onos.app.url>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060044 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-cli</artifactId>
55 <version>${onos.version}</version>
56 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080057
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060058 <dependency>
59 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080060 <artifactId>onos-protocols-openflow-api</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060061 <version>${onos.version}</version>
62 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080063
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060064 <dependency>
65 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080066 <artifactId>onos-apps-newoptical</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060067 <version>${onos.version}</version>
68 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080069
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060070 <dependency>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070071 <groupId>org.slf4j</groupId>
72 <artifactId>slf4j-api</artifactId>
73 <version>1.7.21</version>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060077 <groupId>org.apache.karaf.shell</groupId>
78 <artifactId>org.apache.karaf.shell.console</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070079 <version>3.0.5</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060080 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-osgi</artifactId>
85 <version>${onos.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
90 <version>4.12</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-api</artifactId>
96 <version>${onos.version}</version>
97 <scope>test</scope>
98 <classifier>tests</classifier>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.scr.annotations</artifactId>
103 <version>1.9.12</version>
104 <scope>provided</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.osgi</groupId>
108 <artifactId>org.osgi.compendium</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700109 <version>5.0.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600110 <scope>provided</scope>
111 </dependency>
112 </dependencies>
113
114 <build>
115 <pluginManagement>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.karaf.tooling</groupId>
119 <artifactId>karaf-maven-plugin</artifactId>
120 <version>3.0.5</version>
121 <extensions>true</extensions>
122 </plugin>
123 </plugins>
124 </pluginManagement>
125 <plugins>
126 <plugin>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>maven-bundle-plugin</artifactId>
129 <version>2.5.3</version>
130 <extensions>true</extensions>
131 </plugin>
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-compiler-plugin</artifactId>
135 <version>2.5.1</version>
136 <configuration>
137 <source>1.8</source>
138 <target>1.8</target>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>maven-scr-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700144 <version>1.21.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600145 <executions>
146 <execution>
147 <id>generate-scr-srcdescriptor</id>
148 <goals>
149 <goal>scr</goal>
150 </goals>
151 </execution>
152 </executions>
153 <configuration>
154 <supportedProjectTypes>
155 <supportedProjectType>bundle</supportedProjectType>
156 <supportedProjectType>war</supportedProjectType>
157 </supportedProjectTypes>
158 </configuration>
159 </plugin>
160 <plugin>
161 <groupId>org.onosproject</groupId>
162 <artifactId>onos-maven-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700163 <version>1.9</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600164 <executions>
165 <execution>
166 <id>cfg</id>
167 <phase>generate-resources</phase>
168 <goals>
169 <goal>cfg</goal>
170 </goals>
171 </execution>
172 <execution>
173 <id>swagger</id>
174 <phase>generate-sources</phase>
175 <goals>
176 <goal>swagger</goal>
177 </goals>
178 </execution>
179 <execution>
180 <id>app</id>
181 <phase>package</phase>
182 <goals>
183 <goal>app</goal>
184 </goals>
185 </execution>
186 </executions>
187 </plugin>
188 </plugins>
189 </build>
190
191</project>