blob: b571eea5206122deb9aa4c8d37a52ce2751aa8b4 [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>
Thomas Vachuskaf40fb572016-11-20 11:43:57 -080041 <module>runtime</module>
Bharat saraswalc2d3be12016-06-16 00:29:12 +053042 </modules>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070043
Ray Milkeyffd9ef82016-10-06 16:58:16 -070044 <!-- FIXME this can be removed if/when buck-api is released -->
45 <repositories>
46 <repository>
47 <id>snapshots</id>
48 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
49 <snapshots>
50 <enabled>true</enabled>
51 <updatePolicy>daily</updatePolicy>
52 <checksumPolicy>fail</checksumPolicy>
53 </snapshots>
54 </repository>
55 </repositories>
56
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070057 <dependencies>
58 <dependency>
59 <groupId>com.google.guava</groupId>
60 <artifactId>guava</artifactId>
Bharat saraswale304c252016-08-16 20:56:20 +053061 <version>19.0</version>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070062 </dependency>
63 <dependency>
64 <groupId>org.osgi</groupId>
65 <artifactId>org.osgi.compendium</artifactId>
Bharat saraswale304c252016-08-16 20:56:20 +053066 <version>5.0.0</version>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070067 <scope>test</scope>
68 </dependency>
Ray Milkeyb322f082016-10-06 11:06:10 -070069 <dependency>
Ray Milkeyb322f082016-10-06 11:06:10 -070070 <groupId>org.hamcrest</groupId>
71 <artifactId>hamcrest-all</artifactId>
72 <version>1.3</version>
Ray Milkeyffd9ef82016-10-06 16:58:16 -070073 <scope>test</scope>
Ray Milkeyb322f082016-10-06 11:06:10 -070074 </dependency>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070075 </dependencies>
76
77 <build>
Bharat saraswal9fab16b2016-09-23 23:27:24 +053078 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-compiler-plugin</artifactId>
82 <version>3.5.1</version>
83 <configuration>
84 <source>1.8</source>
85 <target>1.8</target>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-bundle-plugin</artifactId>
91 <version>2.5.4</version>
92 <extensions>true</extensions>
93 </plugin>
94 </plugins>
Brian O'Connorc56a6ed2016-08-04 14:54:48 -070095 </build>
Vinod Kumar S212fcdd2016-02-05 16:15:09 +053096</project>