blob: b73165a5fbe667089f8390151cc87b0e5b55cdee [file] [log] [blame]
Henry Yu53b65be2017-02-12 13:12:22 -05001<!--
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-json</artifactId>
Bharat saraswala542a362017-03-02 21:43:59 +053030 <packaging>bundle</packaging>
Henry Yu53b65be2017-02-12 13:12:22 -050031
32 <dependencies>
33 <dependency>
34 <groupId>commons-io</groupId>
35 <artifactId>commons-io</artifactId>
36 <version>2.4</version>
37 </dependency>
38 <dependency>
39 <groupId>org.slf4j</groupId>
40 <artifactId>slf4j-api</artifactId>
41 <version>1.7.21</version>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-yang-model</artifactId>
46 <version>1.12-SNAPSHOT</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-yang-runtime</artifactId>
51 <version>1.12-SNAPSHOT</version>
52 </dependency>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-databind</artifactId>
56 <version>2.8.6</version>
57 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-annotations</artifactId>
61 <version>2.8.6</version>
62 </dependency>
Vidyashree Rama46c833f2017-02-23 18:54:26 +053063 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-yang-serializers-utils</artifactId>
66 <version>1.12-SNAPSHOT</version>
67 </dependency>
Henry Yu53b65be2017-02-12 13:12:22 -050068 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>RELEASE</version>
72 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
Bharat saraswala542a362017-03-02 21:43:59 +053078 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <version>3.2.0</version>
81 <extensions>true</extensions>
Henry Yu53b65be2017-02-12 13:12:22 -050082 </plugin>
83 </plugins>
84 </build>
85</project>