Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [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 2014-present Open Networking Laboratory |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [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 | <prerequisites> |
HIGUCHI Yuta | 969a15e | 2016-05-21 12:09:40 -0700 | [diff] [blame] | 23 | <maven>3.0.3</maven> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 24 | </prerequisites> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 4397757 | 2016-06-02 13:48:55 -0700 | [diff] [blame] | 28 | <artifactId>onos-dependencies</artifactId> |
Brian O'Connor | bfc02ec | 2016-09-16 00:42:37 -0700 | [diff] [blame] | 29 | <version>1.8.0-SNAPSHOT</version> |
Thomas Vachuska | 4397757 | 2016-06-02 13:48:55 -0700 | [diff] [blame] | 30 | <relativePath>lib/pom.xml</relativePath> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 31 | </parent> |
| 32 | |
Brian O'Connor | 1cda931 | 2015-09-04 20:19:16 -0700 | [diff] [blame] | 33 | <groupId>org.onosproject</groupId> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 34 | <artifactId>onos</artifactId> |
| 35 | <packaging>pom</packaging> |
Brian O'Connor | bfc02ec | 2016-09-16 00:42:37 -0700 | [diff] [blame] | 36 | <version>1.8.0-SNAPSHOT</version> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 37 | |
| 38 | <name>${project.artifactId}</name> |
| 39 | <description>Open Network Operating System root project</description> |
Thomas Vachuska | 4397757 | 2016-06-02 13:48:55 -0700 | [diff] [blame] | 40 | <url>http://onosproject.org/</url> |
| 41 | |
| 42 | <scm> |
| 43 | <connection>scm:git:https://gerrit.onosproject.org/onos</connection> |
| 44 | <developerConnection>scm:git:https://gerrit.onosproject.org/onos |
| 45 | </developerConnection> |
| 46 | <url>http://gerrit.onosproject.org/</url> |
| 47 | </scm> |
| 48 | |
| 49 | <licenses> |
| 50 | <license> |
| 51 | <name>Apache License, Version 2.0</name> |
| 52 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 53 | </license> |
| 54 | </licenses> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 55 | |
| 56 | <modules> |
Thomas Vachuska | c08a5db | 2016-06-06 11:17:06 -0700 | [diff] [blame] | 57 | <module>lib</module> |
| 58 | |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 59 | <module>utils</module> |
| 60 | <module>core</module> |
| 61 | <module>web</module> |
| 62 | <module>cli</module> |
| 63 | |
Thomas Vachuska | dc24002 | 2015-11-19 14:45:03 -0800 | [diff] [blame] | 64 | <module>protocols</module> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 65 | <module>providers</module> |
| 66 | <module>drivers</module> |
| 67 | |
| 68 | <module>apps</module> |
| 69 | <module>incubator</module> |
| 70 | <module>features</module> |
| 71 | |
| 72 | <module>tools/package/archetypes</module> |
| 73 | <module>tools/package/branding</module> |
| 74 | </modules> |
| 75 | |
Brian O'Connor | 01ac79e | 2016-04-04 14:10:09 -0700 | [diff] [blame] | 76 | <!-- FIXME remove before release; needed for the following |
Thomas Vachuska | 4397757 | 2016-06-02 13:48:55 -0700 | [diff] [blame] | 77 | - openflowj |
| 78 | - snmp |
Brian O'Connor | 01ac79e | 2016-04-04 14:10:09 -0700 | [diff] [blame] | 79 | --> |
Jonathan Hart | 709b19f | 2016-04-04 15:59:59 -0700 | [diff] [blame] | 80 | <repositories> |
| 81 | <repository> |
| 82 | <id>snapshots</id> |
| 83 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
Brian O'Connor | e4da59d | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 84 | <snapshots> |
| 85 | <enabled>true</enabled> |
Parvathi M | 4055b37 | 2016-07-26 15:13:31 -0700 | [diff] [blame] | 86 | <updatePolicy>daily</updatePolicy> |
Brian O'Connor | e4da59d | 2016-04-08 00:32:18 -0700 | [diff] [blame] | 87 | <checksumPolicy>fail</checksumPolicy> |
| 88 | </snapshots> |
Jonathan Hart | 709b19f | 2016-04-04 15:59:59 -0700 | [diff] [blame] | 89 | </repository> |
| 90 | </repositories> |
| 91 | |
Parvathi M | 4055b37 | 2016-07-26 15:13:31 -0700 | [diff] [blame] | 92 | <!-- FIXME required for onos-maven-plugin:1.10-SNAPSHOT --> |
| 93 | <pluginRepositories> |
| 94 | <pluginRepository> |
| 95 | <id>snapshots</id> |
| 96 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 97 | <snapshots> |
| 98 | <enabled>true</enabled> |
| 99 | <updatePolicy>daily</updatePolicy> |
| 100 | <checksumPolicy>fail</checksumPolicy> |
| 101 | </snapshots> |
| 102 | </pluginRepository> |
| 103 | </pluginRepositories> |
| 104 | |
Thomas Vachuska | 4397757 | 2016-06-02 13:48:55 -0700 | [diff] [blame] | 105 | <distributionManagement> |
| 106 | <snapshotRepository> |
| 107 | <id>ossrh</id> |
| 108 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 109 | </snapshotRepository> |
| 110 | </distributionManagement> |
| 111 | |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 112 | <dependencyManagement> |
| 113 | <dependencies> |
| 114 | <dependency> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 115 | <groupId>org.onosproject</groupId> |
| 116 | <artifactId>onlab-misc</artifactId> |
| 117 | <version>${project.version}</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.onosproject</groupId> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 121 | <artifactId>onlab-osgi</artifactId> |
| 122 | <version>${project.version}</version> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.onosproject</groupId> |
| 126 | <artifactId>onlab-osgi</artifactId> |
| 127 | <version>${project.version}</version> |
| 128 | <classifier>tests</classifier> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.onosproject</groupId> |
| 133 | <artifactId>onlab-junit</artifactId> |
| 134 | <version>${project.version}</version> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | |
| 138 | <dependency> |
| 139 | <groupId>org.onosproject</groupId> |
| 140 | <artifactId>onos-api</artifactId> |
| 141 | <version>${project.version}</version> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>org.onosproject</groupId> |
| 145 | <artifactId>onos-api</artifactId> |
| 146 | <version>${project.version}</version> |
| 147 | <classifier>tests</classifier> |
| 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | |
| 151 | <dependency> |
| 152 | <groupId>org.onosproject</groupId> |
| 153 | <artifactId>onos-incubator-api</artifactId> |
| 154 | <version>${project.version}</version> |
| 155 | </dependency> |
| 156 | |
| 157 | <dependency> |
| 158 | <groupId>org.onosproject</groupId> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 159 | <artifactId>onos-incubator-net</artifactId> |
| 160 | <version>${project.version}</version> |
| 161 | </dependency> |
| 162 | |
| 163 | <dependency> |
| 164 | <groupId>org.onosproject</groupId> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 165 | <artifactId>onos-core-common</artifactId> |
| 166 | <version>${project.version}</version> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>org.onosproject</groupId> |
| 170 | <artifactId>onos-core-common</artifactId> |
| 171 | <version>${project.version}</version> |
| 172 | <classifier>tests</classifier> |
| 173 | <scope>test</scope> |
| 174 | </dependency> |
| 175 | |
| 176 | <dependency> |
| 177 | <groupId>org.onosproject</groupId> |
| 178 | <artifactId>onos-of-api</artifactId> |
| 179 | <version>${project.version}</version> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.onosproject</groupId> |
| 183 | <artifactId>onos-ovsdb-rfc</artifactId> |
| 184 | <version>${project.version}</version> |
| 185 | </dependency> |
| 186 | <dependency> |
| 187 | <groupId>org.onosproject</groupId> |
| 188 | <artifactId>onos-ovsdb-api</artifactId> |
| 189 | <version>${project.version}</version> |
| 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.onosproject</groupId> |
Phanendra Manda | 5e89587 | 2015-08-26 20:11:58 +0530 | [diff] [blame] | 193 | <artifactId>onos-app-pcep-api</artifactId> |
| 194 | <version>${project.version}</version> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.onosproject</groupId> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 198 | <artifactId>onos-pcepio</artifactId> |
| 199 | <version>${project.version}</version> |
| 200 | </dependency> |
| 201 | |
| 202 | <dependency> |
| 203 | <groupId>org.onosproject</groupId> |
| 204 | <artifactId>onos-pcep-controller-api</artifactId> |
| 205 | <version>${project.version}</version> |
| 206 | </dependency> |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>org.onosproject</groupId> |
| 209 | <artifactId>onlab-thirdparty</artifactId> |
| 210 | <version>${project.version}</version> |
| 211 | </dependency> |
| 212 | |
| 213 | <dependency> |
| 214 | <groupId>org.onosproject</groupId> |
| 215 | <artifactId>onos-of-api</artifactId> |
| 216 | <version>${project.version}</version> |
| 217 | <classifier>tests</classifier> |
| 218 | <scope>test</scope> |
| 219 | </dependency> |
| 220 | <dependency> |
Phanendra Manda | 5e89587 | 2015-08-26 20:11:58 +0530 | [diff] [blame] | 221 | <groupId>org.onosproject</groupId> |
| 222 | <artifactId>onos-pcep-controller-api</artifactId> |
| 223 | <version>${project.version}</version> |
| 224 | <classifier>tests</classifier> |
| 225 | <scope>test</scope> |
| 226 | </dependency> |
| 227 | <dependency> |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 228 | <groupId>org.onosproject</groupId> |
| 229 | <artifactId>onos-bgpio</artifactId> |
| 230 | <version>${project.version}</version> |
| 231 | </dependency> |
Thomas Vachuska | 47e2fcc | 2015-11-23 11:51:24 -0800 | [diff] [blame] | 232 | |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 233 | <dependency> |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 234 | <groupId>org.onosproject</groupId> |
| 235 | <artifactId>onos-bgp-api</artifactId> |
| 236 | <version>${project.version}</version> |
| 237 | </dependency> |
Thejaswi N K | 6a4cd00 | 2015-09-21 17:19:55 +0530 | [diff] [blame] | 238 | <dependency> |
| 239 | <groupId>org.onosproject</groupId> |
| 240 | <artifactId>onos-app-bgp-api</artifactId> |
| 241 | <version>${project.version}</version> |
| 242 | </dependency> |
Thomas Vachuska | 47e2fcc | 2015-11-23 11:51:24 -0800 | [diff] [blame] | 243 | |
Brian O'Connor | 354cab9 | 2015-08-27 11:55:27 -0700 | [diff] [blame] | 244 | </dependencies> |
| 245 | </dependencyManagement> |
| 246 | |
Madan Jampani | 3289fbf | 2016-01-13 14:14:27 -0800 | [diff] [blame] | 247 | </project> |