Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 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 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-core-store</artifactId> |
Thomas Vachuska | 389f108 | 2016-06-08 17:57:28 -0700 | [diff] [blame] | 25 | <version>1.6.0-SNAPSHOT</version> |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-core-primitives</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>ONOS distributed state management primitives</description> |
| 32 | |
| 33 | <dependencies> |
| 34 | |
| 35 | <dependency> |
| 36 | <groupId>org.onosproject</groupId> |
| 37 | <artifactId>onos-api</artifactId> |
| 38 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 39 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
| 42 | <artifactId>onos-core-common</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 45 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-core-serializers</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 51 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 52 | <dependency> |
| 53 | <groupId>org.easymock</groupId> |
| 54 | <artifactId>easymock</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 57 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onos-api</artifactId> |
| 61 | <classifier>tests</classifier> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 64 | |
Brian O'Connor | 344ea7a | 2016-04-04 14:08:33 -0700 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>commons-io</groupId> |
| 67 | <artifactId>commons-io</artifactId> |
| 68 | <version>${commons.io.version}</version> |
| 69 | </dependency> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 70 | |
| 71 | <dependency> |
Madan Jampani | e59a312 | 2016-05-31 11:34:05 -0700 | [diff] [blame] | 72 | <groupId>io.atomix</groupId> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 73 | <artifactId>atomix</artifactId> |
Madan Jampani | e59a312 | 2016-05-31 11:34:05 -0700 | [diff] [blame] | 74 | <version>1.0.0-rc7</version> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 75 | </dependency> |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 76 | </dependencies> |
| 77 | </project> |