blob: 48a76989189e02e12d9b8b663e8369afb5a52326 [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>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900101 </dependencies>
102
103 <build>
HIGUCHI Yuta1ed0da22015-12-15 15:11:13 -0800104 <pluginManagement>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.karaf.tooling</groupId>
108 <artifactId>karaf-maven-plugin</artifactId>
109 <version>3.0.5</version>
110 <extensions>true</extensions>
111 </plugin>
112 </plugins>
113 </pluginManagement>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +0900114 <plugins>
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <version>2.5.3</version>
119 <extensions>true</extensions>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-compiler-plugin</artifactId>
124 <version>2.5.1</version>
125 <configuration>
126 <source>1.8</source>
127 <target>1.8</target>
128 </configuration>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.felix</groupId>
132 <artifactId>maven-scr-plugin</artifactId>
133 <version>1.20.0</version>
134 <executions>
135 <execution>
136 <id>generate-scr-srcdescriptor</id>
137 <goals>
138 <goal>scr</goal>
139 </goals>
140 </execution>
141 </executions>
142 <configuration>
143 <supportedProjectTypes>
144 <supportedProjectType>bundle</supportedProjectType>
145 <supportedProjectType>war</supportedProjectType>
146 </supportedProjectTypes>
147 </configuration>
148 </plugin>
149 <plugin>
150 <groupId>org.onosproject</groupId>
151 <artifactId>onos-maven-plugin</artifactId>
152 <version>1.5</version>
153 <executions>
154 <execution>
155 <id>cfg</id>
156 <phase>generate-resources</phase>
157 <goals>
158 <goal>cfg</goal>
159 </goals>
160 </execution>
161 <execution>
162 <id>swagger</id>
163 <phase>generate-sources</phase>
164 <goals>
165 <goal>swagger</goal>
166 </goals>
167 </execution>
168 <execution>
169 <id>app</id>
170 <phase>package</phase>
171 <goals>
172 <goal>app</goal>
173 </goals>
174 </execution>
175 </executions>
176 </plugin>
177 </plugins>
178 </build>
179
180</project>