blob: d38062e72495ed3c7db8ce8c032f4437d182e124 [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>
Charles Chan38f70292016-12-14 16:14:57 -080024 <artifactId>onos-dependencies</artifactId>
25 <version>1.8.0</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>
alshabib924318e2017-01-04 21:28:05 -080030 <version>1.2-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>
Charles Chan38f70292016-12-14 16:14:57 -080037 <onos.version>1.8.0</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>
49 </dependencies>
50
alshabibf2b1e0d2016-06-02 17:12:54 -070051 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-bundle-plugin</artifactId>
56 <version>3.0.1</version>
57 <extensions>true</extensions>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-compiler-plugin</artifactId>
62 <version>2.5.1</version>
63 <configuration>
64 <source>1.8</source>
65 <target>1.8</target>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-scr-plugin</artifactId>
71 <version>1.21.0</version>
72 <executions>
73 <execution>
74 <id>generate-scr-srcdescriptor</id>
75 <goals>
76 <goal>scr</goal>
77 </goals>
78 </execution>
79 </executions>
80 <configuration>
81 <supportedProjectTypes>
82 <supportedProjectType>bundle</supportedProjectType>
83 <supportedProjectType>war</supportedProjectType>
84 </supportedProjectTypes>
85 </configuration>
86 </plugin>
Charles Chan38f70292016-12-14 16:14:57 -080087
alshabibf2b1e0d2016-06-02 17:12:54 -070088 <plugin>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-maven-plugin</artifactId>
91 <version>1.7</version>
92 <executions>
93 <execution>
94 <id>cfg</id>
95 <phase>generate-resources</phase>
96 <goals>
97 <goal>cfg</goal>
98 </goals>
99 </execution>
100 <execution>
101 <id>swagger</id>
102 <phase>generate-sources</phase>
103 <goals>
104 <goal>swagger</goal>
105 </goals>
106 </execution>
107 <execution>
108 <id>app</id>
109 <phase>package</phase>
110 <goals>
111 <goal>app</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
alshabib10f7fe82016-04-28 15:52:22 -0700118</project>