blob: c0f97c2678274fb93fabaded667aacc0e903680c [file] [log] [blame]
Marc De Leenheercaf9eb92015-11-10 16:36:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor6547c0e2017-08-03 18:48:25 -07003 ~ Copyright 2015-2016 Open Networking Foundation
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>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090020 <groupId>org.onosproject</groupId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080021 <artifactId>onos-dependencies</artifactId>
22 <version>1.8.0</version>
23 <relativePath/><!-- parent is remote -->
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090024 </parent>
25
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-app-ecord-co</artifactId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080028 <version>1.9.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>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080034 <onos.version>1.8.0</onos.version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090035 <onos.app.name>org.onosproject.ecord.co</onos.app.name>
Jian Li7f977082016-03-09 11:18:22 -080036 <onos.app.origin>ON.Lab</onos.app.origin>
37 <onos.app.title>Enterprise CORD App</onos.app.title>
38 <onos.app.category>Utility</onos.app.category>
39 <onos.app.url>http://onosproject.org</onos.app.url>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080040 <!-- TODO App dependency not working? -->
fra3b9d3322016-08-04 14:27:23 +020041 <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 +090042 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4aa38352017-01-10 14:47:49 -080047 <artifactId>onos-apps-optical-model</artifactId>
fra3b9d3322016-08-04 14:27:23 +020048 <version>${onos.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090052 <artifactId>onos-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080053 <version>${onos.version}</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090054 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080059 <version>${onos.version}</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090060 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-core-dist</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090071 <scope>test</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080077 <version>${onos.version}</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090078 <scope>test</scope>
79 <classifier>tests</classifier>
80 </dependency>
81
82 <dependency>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>org.apache.felix.scr.annotations</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090085 <scope>provided</scope>
86 </dependency>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080087
88 <dependency>
89 <groupId>org.apache.commons</groupId>
90 <artifactId>commons-lang3</artifactId>
91 </dependency>
92
93 <dependency>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onlab-misc</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080096 <version>${onos.version}</version>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080097 </dependency>
98
99 <dependency>
100 <groupId>com.google.guava</groupId>
101 <artifactId>guava</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.glassfish.jersey.core</groupId>
106 <artifactId>jersey-client</artifactId>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -0800107 </dependency>
Naoki Shiotaf16fb6d2015-12-17 14:19:36 -0800108
109 <dependency>
110 <groupId>org.osgi</groupId>
111 <artifactId>org.osgi.compendium</artifactId>
Naoki Shiotaf16fb6d2015-12-17 14:19:36 -0800112 <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>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900131 <extensions>true</extensions>
132 </plugin>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-compiler-plugin</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900136 </plugin>
137 <plugin>
138 <groupId>org.apache.felix</groupId>
139 <artifactId>maven-scr-plugin</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900140 <executions>
141 <execution>
142 <id>generate-scr-srcdescriptor</id>
143 <goals>
144 <goal>scr</goal>
145 </goals>
146 </execution>
147 </executions>
148 <configuration>
149 <supportedProjectTypes>
150 <supportedProjectType>bundle</supportedProjectType>
151 <supportedProjectType>war</supportedProjectType>
152 </supportedProjectTypes>
153 </configuration>
154 </plugin>
155 <plugin>
156 <groupId>org.onosproject</groupId>
157 <artifactId>onos-maven-plugin</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900158 <executions>
159 <execution>
160 <id>cfg</id>
161 <phase>generate-resources</phase>
162 <goals>
163 <goal>cfg</goal>
164 </goals>
165 </execution>
166 <execution>
167 <id>swagger</id>
168 <phase>generate-sources</phase>
169 <goals>
170 <goal>swagger</goal>
171 </goals>
172 </execution>
173 <execution>
174 <id>app</id>
175 <phase>package</phase>
176 <goals>
177 <goal>app</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182 </plugins>
183 </build>
184
185</project>