blob: 351957a0a8809419f3d854b72fc29c57e0fe55f4 [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>
25 <version>1.6.0-SNAPSHOT</version>
26 <relativePath></relativePath>
alshabib10f7fe82016-04-28 15:52:22 -070027 </parent>
28
alshabibf2b1e0d2016-06-02 17:12:54 -070029 <groupId>org.opencord</groupId>
30 <artifactId>config</artifactId>
31 <version>1.0-SNAPSHOT</version>
alshabib10f7fe82016-04-28 15:52:22 -070032 <packaging>bundle</packaging>
33
Jonathan Hartc6681fb2016-05-23 20:50:49 -070034 <description>CORD configuration meta application</description>
alshabib10f7fe82016-04-28 15:52:22 -070035
36 <properties>
alshabibf2b1e0d2016-06-02 17:12:54 -070037 <onos.app.name>org.opencord.config</onos.app.name>
38 <onos.version>1.6.0-SNAPSHOT</onos.version>
Jonathan Hartc6681fb2016-05-23 20:50:49 -070039 <onos.app.title>CORD Configuratuon Meta Application</onos.app.title>
alshabib10f7fe82016-04-28 15:52:22 -070040 <onos.app.category>Utility</onos.app.category>
41 <onos.app.url>http://opencord.org</onos.app.url>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070048 <version>${onos.version}</version>
alshabib10f7fe82016-04-28 15:52:22 -070049 </dependency>
alshabibf2b1e0d2016-06-02 17:12:54 -070050
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.scr.annotations</artifactId>
54 </dependency>
55
56 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-misc</artifactId>
60 <version>${onos.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-osgi</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67
alshabib10f7fe82016-04-28 15:52:22 -070068 </dependencies>
69
alshabibf2b1e0d2016-06-02 17:12:54 -070070 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <version>3.0.1</version>
76 <extensions>true</extensions>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <version>2.5.1</version>
82 <configuration>
83 <source>1.8</source>
84 <target>1.8</target>
85 </configuration>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-scr-plugin</artifactId>
90 <version>1.21.0</version>
91 <executions>
92 <execution>
93 <id>generate-scr-srcdescriptor</id>
94 <goals>
95 <goal>scr</goal>
96 </goals>
97 </execution>
98 </executions>
99 <configuration>
100 <supportedProjectTypes>
101 <supportedProjectType>bundle</supportedProjectType>
102 <supportedProjectType>war</supportedProjectType>
103 </supportedProjectTypes>
104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-maven-plugin</artifactId>
109 <version>1.7</version>
110 <executions>
111 <execution>
112 <id>cfg</id>
113 <phase>generate-resources</phase>
114 <goals>
115 <goal>cfg</goal>
116 </goals>
117 </execution>
118 <execution>
119 <id>swagger</id>
120 <phase>generate-sources</phase>
121 <goals>
122 <goal>swagger</goal>
123 </goals>
124 </execution>
125 <execution>
126 <id>app</id>
127 <phase>package</phase>
128 <goals>
129 <goal>app</goal>
130 </goals>
131 </execution>
132 </executions>
133 </plugin>
134 </plugins>
135 </build>
136
alshabib10f7fe82016-04-28 15:52:22 -0700137
138</project>