Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
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> |
Ray Milkey | d4ac0ed | 2017-08-11 17:04:16 -0700 | [diff] [blame] | 25 | <version>1.11.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> |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 43 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 44 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-core-serializers</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 50 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.easymock</groupId> |
| 53 | <artifactId>easymock</artifactId> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 56 | |
Madan Jampani | f4c8850 | 2016-01-21 12:35:36 -0800 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-api</artifactId> |
| 60 | <classifier>tests</classifier> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 63 | |
Brian O'Connor | 344ea7a | 2016-04-04 14:08:33 -0700 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>commons-io</groupId> |
| 66 | <artifactId>commons-io</artifactId> |
| 67 | <version>${commons.io.version}</version> |
| 68 | </dependency> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 69 | |
| 70 | <dependency> |
Madan Jampani | 630e7ac | 2016-05-31 11:34:05 -0700 | [diff] [blame] | 71 | <groupId>io.atomix</groupId> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 72 | <artifactId>atomix</artifactId> |
Jordan Halterman | 035231e | 2017-07-18 08:39:07 -0700 | [diff] [blame] | 73 | <version>2.0.0-raft-beta1</version> |
Brian O'Connor | 96f689b | 2016-04-05 22:20:42 -0700 | [diff] [blame] | 74 | </dependency> |
Aaron Kruglikov | c0c27c0 | 2016-06-07 16:05:00 -0700 | [diff] [blame] | 75 | |
| 76 | <dependency> |
Aaron Kruglikov | c0c27c0 | 2016-06-07 16:05:00 -0700 | [diff] [blame] | 77 | <groupId>org.onosproject</groupId> |
| 78 | <artifactId>onlab-junit</artifactId> |
Aaron Kruglikov | c0c27c0 | 2016-06-07 16:05:00 -0700 | [diff] [blame] | 79 | <scope>test</scope> |
| 80 | </dependency> |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 81 | </dependencies> |
| 82 | </project> |