alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 3cd18b3 | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
alshabib | 69297fd | 2015-09-23 13:22:33 -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/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Charles Chan | 8625e77 | 2016-12-14 16:15:28 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
| 25 | <version>1.8.0</version> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>igmp</artifactId> |
alshabib | ab4da46 | 2017-01-04 21:28:05 -0800 | [diff] [blame] | 31 | <version>1.2-SNAPSHOT</version> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
| 33 | |
| 34 | <description>Internet Group Message Protocol</description> |
| 35 | |
| 36 | <properties> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 37 | <onos.app.name>org.opencord.igmp</onos.app.name> |
Charles Chan | 8625e77 | 2016-12-14 16:15:28 -0800 | [diff] [blame] | 38 | <onos.version>1.8.0</onos.version> |
Simon Hunt | a212071 | 2016-03-04 21:18:23 -0800 | [diff] [blame] | 39 | <onos.app.title>IGMP App</onos.app.title> |
Jian Li | d8015d0 | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 40 | <onos.app.category>Traffic Steering</onos.app.category> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 41 | <onos.app.url>http://opencord.org</onos.app.url> |
Jian Li | 08b493f | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 42 | <onos.app.readme>IGMP implementation.</onos.app.readme> |
Jonathan Hart | 320ca99 | 2016-06-10 15:13:11 -0700 | [diff] [blame] | 43 | <onos.app.requires>org.opencord.config</onos.app.requires> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 44 | </properties> |
| 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-api</artifactId> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 50 | <version>${onos.version}</version> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onos-cli</artifactId> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 56 | <version>${onos.version}</version> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 57 | </dependency> |
| 58 | |
alshabib | e9a108d | 2016-02-01 17:25:00 -0800 | [diff] [blame] | 59 | <dependency> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onlab-osgi</artifactId> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 62 | <version>${onos.version}</version> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 63 | </dependency> |
Jonathan Hart | ef77051 | 2016-05-06 09:38:07 -0700 | [diff] [blame] | 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 67 | <artifactId>onlab-junit</artifactId> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 68 | <version>${onos.version}</version> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
| 74 | <artifactId>onlab-misc</artifactId> |
| 75 | <version>${onos.version}</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-incubator-api</artifactId> |
| 81 | <version>${onos.version}</version> |
| 82 | </dependency> |
alshabib | 7dafbda | 2016-09-27 14:25:40 -0700 | [diff] [blame] | 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onos-incubator-net</artifactId> |
| 87 | <version>${onos.version}</version> |
| 88 | </dependency> |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 89 | |
| 90 | <dependency> |
Charles Chan | 8625e77 | 2016-12-14 16:15:28 -0800 | [diff] [blame] | 91 | <groupId>org.opencord</groupId> |
| 92 | <artifactId>cord-config</artifactId> |
| 93 | <version>${project.version}</version> |
| 94 | </dependency> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 95 | </dependencies> |
| 96 | |
alshabib | aa2911e | 2016-06-01 17:19:46 -0700 | [diff] [blame] | 97 | <build> |
| 98 | <plugins> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>maven-bundle-plugin</artifactId> |
| 102 | <version>3.0.1</version> |
| 103 | <extensions>true</extensions> |
| 104 | </plugin> |
| 105 | <plugin> |
| 106 | <groupId>org.apache.maven.plugins</groupId> |
| 107 | <artifactId>maven-compiler-plugin</artifactId> |
| 108 | <version>2.5.1</version> |
| 109 | <configuration> |
| 110 | <source>1.8</source> |
| 111 | <target>1.8</target> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>maven-scr-plugin</artifactId> |
| 117 | <version>1.21.0</version> |
| 118 | <executions> |
| 119 | <execution> |
| 120 | <id>generate-scr-srcdescriptor</id> |
| 121 | <goals> |
| 122 | <goal>scr</goal> |
| 123 | </goals> |
| 124 | </execution> |
| 125 | </executions> |
| 126 | <configuration> |
| 127 | <supportedProjectTypes> |
| 128 | <supportedProjectType>bundle</supportedProjectType> |
| 129 | <supportedProjectType>war</supportedProjectType> |
| 130 | </supportedProjectTypes> |
| 131 | </configuration> |
| 132 | </plugin> |
| 133 | <plugin> |
| 134 | <groupId>org.onosproject</groupId> |
| 135 | <artifactId>onos-maven-plugin</artifactId> |
| 136 | <version>1.7</version> |
| 137 | <executions> |
| 138 | <execution> |
| 139 | <id>cfg</id> |
| 140 | <phase>generate-resources</phase> |
| 141 | <goals> |
| 142 | <goal>cfg</goal> |
| 143 | </goals> |
| 144 | </execution> |
| 145 | <execution> |
| 146 | <id>swagger</id> |
| 147 | <phase>generate-sources</phase> |
| 148 | <goals> |
| 149 | <goal>swagger</goal> |
| 150 | </goals> |
| 151 | </execution> |
| 152 | <execution> |
| 153 | <id>app</id> |
| 154 | <phase>package</phase> |
| 155 | <goals> |
| 156 | <goal>app</goal> |
| 157 | </goals> |
| 158 | </execution> |
| 159 | </executions> |
| 160 | </plugin> |
| 161 | </plugins> |
| 162 | </build> |
| 163 | |
Charles Chan | 8625e77 | 2016-12-14 16:15:28 -0800 | [diff] [blame] | 164 | <repositories> |
| 165 | <repository> |
| 166 | <id>central</id> |
| 167 | <name>Central Repository</name> |
| 168 | <url>http://repo.maven.apache.org/maven2</url> |
| 169 | <layout>default</layout> |
| 170 | <snapshots> |
| 171 | <enabled>false</enabled> |
| 172 | </snapshots> |
| 173 | <releases> |
| 174 | <enabled>true</enabled> |
| 175 | <updatePolicy>always</updatePolicy> |
| 176 | <checksumPolicy>fail</checksumPolicy> |
| 177 | </releases> |
| 178 | </repository> |
| 179 | |
| 180 | <repository> |
| 181 | <id>snapshots</id> |
| 182 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 183 | <snapshots> |
| 184 | <enabled>true</enabled> |
| 185 | <updatePolicy>always</updatePolicy> |
| 186 | <checksumPolicy>fail</checksumPolicy> |
| 187 | </snapshots> |
| 188 | </repository> |
| 189 | </repositories> |
alshabib | 69297fd | 2015-09-23 13:22:33 -0700 | [diff] [blame] | 190 | </project> |