blob: 03689c5b84cb69bbf336b4dd6d8bdfb4ed36014e [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>
alshabib8b46ddf2016-08-18 14:41:18 -070025 <version>1.7.0-SNAPSHOT</version>
alshabib10f7fe82016-04-28 15:52:22 -070026 </parent>
27
Brian O'Connordd1ebd32016-06-24 17:00:42 -070028 <groupId>org.opencord</groupId>
Jonathan Hart92cc9652016-06-07 11:23:03 -070029 <artifactId>cord-config</artifactId>
alshabib36bc0fb2016-08-03 14:06:00 -070030 <version>1.1-SNAPSHOT</version>
alshabib10f7fe82016-04-28 15:52:22 -070031 <packaging>bundle</packaging>
32
Jonathan Hartc6681fb2016-05-23 20:50:49 -070033 <description>CORD configuration meta application</description>
alshabib10f7fe82016-04-28 15:52:22 -070034
35 <properties>
alshabibf2b1e0d2016-06-02 17:12:54 -070036 <onos.app.name>org.opencord.config</onos.app.name>
alshabib8b46ddf2016-08-18 14:41:18 -070037 <onos.version>1.7.0-SNAPSHOT</onos.version>
Jonathan Hart92cc9652016-06-07 11:23:03 -070038 <onos.app.title>CORD Configuration Meta Application</onos.app.title>
alshabib10f7fe82016-04-28 15:52:22 -070039 <onos.app.category>Utility</onos.app.category>
40 <onos.app.url>http://opencord.org</onos.app.url>
41 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070047 <version>${onos.version}</version>
alshabib10f7fe82016-04-28 15:52:22 -070048 </dependency>
alshabibf2b1e0d2016-06-02 17:12:54 -070049
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.scr.annotations</artifactId>
53 </dependency>
Jonathan Hart92cc9652016-06-07 11:23:03 -070054
55 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
alshabibf2b1e0d2016-06-02 17:12:54 -070056 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-misc</artifactId>
59 <version>${onos.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-osgi</artifactId>
64 <version>${onos.version}</version>
65 </dependency>
66
alshabib10f7fe82016-04-28 15:52:22 -070067 </dependencies>
68
alshabibf2b1e0d2016-06-02 17:12:54 -070069 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 <version>3.0.1</version>
75 <extensions>true</extensions>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-compiler-plugin</artifactId>
80 <version>2.5.1</version>
81 <configuration>
82 <source>1.8</source>
83 <target>1.8</target>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-scr-plugin</artifactId>
89 <version>1.21.0</version>
90 <executions>
91 <execution>
92 <id>generate-scr-srcdescriptor</id>
93 <goals>
94 <goal>scr</goal>
95 </goals>
96 </execution>
97 </executions>
98 <configuration>
99 <supportedProjectTypes>
100 <supportedProjectType>bundle</supportedProjectType>
101 <supportedProjectType>war</supportedProjectType>
102 </supportedProjectTypes>
103 </configuration>
104 </plugin>
105 <plugin>
106 <groupId>org.onosproject</groupId>
107 <artifactId>onos-maven-plugin</artifactId>
108 <version>1.7</version>
109 <executions>
110 <execution>
111 <id>cfg</id>
112 <phase>generate-resources</phase>
113 <goals>
114 <goal>cfg</goal>
115 </goals>
116 </execution>
117 <execution>
118 <id>swagger</id>
119 <phase>generate-sources</phase>
120 <goals>
121 <goal>swagger</goal>
122 </goals>
123 </execution>
124 <execution>
125 <id>app</id>
126 <phase>package</phase>
127 <goals>
128 <goal>app</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133 </plugins>
134 </build>
alshabib10f7fe82016-04-28 15:52:22 -0700135</project>