blob: 686f21248c59404677381c653acfec337bbaf463 [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? -->
40 <onos.app.requires>org.onosproject.incubator.rpc,org.onosproject.incubator.rpc.grpc</onos.app.requires>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090041 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
47 <version>${onos.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onlab-osgi</artifactId>
53 <version>${onos.version}</version>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-core-dist</artifactId>
59 <version>${onos.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090065 <scope>test</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-api</artifactId>
71 <version>${onos.version}</version>
72 <scope>test</scope>
73 <classifier>tests</classifier>
74 </dependency>
75
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.scr.annotations</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090079 <scope>provided</scope>
80 </dependency>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080081
82 <dependency>
83 <groupId>org.apache.commons</groupId>
84 <artifactId>commons-lang3</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onlab-misc</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>com.google.guava</groupId>
94 <artifactId>guava</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.glassfish.jersey.core</groupId>
99 <artifactId>jersey-client</artifactId>
100 <version>2.22.1</version>
101 </dependency>
Naoki Shiotaf16fb6d2015-12-17 14:19:36 -0800102
103 <dependency>
104 <groupId>org.osgi</groupId>
105 <artifactId>org.osgi.compendium</artifactId>
106 <version>4.3.1</version>
107 <scope>provided</scope>
108 </dependency>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900109 </dependencies>
110
111 <build>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -0800112 <pluginManagement>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.karaf.tooling</groupId>
116 <artifactId>karaf-maven-plugin</artifactId>
117 <version>3.0.5</version>
118 <extensions>true</extensions>
119 </plugin>
120 </plugins>
121 </pluginManagement>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900122 <plugins>
123 <plugin>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>maven-bundle-plugin</artifactId>
126 <version>2.5.3</version>
127 <extensions>true</extensions>
128 </plugin>
129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-compiler-plugin</artifactId>
132 <version>2.5.1</version>
133 <configuration>
134 <source>1.8</source>
135 <target>1.8</target>
136 </configuration>
137 </plugin>
138 <plugin>
139 <groupId>org.apache.felix</groupId>
140 <artifactId>maven-scr-plugin</artifactId>
141 <version>1.20.0</version>
142 <executions>
143 <execution>
144 <id>generate-scr-srcdescriptor</id>
145 <goals>
146 <goal>scr</goal>
147 </goals>
148 </execution>
149 </executions>
150 <configuration>
151 <supportedProjectTypes>
152 <supportedProjectType>bundle</supportedProjectType>
153 <supportedProjectType>war</supportedProjectType>
154 </supportedProjectTypes>
155 </configuration>
156 </plugin>
157 <plugin>
158 <groupId>org.onosproject</groupId>
159 <artifactId>onos-maven-plugin</artifactId>
Jian Li7f977082016-03-09 11:18:22 -0800160 <version>1.9</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900161 <executions>
162 <execution>
163 <id>cfg</id>
164 <phase>generate-resources</phase>
165 <goals>
166 <goal>cfg</goal>
167 </goals>
168 </execution>
169 <execution>
170 <id>swagger</id>
171 <phase>generate-sources</phase>
172 <goals>
173 <goal>swagger</goal>
174 </goals>
175 </execution>
176 <execution>
177 <id>app</id>
178 <phase>package</phase>
179 <goals>
180 <goal>app</goal>
181 </goals>
182 </execution>
183 </executions>
184 </plugin>
185 </plugins>
186 </build>
187
188</project>