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> |
Esin Karaman | 09b41e5 | 2020-06-01 10:52:55 +0000 | [diff] [blame] | 25 | <version>2.2.3-b1</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> |
Jenkins | 72a0013 | 2020-07-01 12:56:21 +0000 | [diff] [blame^] | 30 | <version>2.1.0</version> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 32 | |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 33 | <modules> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 34 | <module>api</module> |
Andrea Campanella | 26ac21f | 2020-06-25 09:48:15 +0200 | [diff] [blame] | 35 | <module>app</module> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 36 | </modules> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 37 | |
Andrea Campanella | 26ac21f | 2020-06-25 09:48:15 +0200 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 43 | <configuration> |
| 44 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 50 | <repositories> |
| 51 | <repository> |
| 52 | <id>central</id> |
| 53 | <name>Central Repository</name> |
Daniele Moro | afbaf57 | 2020-01-15 15:59:09 -0800 | [diff] [blame] | 54 | <url>https://repo.maven.apache.org/maven2</url> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 55 | <layout>default</layout> |
| 56 | <snapshots> |
| 57 | <enabled>false</enabled> |
| 58 | </snapshots> |
| 59 | <releases> |
| 60 | <enabled>true</enabled> |
| 61 | <updatePolicy>always</updatePolicy> |
| 62 | <checksumPolicy>fail</checksumPolicy> |
| 63 | </releases> |
| 64 | </repository> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 65 | <repository> |
| 66 | <id>snapshots</id> |
| 67 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 68 | <snapshots> |
| 69 | <enabled>true</enabled> |
| 70 | <updatePolicy>always</updatePolicy> |
| 71 | <checksumPolicy>fail</checksumPolicy> |
| 72 | </snapshots> |
| 73 | </repository> |
| 74 | </repositories> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 75 | <distributionManagement> |
| 76 | <snapshotRepository> |
| 77 | <id>ossrh</id> |
| 78 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 79 | </snapshotRepository> |
| 80 | </distributionManagement> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 81 | </project> |