Brian O'Connor | ce2a03d | 2017-08-03 19:21:03 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2016-present Open Networking Foundation |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 17 | <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"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onosproject</groupId> |
| 22 | <artifactId>onos-drivers-general</artifactId> |
Ray Milkey | 4d2d6c8 | 2017-08-25 15:35:50 -0700 | [diff] [blame] | 23 | <version>1.10.5-SNAPSHOT</version> |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-drivers-microsemi</artifactId> |
| 27 | <packaging>pom</packaging> |
| 28 | |
| 29 | <properties> |
| 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 31 | </properties> |
| 32 | |
| 33 | <modules> |
| 34 | <module>ea1000yang</module> |
| 35 | <module>ea1000driver</module> |
| 36 | </modules> |
| 37 | |
| 38 | <!-- FIXME this can be removed if/when buck-api is released --> |
| 39 | <repositories> |
| 40 | <repository> |
| 41 | <id>snapshots</id> |
| 42 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 43 | <snapshots> |
| 44 | <enabled>true</enabled> |
| 45 | <updatePolicy>daily</updatePolicy> |
| 46 | <checksumPolicy>fail</checksumPolicy> |
| 47 | </snapshots> |
| 48 | </repository> |
| 49 | </repositories> |
| 50 | |
| 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>com.google.guava</groupId> |
| 54 | <artifactId>guava</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.hamcrest</groupId> |
| 58 | <artifactId>hamcrest-all</artifactId> |
| 59 | <version>1.3</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | |
| 63 | </dependencies> |
| 64 | </project> |