ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 4d08470 | 2017-08-03 22:45:58 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
ke han | 81a38b9 | 2017-03-10 18:41:44 +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:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Carmelo Cascone | 56ebcb4 | 2019-11-15 21:34:02 -0800 | [diff] [blame] | 25 | <version>2.2.1-b3</version> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>onos-app-igmpproxy</artifactId> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 30 | <version>2.0.0-SNAPSHOT</version> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
| 32 | |
Jonathan Hart | 488e114 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 33 | <description>IGMP proxy app</description> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 34 | |
| 35 | <properties> |
| 36 | <onos.app.name>org.opencord.igmpproxy</onos.app.name> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 37 | <onos.app.category>Traffic Steering</onos.app.category> |
Jonathan Hart | 488e114 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 38 | <onos.app.title>IGMP proxy app</onos.app.title> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 39 | <onos.app.url>http://opencord.org</onos.app.url> |
| 40 | <onos.app.readme>IGMP implementation.</onos.app.readme> |
Jonathan Hart | 488e114 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 41 | <onos.app.requires> |
| 42 | org.opencord.config, |
Esin Karaman | eff1039 | 2019-06-27 18:09:13 +0000 | [diff] [blame] | 43 | org.onosproject.mcast |
Jonathan Hart | 488e114 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 44 | </onos.app.requires> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 45 | <cord.config.version>2.0.0-SNAPSHOT</cord.config.version> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 46 | </properties> |
| 47 | |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
| 53 | <version>${onos.version}</version> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 54 | <scope>provided</scope> |
Sonal Kasliwal | ddc3ff2 | 2019-11-18 11:52:49 +0000 | [diff] [blame] | 55 | <classifier>tests</classifier> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onos-cli</artifactId> |
| 61 | <version>${onos.version}</version> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 62 | <scope>provided</scope> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onlab-osgi</artifactId> |
| 68 | <version>${onos.version}</version> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 69 | <scope>provided</scope> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onlab-junit</artifactId> |
| 75 | <version>${onos.version}</version> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onlab-misc</artifactId> |
| 82 | <version>${onos.version}</version> |
Carmelo Cascone | bef302e | 2019-11-14 19:58:20 -0800 | [diff] [blame] | 83 | <scope>provided</scope> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.opencord</groupId> |
| 88 | <artifactId>cord-config</artifactId> |
Esin Karaman | eff1039 | 2019-06-27 18:09:13 +0000 | [diff] [blame] | 89 | <version>${cord.config.version}</version> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onos-apps-mcast-api</artifactId> |
| 95 | <version>${onos.version}</version> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 96 | </dependency> |
| 97 | </dependencies> |
| 98 | |
| 99 | <build> |
| 100 | <plugins> |
| 101 | <plugin> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 102 | <groupId>org.onosproject</groupId> |
| 103 | <artifactId>onos-maven-plugin</artifactId> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | |
| 108 | <repositories> |
| 109 | <repository> |
| 110 | <id>central</id> |
| 111 | <name>Central Repository</name> |
Daniele Moro | afbaf57 | 2020-01-15 15:59:09 -0800 | [diff] [blame^] | 112 | <url>https://repo.maven.apache.org/maven2</url> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 113 | <layout>default</layout> |
| 114 | <snapshots> |
| 115 | <enabled>false</enabled> |
| 116 | </snapshots> |
| 117 | <releases> |
| 118 | <enabled>true</enabled> |
| 119 | <updatePolicy>always</updatePolicy> |
| 120 | <checksumPolicy>fail</checksumPolicy> |
| 121 | </releases> |
| 122 | </repository> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 123 | <repository> |
| 124 | <id>snapshots</id> |
| 125 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 126 | <snapshots> |
| 127 | <enabled>true</enabled> |
| 128 | <updatePolicy>always</updatePolicy> |
| 129 | <checksumPolicy>fail</checksumPolicy> |
| 130 | </snapshots> |
| 131 | </repository> |
| 132 | </repositories> |
| 133 | </project> |