blob: 5e15ef05c741e5e490a7a608ae21b84d15c4e4bf [file] [log] [blame]
alshabib10f7fe82016-04-28 15:52:22 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present 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"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
alshabibf2b1e0d2016-06-02 17:12:54 -070024 <artifactId>onos</artifactId>
Hyunsun Moon4deba592016-06-09 10:30:32 -070025 <version>1.6.0-rc2</version>
alshabibf2b1e0d2016-06-02 17:12:54 -070026 <relativePath></relativePath>
alshabib10f7fe82016-04-28 15:52:22 -070027 </parent>
28
alshabibf2b1e0d2016-06-02 17:12:54 -070029 <groupId>org.opencord</groupId>
Jonathan Hart92cc9652016-06-07 11:23:03 -070030 <artifactId>cord-config</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070031 <version>1.0-SNAPSHOT</version>
alshabib10f7fe82016-04-28 15:52:22 -070032 <packaging>bundle</packaging>
33
alshabibb782ceb2016-06-02 21:57:22 -070034 <!--FIXME remove this one the released bits are out-->
35 <repositories>
36 <repository>
37 <id>oss-staging</id>
38 <name>OSS Staging</name>
39 <url>https://oss.sonatype.org/content/groups/staging</url>
40 </repository>
41 </repositories>
42
Jonathan Hartc6681fb2016-05-23 20:50:49 -070043 <description>CORD configuration meta application</description>
alshabib10f7fe82016-04-28 15:52:22 -070044
45 <properties>
alshabibf2b1e0d2016-06-02 17:12:54 -070046 <onos.app.name>org.opencord.config</onos.app.name>
Hyunsun Moon4deba592016-06-09 10:30:32 -070047 <onos.version>1.6.0-rc2</onos.version>
Jonathan Hart92cc9652016-06-07 11:23:03 -070048 <onos.app.title>CORD Configuration Meta Application</onos.app.title>
alshabib10f7fe82016-04-28 15:52:22 -070049 <onos.app.category>Utility</onos.app.category>
50 <onos.app.url>http://opencord.org</onos.app.url>
51 </properties>
52
53 <dependencies>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-api</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070057 <version>${onos.version}</version>
alshabib10f7fe82016-04-28 15:52:22 -070058 </dependency>
alshabibf2b1e0d2016-06-02 17:12:54 -070059
60 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.scr.annotations</artifactId>
63 </dependency>
Jonathan Hart92cc9652016-06-07 11:23:03 -070064
65 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
alshabibf2b1e0d2016-06-02 17:12:54 -070066 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-misc</artifactId>
69 <version>${onos.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onlab-osgi</artifactId>
74 <version>${onos.version}</version>
75 </dependency>
76
alshabib10f7fe82016-04-28 15:52:22 -070077 </dependencies>
78
alshabibf2b1e0d2016-06-02 17:12:54 -070079 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-bundle-plugin</artifactId>
84 <version>3.0.1</version>
85 <extensions>true</extensions>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-compiler-plugin</artifactId>
90 <version>2.5.1</version>
91 <configuration>
92 <source>1.8</source>
93 <target>1.8</target>
94 </configuration>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-scr-plugin</artifactId>
99 <version>1.21.0</version>
100 <executions>
101 <execution>
102 <id>generate-scr-srcdescriptor</id>
103 <goals>
104 <goal>scr</goal>
105 </goals>
106 </execution>
107 </executions>
108 <configuration>
109 <supportedProjectTypes>
110 <supportedProjectType>bundle</supportedProjectType>
111 <supportedProjectType>war</supportedProjectType>
112 </supportedProjectTypes>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.onosproject</groupId>
117 <artifactId>onos-maven-plugin</artifactId>
118 <version>1.7</version>
119 <executions>
120 <execution>
121 <id>cfg</id>
122 <phase>generate-resources</phase>
123 <goals>
124 <goal>cfg</goal>
125 </goals>
126 </execution>
127 <execution>
128 <id>swagger</id>
129 <phase>generate-sources</phase>
130 <goals>
131 <goal>swagger</goal>
132 </goals>
133 </execution>
134 <execution>
135 <id>app</id>
136 <phase>package</phase>
137 <goals>
138 <goal>app</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
143 </plugins>
144 </build>
145
alshabib10f7fe82016-04-28 15:52:22 -0700146
147</project>