Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ~ Copyright 2017 Open Networking Laboratory ~ ~ Licensed under the Apache |
| 3 | License, Version 2.0 (the "License"); ~ you may not use this file except |
| 4 | in compliance with the License. ~ You may obtain a copy of the License at |
| 5 | ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable |
| 6 | law or agreed to in writing, software ~ distributed under the License is |
| 7 | distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 8 | KIND, either express or implied. ~ See the License for the specific language |
| 9 | governing permissions and ~ limitations under the License. --> |
| 10 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | |
| 14 | <parent> |
| 15 | <groupId>org.onosproject</groupId> |
| 16 | <artifactId>onos-apps</artifactId> |
ONOS Jenkins User | 6a08ebd | 2018-04-27 21:07:39 +0000 | [diff] [blame] | 17 | <version>1.13.0-SNAPSHOT</version> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 18 | </parent> |
| 19 | |
Yuta HIGUCHI | f104e0b | 2017-10-10 12:38:08 -0700 | [diff] [blame] | 20 | <artifactId>onos-apps-cfm</artifactId> |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 21 | <packaging>pom</packaging> |
ONOS Jenkins User | 6a08ebd | 2018-04-27 21:07:39 +0000 | [diff] [blame] | 22 | <version>1.13.0-SNAPSHOT</version> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 23 | |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 24 | <modules> |
| 25 | <module>api</module> |
| 26 | <module>app</module> |
| 27 | <module>nbi</module> |
| 28 | </modules> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.onosproject</groupId> |
| 33 | <artifactId>onos-api</artifactId> |
| 34 | </dependency> |
| 35 | |
| 36 | <dependency> |
| 37 | <groupId>org.onosproject</groupId> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 38 | <artifactId>onlab-junit</artifactId> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
Yuta HIGUCHI | f104e0b | 2017-10-10 12:38:08 -0700 | [diff] [blame] | 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onlab-osgi</artifactId> |
| 45 | <classifier>tests</classifier> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 49 | </dependencies> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 50 | </project> |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 51 | |