blob: 07dc848b2c7885410176b2b7d721d908b01e711c [file] [log] [blame]
Brian O'Connor75218c22016-04-09 02:13:23 -07001<!--
2 ~ Copyright 2016-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 -->
Bharat saraswal9fab16b2016-09-23 23:27:24 +053016<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Bharat saraswale304c252016-08-16 20:56:20 +053018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Vinod Kumar S212fcdd2016-02-05 16:15:09 +053019 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
Bharat saraswale304c252016-08-16 20:56:20 +053023 <artifactId>onos-base</artifactId>
24 <version>1</version>
Vinod Kumar S212fcdd2016-02-05 16:15:09 +053025 </parent>
26
Brian O'Connora786b292016-10-18 14:02:35 -070027 <groupId>org.onosproject</groupId>
Ray Milkey9e9709d2016-10-05 14:16:39 -070028 <artifactId>onos-yang-utils</artifactId>
Brian O'Connor5eb588b2016-10-18 14:04:18 -070029 <version>1.10-SNAPSHOT</version>
Bharat saraswalc2d3be12016-06-16 00:29:12 +053030 <packaging>pom</packaging>
Vinod Kumar S212fcdd2016-02-05 16:15:09 +053031
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 </properties>
35
Bharat saraswalc2d3be12016-06-16 00:29:12 +053036 <modules>
37 <module>datamodel</module>
Ray Milkey9e9709d2016-10-05 14:16:39 -070038 <module>generator</module>
39 <module>parser</module>
Bharat saraswalc2d3be12016-06-16 00:29:12 +053040 <module>plugin</module>
VinodKumarS-Huawei75015452016-11-23 21:03:45 +053041 <module>model</module>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080042 <module>runtime</module>
Bharat saraswalc2d3be12016-06-16 00:29:12 +053043 </modules>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070044
Ray Milkeyffd9ef82016-10-06 16:58:16 -070045 <!-- FIXME this can be removed if/when buck-api is released -->
46 <repositories>
47 <repository>
48 <id>snapshots</id>
49 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
50 <snapshots>
51 <enabled>true</enabled>
52 <updatePolicy>daily</updatePolicy>
53 <checksumPolicy>fail</checksumPolicy>
54 </snapshots>
55 </repository>
56 </repositories>
57
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070058 <dependencies>
59 <dependency>
60 <groupId>com.google.guava</groupId>
61 <artifactId>guava</artifactId>
Bharat saraswale304c252016-08-16 20:56:20 +053062 <version>19.0</version>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070063 </dependency>
64 <dependency>
65 <groupId>org.osgi</groupId>
66 <artifactId>org.osgi.compendium</artifactId>
Bharat saraswale304c252016-08-16 20:56:20 +053067 <version>5.0.0</version>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070068 <scope>test</scope>
69 </dependency>
Ray Milkeyb322f082016-10-06 11:06:10 -070070 <dependency>
Ray Milkeyb322f082016-10-06 11:06:10 -070071 <groupId>org.hamcrest</groupId>
72 <artifactId>hamcrest-all</artifactId>
73 <version>1.3</version>
Ray Milkeyffd9ef82016-10-06 16:58:16 -070074 <scope>test</scope>
Ray Milkeyb322f082016-10-06 11:06:10 -070075 </dependency>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070076 </dependencies>
77
78 <build>
Bharat saraswal9fab16b2016-09-23 23:27:24 +053079 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-compiler-plugin</artifactId>
83 <version>3.5.1</version>
84 <configuration>
85 <source>1.8</source>
86 <target>1.8</target>
87 </configuration>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-bundle-plugin</artifactId>
92 <version>2.5.4</version>
93 <extensions>true</extensions>
94 </plugin>
95 </plugins>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070096 </build>
Vinod Kumar S212fcdd2016-02-05 16:15:09 +053097</project>