blob: 6c3240e13f882992755042a765f60c6d2146d001 [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 Kanonakis35e9eb02016-06-06 16:38:53 -050022 <version>1.7.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>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050030 <onos.version>1.7.0-SNAPSHOT</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 Kanonakisd9e06232016-03-02 16:14:31 -060033 </properties>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-api</artifactId>
39 <version>${onos.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-cli</artifactId>
44 <version>${onos.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-drivers</artifactId>
49 <version>${onos.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
Naoki Shiota1480ef22016-05-05 18:48:03 -070053 <artifactId>onos-app-newoptical</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060054 <version>${onos.version}</version>
55 </dependency>
56 <dependency>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070057 <groupId>org.slf4j</groupId>
58 <artifactId>slf4j-api</artifactId>
59 <version>1.7.21</version>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060063 <groupId>org.apache.karaf.shell</groupId>
64 <artifactId>org.apache.karaf.shell.console</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070065 <version>3.0.5</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060066 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-osgi</artifactId>
71 <version>${onos.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>junit</groupId>
75 <artifactId>junit</artifactId>
76 <version>4.12</version>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-api</artifactId>
82 <version>${onos.version}</version>
83 <scope>test</scope>
84 <classifier>tests</classifier>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.scr.annotations</artifactId>
89 <version>1.9.12</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.compendium</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -070095 <version>5.0.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060096 <scope>provided</scope>
97 </dependency>
98 </dependencies>
99
100 <build>
101 <pluginManagement>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.karaf.tooling</groupId>
105 <artifactId>karaf-maven-plugin</artifactId>
106 <version>3.0.5</version>
107 <extensions>true</extensions>
108 </plugin>
109 </plugins>
110 </pluginManagement>
111 <plugins>
112 <plugin>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>maven-bundle-plugin</artifactId>
115 <version>2.5.3</version>
116 <extensions>true</extensions>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-compiler-plugin</artifactId>
121 <version>2.5.1</version>
122 <configuration>
123 <source>1.8</source>
124 <target>1.8</target>
125 </configuration>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.felix</groupId>
129 <artifactId>maven-scr-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700130 <version>1.21.0</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600131 <executions>
132 <execution>
133 <id>generate-scr-srcdescriptor</id>
134 <goals>
135 <goal>scr</goal>
136 </goals>
137 </execution>
138 </executions>
139 <configuration>
140 <supportedProjectTypes>
141 <supportedProjectType>bundle</supportedProjectType>
142 <supportedProjectType>war</supportedProjectType>
143 </supportedProjectTypes>
144 </configuration>
145 </plugin>
146 <plugin>
147 <groupId>org.onosproject</groupId>
148 <artifactId>onos-maven-plugin</artifactId>
Yuta HIGUCHI00da8912016-07-06 11:34:29 -0700149 <version>1.9</version>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -0600150 <executions>
151 <execution>
152 <id>cfg</id>
153 <phase>generate-resources</phase>
154 <goals>
155 <goal>cfg</goal>
156 </goals>
157 </execution>
158 <execution>
159 <id>swagger</id>
160 <phase>generate-sources</phase>
161 <goals>
162 <goal>swagger</goal>
163 </goals>
164 </execution>
165 <execution>
166 <id>app</id>
167 <phase>package</phase>
168 <goals>
169 <goal>app</goal>
170 </goals>
171 </execution>
172 </executions>
173 </plugin>
174 </plugins>
175 </build>
176
177</project>