blob: 4f917aec61ebf2f925be34afd7cf4d75726f4a0d [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>
ONOS Jenkins User32ebb5a2018-01-09 01:54:28 +000023 <version>1.13.0-b8</version>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -070024 </parent>
25
26 <artifactId>onos-apps-configsync-netconf</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>
35 <onos.app.origin>ON.Lab</onos.app.origin>
36 <onos.app.requires>org.onosproject.configsync, org.onosproject.yang, org.onosproject.netconf</onos.app.requires>
37 <onos.app.category>Utility</onos.app.category>
38 <onos.app.title>Dynamic Device Config device synchronizer for NETCONF</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-configsync</artifactId>
60 <version>${onos.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
Yuta HIGUCHI923a7782017-09-05 13:04:47 -070065 <artifactId>onos-protocols-netconf-api</artifactId>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -070066 <version>${onos.version}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.slf4j</groupId>
71 <artifactId>slf4j-api</artifactId>
72 <scope>provided</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-cli</artifactId>
78 <version>${onos.version}</version>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.karaf.shell</groupId>
83 <artifactId>org.apache.karaf.shell.console</artifactId>
84 <scope>provided</scope>
85 </dependency>
86
87 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onlab-osgi</artifactId>
Thomas Vachuska0e11dcb2017-12-13 16:57:14 -080090 </dependency>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -070091
92 <dependency>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>org.apache.felix.scr.annotations</artifactId>
95 <scope>provided</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>org.osgi</groupId>
100 <artifactId>org.osgi.compendium</artifactId>
101 <scope>provided</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 <scope>test</scope>
108 </dependency>
109
110 <dependency>
111 <groupId>org.onosproject</groupId>
Thomas Vachuska0e11dcb2017-12-13 16:57:14 -0800112 <artifactId>onlab-junit</artifactId>
113 <scope>test</scope>
114 <version>${project.version}</version>
115 </dependency>
116
117 <dependency>
118 <groupId>org.onosproject</groupId>
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -0700119 <artifactId>onos-api</artifactId>
120 <scope>test</scope>
121 <classifier>tests</classifier>
122 </dependency>
123
124 </dependencies>
125
126 <build>
127 <pluginManagement>
128 <plugins>
129
130 <plugin>
131 <groupId>org.apache.karaf.tooling</groupId>
132 <artifactId>karaf-maven-plugin</artifactId>
133 <version>3.0.5</version>
134 <extensions>true</extensions>
135 </plugin>
136
137 </plugins>
138 </pluginManagement>
139
140 <plugins>
141 <plugin>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>maven-bundle-plugin</artifactId>
144 <extensions>true</extensions>
145 </plugin>
146
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-compiler-plugin</artifactId>
150 </plugin>
151
152 <plugin>
153 <groupId>org.apache.felix</groupId>
154 <artifactId>maven-scr-plugin</artifactId>
155 <executions>
156 <execution>
157 <id>generate-scr-srcdescriptor</id>
158 <goals>
159 <goal>scr</goal>
160 </goals>
161 </execution>
162 </executions>
163 <configuration>
164 <supportedProjectTypes>
165 <supportedProjectType>bundle</supportedProjectType>
166 <supportedProjectType>war</supportedProjectType>
167 </supportedProjectTypes>
168 </configuration>
169 </plugin>
170
171 <plugin>
172 <groupId>org.onosproject</groupId>
173 <artifactId>onos-maven-plugin</artifactId>
174 <executions>
175 <execution>
176 <id>cfg</id>
177 <phase>generate-resources</phase>
178 <goals>
179 <goal>cfg</goal>
180 </goals>
181 </execution>
182 <execution>
183 <id>swagger</id>
184 <phase>generate-sources</phase>
185 <goals>
186 <goal>swagger</goal>
187 </goals>
188 </execution>
189 <execution>
190 <id>app</id>
191 <phase>package</phase>
192 <goals>
193 <goal>app</goal>
194 </goals>
195 </execution>
196 </executions>
197 </plugin>
198
199 </plugins>
200 </build>
201
202</project>