blob: 21bc71e3cc7791404d5876e783048162d486aafd [file] [log] [blame]
Vidyashree Rama46c833f2017-02-23 18:54:26 +05301<!--
2 ~ Copyright 2017-present Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
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>
24 <artifactId>onos-yang-serializers</artifactId>
25 <version>1.12-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-yang-serializers-xml</artifactId>
Bharat saraswala542a362017-03-02 21:43:59 +053030 <packaging>bundle</packaging>
Vidyashree Rama46c833f2017-02-23 18:54:26 +053031
32 <dependencies>
33 <dependency>
34 <groupId>org.slf4j</groupId>
35 <artifactId>slf4j-api</artifactId>
36 <version>1.7.21</version>
37 </dependency>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-yang-runtime</artifactId>
41 <version>1.12-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.servicemix.bundles</groupId>
45 <artifactId>org.apache.servicemix.bundles.dom4j</artifactId>
46 <version>1.6.1_5</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-yang-serializers-utils</artifactId>
51 <version>1.12-SNAPSHOT</version>
52 </dependency>
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <version>RELEASE</version>
57 </dependency>
58 </dependencies>
59
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
65 <version>${project.version}</version>
66 <configuration>
67 <yangFilesDir>src/test/resources</yangFilesDir>
68 </configuration>
69 <executions>
70 <execution>
71 <id>default</id>
72 <goals>
73 <goal>yang2java</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
Bharat saraswala542a362017-03-02 21:43:59 +053079 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 <version>3.2.0</version>
82 <extensions>true</extensions>
Vidyashree Rama46c833f2017-02-23 18:54:26 +053083 </plugin>
84 </plugins>
85 </build>
86</project>