blob: cd847ab74d96fb80eb3f0c0a153187da02cd6e60 [file] [log] [blame]
Marc De Leenheercaf9eb92015-11-10 16:36:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Li7f977082016-03-09 11:18:22 -08003 ~ Copyright 2015-2016 Open Networking Laboratory
Marc De Leenheercaf9eb92015-11-10 16:36:09 +09004 ~
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 <parent>
20 <artifactId>onos-app-samples</artifactId>
21 <groupId>org.onosproject</groupId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050022 <version>1.7.0-SNAPSHOT</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090023 <relativePath>../../pom.xml</relativePath>
24 </parent>
25
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-app-ecord-co</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050028 <version>1.7.0-SNAPSHOT</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090029 <packaging>bundle</packaging>
30
31 <description>Enterprise CORD for Central Office</description>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090032
33 <properties>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090034 <onos.app.name>org.onosproject.ecord.co</onos.app.name>
Jian Li7f977082016-03-09 11:18:22 -080035 <onos.app.origin>ON.Lab</onos.app.origin>
36 <onos.app.title>Enterprise CORD App</onos.app.title>
37 <onos.app.category>Utility</onos.app.category>
38 <onos.app.url>http://onosproject.org</onos.app.url>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080039 <!-- TODO App dependency not working? -->
fra3b9d3322016-08-04 14:27:23 +020040 <onos.app.requires>org.onosproject.incubator.rpc,org.onosproject.incubator.rpc.grpc,org.onosproject.optical-model</onos.app.requires>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090041 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
fra3b9d3322016-08-04 14:27:23 +020046 <artifactId>onos-app-optical</artifactId>
47 <version>${onos.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.onosproject</groupId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090051 <artifactId>onos-api</artifactId>
52 <version>${onos.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onlab-osgi</artifactId>
58 <version>${onos.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onos-core-dist</artifactId>
64 <version>${onos.version}</version>
65 </dependency>
66
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090070 <scope>test</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-api</artifactId>
76 <version>${onos.version}</version>
77 <scope>test</scope>
78 <classifier>tests</classifier>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.scr.annotations</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090084 <scope>provided</scope>
85 </dependency>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080086
87 <dependency>
88 <groupId>org.apache.commons</groupId>
89 <artifactId>commons-lang3</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onlab-misc</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>com.google.guava</groupId>
99 <artifactId>guava</artifactId>
100 </dependency>
101
102 <dependency>
103 <groupId>org.glassfish.jersey.core</groupId>
104 <artifactId>jersey-client</artifactId>
105 <version>2.22.1</version>
106 </dependency>
Naoki Shiotaf16fb6d2015-12-17 14:19:36 -0800107
108 <dependency>
109 <groupId>org.osgi</groupId>
110 <artifactId>org.osgi.compendium</artifactId>
111 <version>4.3.1</version>
112 <scope>provided</scope>
113 </dependency>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900114 </dependencies>
115
116 <build>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -0800117 <pluginManagement>
118 <plugins>
119 <plugin>
120 <groupId>org.apache.karaf.tooling</groupId>
121 <artifactId>karaf-maven-plugin</artifactId>
122 <version>3.0.5</version>
123 <extensions>true</extensions>
124 </plugin>
125 </plugins>
126 </pluginManagement>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900127 <plugins>
128 <plugin>
129 <groupId>org.apache.felix</groupId>
130 <artifactId>maven-bundle-plugin</artifactId>
131 <version>2.5.3</version>
132 <extensions>true</extensions>
133 </plugin>
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-compiler-plugin</artifactId>
137 <version>2.5.1</version>
138 <configuration>
139 <source>1.8</source>
140 <target>1.8</target>
141 </configuration>
142 </plugin>
143 <plugin>
144 <groupId>org.apache.felix</groupId>
145 <artifactId>maven-scr-plugin</artifactId>
146 <version>1.20.0</version>
147 <executions>
148 <execution>
149 <id>generate-scr-srcdescriptor</id>
150 <goals>
151 <goal>scr</goal>
152 </goals>
153 </execution>
154 </executions>
155 <configuration>
156 <supportedProjectTypes>
157 <supportedProjectType>bundle</supportedProjectType>
158 <supportedProjectType>war</supportedProjectType>
159 </supportedProjectTypes>
160 </configuration>
161 </plugin>
162 <plugin>
163 <groupId>org.onosproject</groupId>
164 <artifactId>onos-maven-plugin</artifactId>
Jian Li7f977082016-03-09 11:18:22 -0800165 <version>1.9</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900166 <executions>
167 <execution>
168 <id>cfg</id>
169 <phase>generate-resources</phase>
170 <goals>
171 <goal>cfg</goal>
172 </goals>
173 </execution>
174 <execution>
175 <id>swagger</id>
176 <phase>generate-sources</phase>
177 <goals>
178 <goal>swagger</goal>
179 </goals>
180 </execution>
181 <execution>
182 <id>app</id>
183 <phase>package</phase>
184 <goals>
185 <goal>app</goal>
186 </goals>
187 </execution>
188 </executions>
189 </plugin>
190 </plugins>
191 </build>
192
193</project>