blob: 9337cc2aa4e5bf3e7bf7366812f9bcfe2d7599ae [file] [log] [blame]
Marc De Leenheercaf9eb92015-11-10 16:36:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 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 <parent>
20 <artifactId>onos-app-samples</artifactId>
21 <groupId>org.onosproject</groupId>
Jonathan Hart63ddb742016-01-04 11:20:08 -080022 <version>1.5.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>
Jonathan Hart63ddb742016-01-04 11:20:08 -080028 <version>1.5.0-SNAPSHOT</version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090029 <packaging>bundle</packaging>
30
31 <description>Enterprise CORD for Central Office</description>
32 <url>http://onosproject.org</url>
33
34 <properties>
Jonathan Hart63ddb742016-01-04 11:20:08 -080035 <onos.version>1.5.0-SNAPSHOT</onos.version>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090036 <onos.app.name>org.onosproject.ecord.co</onos.app.name>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080037 <!-- TODO App dependency not working? -->
38 <onos.app.requires>org.onosproject.incubator.rpc,org.onosproject.incubator.rpc.grpc</onos.app.requires>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090039 <onos.app.origin>Open Networking Lab</onos.app.origin>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-api</artifactId>
46 <version>${onos.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-osgi</artifactId>
52 <version>${onos.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-core-dist</artifactId>
58 <version>${onos.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090064 <scope>test</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-api</artifactId>
70 <version>${onos.version}</version>
71 <scope>test</scope>
72 <classifier>tests</classifier>
73 </dependency>
74
75 <dependency>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>org.apache.felix.scr.annotations</artifactId>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090078 <scope>provided</scope>
79 </dependency>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -080080
81 <dependency>
82 <groupId>org.apache.commons</groupId>
83 <artifactId>commons-lang3</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onlab-misc</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>com.google.guava</groupId>
93 <artifactId>guava</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.glassfish.jersey.core</groupId>
98 <artifactId>jersey-client</artifactId>
99 <version>2.22.1</version>
100 </dependency>
Naoki Shiotaf16fb6d2015-12-17 14:19:36 -0800101
102 <dependency>
103 <groupId>org.osgi</groupId>
104 <artifactId>org.osgi.compendium</artifactId>
105 <version>4.3.1</version>
106 <scope>provided</scope>
107 </dependency>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900108 </dependencies>
109
110 <build>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -0800111 <pluginManagement>
112 <plugins>
113 <plugin>
114 <groupId>org.apache.karaf.tooling</groupId>
115 <artifactId>karaf-maven-plugin</artifactId>
116 <version>3.0.5</version>
117 <extensions>true</extensions>
118 </plugin>
119 </plugins>
120 </pluginManagement>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900121 <plugins>
122 <plugin>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>maven-bundle-plugin</artifactId>
125 <version>2.5.3</version>
126 <extensions>true</extensions>
127 </plugin>
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-compiler-plugin</artifactId>
131 <version>2.5.1</version>
132 <configuration>
133 <source>1.8</source>
134 <target>1.8</target>
135 </configuration>
136 </plugin>
137 <plugin>
138 <groupId>org.apache.felix</groupId>
139 <artifactId>maven-scr-plugin</artifactId>
140 <version>1.20.0</version>
141 <executions>
142 <execution>
143 <id>generate-scr-srcdescriptor</id>
144 <goals>
145 <goal>scr</goal>
146 </goals>
147 </execution>
148 </executions>
149 <configuration>
150 <supportedProjectTypes>
151 <supportedProjectType>bundle</supportedProjectType>
152 <supportedProjectType>war</supportedProjectType>
153 </supportedProjectTypes>
154 </configuration>
155 </plugin>
156 <plugin>
157 <groupId>org.onosproject</groupId>
158 <artifactId>onos-maven-plugin</artifactId>
159 <version>1.5</version>
160 <executions>
161 <execution>
162 <id>cfg</id>
163 <phase>generate-resources</phase>
164 <goals>
165 <goal>cfg</goal>
166 </goals>
167 </execution>
168 <execution>
169 <id>swagger</id>
170 <phase>generate-sources</phase>
171 <goals>
172 <goal>swagger</goal>
173 </goals>
174 </execution>
175 <execution>
176 <id>app</id>
177 <phase>package</phase>
178 <goals>
179 <goal>app</goal>
180 </goals>
181 </execution>
182 </executions>
183 </plugin>
184 </plugins>
185 </build>
186
187</project>