blob: c40410001a1983663191e3ef14a38c1dba20d69a [file] [log] [blame]
Sean Condonfae8e662016-12-15 10:25:13 +00001<!-- ~ Copyright 2016-present Open Networking Laboratory ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. -->
2<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">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onosproject</groupId>
7 <artifactId>onos-drivers-general</artifactId>
Ray Milkeyf14cc6d2017-06-28 09:07:17 -07008 <version>1.11.0-SNAPSHOT</version>
Sean Condonfae8e662016-12-15 10:25:13 +00009 </parent>
10
11 <artifactId>onos-drivers-microsemi</artifactId>
12 <packaging>pom</packaging>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <modules>
19 <module>ea1000yang</module>
20 <module>ea1000driver</module>
21 </modules>
22
23 <!-- FIXME this can be removed if/when buck-api is released -->
24 <repositories>
25 <repository>
26 <id>snapshots</id>
27 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
28 <snapshots>
29 <enabled>true</enabled>
30 <updatePolicy>daily</updatePolicy>
31 <checksumPolicy>fail</checksumPolicy>
32 </snapshots>
33 </repository>
34 </repositories>
35
36 <dependencies>
37 <dependency>
38 <groupId>com.google.guava</groupId>
39 <artifactId>guava</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.hamcrest</groupId>
43 <artifactId>hamcrest-all</artifactId>
44 <version>1.3</version>
45 <scope>test</scope>
46 </dependency>
47
48 </dependencies>
49</project>