blob: 1054cd923a1fc58a3d3f9cc3feb1d0ad95992818 [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
20 <groupId>org.onosproject</groupId>
21 <artifactId>onos-app-carrierethernet</artifactId>
Konstantinos Kanonakisa002f022016-09-27 16:13:12 -050022 <version>1.8.0-SNAPSHOT</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060023 <packaging>bundle</packaging>
24
25 <description>Application for installing MEF services in ONOS</description>
26 <url>http://onosproject.org</url>
27
28 <properties>
29 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080030 <onos.version>1.8.0</onos.version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060031 <onos.app.name>org.onosproject.ecord.carrierethernet</onos.app.name>
Marc De Leenheer6dba4332016-06-06 16:54:30 -070032 <onos.app.origin>ON.Lab</onos.app.origin>
Konstantinos Kanonakisb9486942016-11-17 15:47:02 -060033 <onos.app.requires>org.onosproject.newoptical</onos.app.requires>
34 <onos.app.category>Traffic Steering</onos.app.category>
35 <onos.app.title>Carrier Ethernet</onos.app.title>
36 <onos.app.url>https://wiki.onosproject.org/display/ONOS/Carrier+Ethernet+Application</onos.app.url>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060037 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 <version>${onos.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-cli</artifactId>
48 <version>${onos.version}</version>
49 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080050
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060051 <dependency>
52 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080053 <artifactId>onos-protocols-openflow-api</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060054 <version>${onos.version}</version>
55 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080056
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060057 <dependency>
58 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080059 <artifactId>onos-apps-newoptical</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060060 <version>${onos.version}</version>
61 </dependency>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080062
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060063 <dependency>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070064 <groupId>org.slf4j</groupId>
65 <artifactId>slf4j-api</artifactId>
66 <version>1.7.21</version>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060070 <groupId>org.apache.karaf.shell</groupId>
71 <artifactId>org.apache.karaf.shell.console</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070072 <version>3.0.5</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060073 <scope>provided</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onlab-osgi</artifactId>
78 <version>${onos.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
83 <version>4.12</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-api</artifactId>
89 <version>${onos.version}</version>
90 <scope>test</scope>
91 <classifier>tests</classifier>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>org.apache.felix.scr.annotations</artifactId>
96 <version>1.9.12</version>
97 <scope>provided</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.osgi</groupId>
101 <artifactId>org.osgi.compendium</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700102 <version>5.0.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600103 <scope>provided</scope>
104 </dependency>
105 </dependencies>
106
107 <build>
108 <pluginManagement>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.karaf.tooling</groupId>
112 <artifactId>karaf-maven-plugin</artifactId>
113 <version>3.0.5</version>
114 <extensions>true</extensions>
115 </plugin>
116 </plugins>
117 </pluginManagement>
118 <plugins>
119 <plugin>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>maven-bundle-plugin</artifactId>
122 <version>2.5.3</version>
123 <extensions>true</extensions>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-compiler-plugin</artifactId>
128 <version>2.5.1</version>
129 <configuration>
130 <source>1.8</source>
131 <target>1.8</target>
132 </configuration>
133 </plugin>
134 <plugin>
135 <groupId>org.apache.felix</groupId>
136 <artifactId>maven-scr-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700137 <version>1.21.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600138 <executions>
139 <execution>
140 <id>generate-scr-srcdescriptor</id>
141 <goals>
142 <goal>scr</goal>
143 </goals>
144 </execution>
145 </executions>
146 <configuration>
147 <supportedProjectTypes>
148 <supportedProjectType>bundle</supportedProjectType>
149 <supportedProjectType>war</supportedProjectType>
150 </supportedProjectTypes>
151 </configuration>
152 </plugin>
153 <plugin>
154 <groupId>org.onosproject</groupId>
155 <artifactId>onos-maven-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700156 <version>1.9</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600157 <executions>
158 <execution>
159 <id>cfg</id>
160 <phase>generate-resources</phase>
161 <goals>
162 <goal>cfg</goal>
163 </goals>
164 </execution>
165 <execution>
166 <id>swagger</id>
167 <phase>generate-sources</phase>
168 <goals>
169 <goal>swagger</goal>
170 </goals>
171 </execution>
172 <execution>
173 <id>app</id>
174 <phase>package</phase>
175 <goals>
176 <goal>app</goal>
177 </goals>
178 </execution>
179 </executions>
180 </plugin>
181 </plugins>
182 </build>
183
184</project>