blob: 33f29272cb078a04adda0b501437c88e818c63d2 [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>
22 <version>1.6.0-SNAPSHOT</version>
23 <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>
30 <onos.version>1.6.0-SNAPSHOT</onos.version>
31 <onos.app.name>org.onosproject.ecord.carrierethernet</onos.app.name>
32 <!-- TODO App dependency not working? -->
33 <onos.app.requires>org.onosproject.incubator.rpc,org.onosproject.incubator.rpc.grpc</onos.app.requires>
Marc De Leenheer6dba4332016-06-06 16:54:30 -070034 <onos.app.origin>ON.Lab</onos.app.origin>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060035 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-api</artifactId>
41 <version>${onos.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-cli</artifactId>
46 <version>${onos.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-drivers</artifactId>
51 <version>${onos.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
Naoki Shiota1480ef22016-05-05 18:48:03 -070055 <artifactId>onos-app-newoptical</artifactId>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060056 <version>${onos.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.karaf.shell</groupId>
60 <artifactId>org.apache.karaf.shell.console</artifactId>
61 <version>3.0.3</version>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-osgi</artifactId>
67 <version>${onos.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>4.12</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-api</artifactId>
78 <version>${onos.version}</version>
79 <scope>test</scope>
80 <classifier>tests</classifier>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>org.apache.felix.scr.annotations</artifactId>
85 <version>1.9.12</version>
86 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.compendium</artifactId>
91 <version>4.3.1</version>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.onosproject</groupId>
96 <artifactId>openflowj</artifactId>
97 <version>0.9.3.onos-SNAPSHOT</version>
98 <scope>provided</scope>
99 </dependency>
100 </dependencies>
101
102 <build>
103 <pluginManagement>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.karaf.tooling</groupId>
107 <artifactId>karaf-maven-plugin</artifactId>
108 <version>3.0.5</version>
109 <extensions>true</extensions>
110 </plugin>
111 </plugins>
112 </pluginManagement>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-bundle-plugin</artifactId>
117 <version>2.5.3</version>
118 <extensions>true</extensions>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-compiler-plugin</artifactId>
123 <version>2.5.1</version>
124 <configuration>
125 <source>1.8</source>
126 <target>1.8</target>
127 </configuration>
128 </plugin>
129 <plugin>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>maven-scr-plugin</artifactId>
132 <version>1.20.0</version>
133 <executions>
134 <execution>
135 <id>generate-scr-srcdescriptor</id>
136 <goals>
137 <goal>scr</goal>
138 </goals>
139 </execution>
140 </executions>
141 <configuration>
142 <supportedProjectTypes>
143 <supportedProjectType>bundle</supportedProjectType>
144 <supportedProjectType>war</supportedProjectType>
145 </supportedProjectTypes>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.onosproject</groupId>
150 <artifactId>onos-maven-plugin</artifactId>
151 <version>1.5</version>
152 <executions>
153 <execution>
154 <id>cfg</id>
155 <phase>generate-resources</phase>
156 <goals>
157 <goal>cfg</goal>
158 </goals>
159 </execution>
160 <execution>
161 <id>swagger</id>
162 <phase>generate-sources</phase>
163 <goals>
164 <goal>swagger</goal>
165 </goals>
166 </execution>
167 <execution>
168 <id>app</id>
169 <phase>package</phase>
170 <goals>
171 <goal>app</goal>
172 </goals>
173 </execution>
174 </executions>
175 </plugin>
176 </plugins>
177 </build>
178
179</project>