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