blob: ca1e825572e3aee5cb61f5c9984b5c2a85d37880 [file] [log] [blame]
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017 Open Networking Foundation
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
20 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
Ray Milkey312d9872018-08-20 16:09:54 -070023 <version>1.15.0-SNAPSHOT</version>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -070024 </parent>
25
26 <artifactId>onos-apps-configsync</artifactId>
27 <packaging>bundle</packaging>
28
29 <description>Dynamic Device Config device synchronizer</description>
30 <url>http://onosproject.org</url>
31
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 <onos.version>${project.version}</onos.version>
Thomas Vachuskaa10137c2018-04-03 16:45:59 -070035 <onos.app.origin>ONOS Community</onos.app.origin>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -070036 <onos.app.requires>org.onosproject.config</onos.app.requires>
37 <onos.app.category>Utility</onos.app.category>
38 <onos.app.title>Dynamic Device Config device synchronizer</onos.app.title>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-yang-model</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-yang-runtime</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-apps-config</artifactId>
60 <version>${onos.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.slf4j</groupId>
65 <artifactId>slf4j-api</artifactId>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-cli</artifactId>
72 <version>${onos.version}</version>
73 </dependency>
74
75 <dependency>
76 <groupId>org.apache.karaf.shell</groupId>
77 <artifactId>org.apache.karaf.shell.console</artifactId>
78 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onlab-osgi</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.scr.annotations</artifactId>
89 <scope>provided</scope>
90 </dependency>
91
92 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.compendium</artifactId>
95 <scope>provided</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <scope>test</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.onosproject</groupId>
Thomas Vachuska0e11dcb2017-12-13 16:57:14 -0800106 <artifactId>onlab-junit</artifactId>
107 <scope>test</scope>
108 <version>${project.version}</version>
109 </dependency>
110
111 <dependency>
112 <groupId>org.onosproject</groupId>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -0700113 <artifactId>onos-api</artifactId>
114 <scope>test</scope>
115 <classifier>tests</classifier>
116 </dependency>
117
118 <dependency>
119 <groupId>com.google.guava</groupId>
120 <artifactId>guava-testlib</artifactId>
121 <scope>test</scope>
122 </dependency>
123
124 </dependencies>
125
126 <build>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -0700127
128 <plugins>
129 <plugin>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>maven-bundle-plugin</artifactId>
132 <extensions>true</extensions>
133 </plugin>
134
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-compiler-plugin</artifactId>
138 </plugin>
139
140 <plugin>
141 <groupId>org.apache.felix</groupId>
142 <artifactId>maven-scr-plugin</artifactId>
143 <executions>
144 <execution>
145 <id>generate-scr-srcdescriptor</id>
146 <goals>
147 <goal>scr</goal>
148 </goals>
149 </execution>
150 </executions>
151 <configuration>
152 <supportedProjectTypes>
153 <supportedProjectType>bundle</supportedProjectType>
154 <supportedProjectType>war</supportedProjectType>
155 </supportedProjectTypes>
156 </configuration>
157 </plugin>
158
159 <plugin>
160 <groupId>org.onosproject</groupId>
161 <artifactId>onos-maven-plugin</artifactId>
162 <executions>
163 <execution>
164 <id>cfg</id>
165 <phase>generate-resources</phase>
166 <goals>
167 <goal>cfg</goal>
168 </goals>
169 </execution>
170 <execution>
171 <id>swagger</id>
172 <phase>generate-sources</phase>
173 <goals>
174 <goal>swagger</goal>
175 </goals>
176 </execution>
177 <execution>
178 <id>app</id>
179 <phase>package</phase>
180 <goals>
181 <goal>app</goal>
182 </goals>
183 </execution>
184 </executions>
185 </plugin>
186
187 </plugins>
188 </build>
189
190</project>