Sean Condon | 6aad284 | 2018-02-26 23:16:36 +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-cfm</artifactId> |
ONOS Jenkins User | 1733ccf | 2018-04-20 00:49:12 +0000 | [diff] [blame] | 17 | <version>1.13.0-SNAPSHOT</version> |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 18 | </parent> |
| 19 | |
| 20 | <artifactId>onos-apps-cfm-app</artifactId> |
| 21 | <packaging>bundle</packaging> |
ONOS Jenkins User | 1733ccf | 2018-04-20 00:49:12 +0000 | [diff] [blame] | 22 | <version>1.13.0-SNAPSHOT</version> |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 23 | |
| 24 | <description>ONOS OSGi bundle archetype</description> |
| 25 | <url>http://onosproject.org</url> |
| 26 | |
| 27 | <dependencies> |
| 28 | |
| 29 | <dependency> |
| 30 | <groupId>org.onosproject</groupId> |
| 31 | <artifactId>onos-apps-cfm-api</artifactId> |
| 32 | <version>${project.version}</version> |
| 33 | </dependency> |
| 34 | |
| 35 | <dependency> |
| 36 | <groupId>org.onosproject</groupId> |
| 37 | <artifactId>onos-api</artifactId> |
| 38 | </dependency> |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
| 42 | <artifactId>onos-api</artifactId> |
| 43 | <classifier>tests</classifier> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-core-common</artifactId> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-core-common</artifactId> |
| 55 | <classifier>tests</classifier> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onlab-junit</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onlab-osgi</artifactId> |
| 68 | <classifier>tests</classifier> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onos-incubator-store</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-core-serializers</artifactId> |
| 82 | <version>${project.version}</version> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | |
| 86 | </project> |
| 87 | |