Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 2 | |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 3 | <!-- |
| 4 | ~ Copyright 2015 Open Networking Laboratory |
| 5 | ~ |
| 6 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | ~ you may not use this file except in compliance with the License. |
| 8 | ~ You may obtain a copy of the License at |
| 9 | ~ |
| 10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ~ |
| 12 | ~ Unless required by applicable law or agreed to in writing, software |
| 13 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | ~ See the License for the specific language governing permissions and |
| 16 | ~ limitations under the License. |
| 17 | --> |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 25 | <artifactId>onos-incubator</artifactId> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 26 | <version>1.6.0-SNAPSHOT</version> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 27 | <relativePath>../pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 30 | <artifactId>onos-incubator-store</artifactId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
| 32 | |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 33 | <description>ONOS incubating distributed store subsystems</description> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 38 | <artifactId>onos-incubator-api</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onos-incubator-api</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | <classifier>tests</classifier> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 52 | <artifactId>onos-core-dist</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>com.google.guava</groupId> |
| 58 | <artifactId>guava-testlib</artifactId> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 62 | <groupId>org.easymock</groupId> |
| 63 | <artifactId>easymock</artifactId> |
| 64 | <scope>test</scope> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onos-api</artifactId> |
| 69 | <classifier>tests</classifier> |
| 70 | <scope>test</scope> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 71 | </dependency> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.apache.felix</groupId> |
| 75 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 76 | </dependency> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 77 | </dependencies> |
| 78 | |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 79 | |
| 80 | <build> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <groupId>org.apache.felix</groupId> |
| 84 | <artifactId>maven-scr-plugin</artifactId> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
| 88 | |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 89 | </project> |