Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2016-2017 Huawei Technologies Co., Ltd. |
Anaël Closson | 9ab3bc5 | 2017-08-28 15:35:58 +0200 | [diff] [blame^] | 4 | Modifications copyright (C) 2017 AT&T Intellectual Property |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 5 | |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | --> |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 20 | <name>oparent</name> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 21 | <groupId>org.onap.oparent</groupId> |
| 22 | <artifactId>version</artifactId> |
| 23 | <version>1.0.0-SNAPSHOT</version> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 24 | <packaging>pom</packaging> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 25 | <modules> |
| 26 | <!-- oparent tools --> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 27 | <module>checkstyle</module> |
| 28 | <module>license</module> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 29 | <module>oparent</module> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 30 | </modules> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 31 | <properties> |
| 32 | <maven.compiler.source>1.8</maven.compiler.source> |
| 33 | <maven.compiler.target>1.8</maven.compiler.target> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 36 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
Gary Wu | ff1f342 | 2017-08-23 13:24:41 -0700 | [diff] [blame] | 37 | <!-- sitePath may be overridden in the inheriting POM if desired --> |
| 38 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 39 | </properties> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 40 | <distributionManagement> |
| 41 | <repository> |
| 42 | <id>ecomp-releases</id> |
| 43 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 44 | </repository> |
| 45 | <snapshotRepository> |
| 46 | <id>ecomp-snapshots</id> |
| 47 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 48 | </snapshotRepository> |
| 49 | </distributionManagement> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 50 | <build> |
| 51 | <pluginManagement> |
| 52 | <plugins> |
| 53 | <plugin> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 54 | <groupId>org.sonatype.plugins</groupId> |
| 55 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 56 | <version>1.6.7</version> |
| 57 | <extensions>true</extensions> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 58 | <configuration> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 59 | <nexusUrl>${onap.nexus.url}</nexusUrl> |
| 60 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 61 | <serverId>ecomp-staging</serverId> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 62 | </configuration> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 63 | </plugin> |
| 64 | <plugin> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 65 | <groupId>org.apache.maven.plugins</groupId> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame] | 66 | <artifactId>maven-deploy-plugin</artifactId> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 67 | <!-- This version supports the "deployAtEnd" parameter --> |
| 68 | <version>2.8</version> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 69 | <configuration> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 70 | <skip/> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 71 | </configuration> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 72 | </plugin> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-site-plugin</artifactId> |
| 76 | <version>3.6</version> |
| 77 | <dependencies> |
| 78 | <dependency> |
| 79 | <groupId>org.apache.maven.wagon</groupId> |
| 80 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 81 | <version>2.10</version> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </plugin> |
Anaël Closson | 9ab3bc5 | 2017-08-28 15:35:58 +0200 | [diff] [blame^] | 85 | <plugin> |
| 86 | <groupId>org.codehaus.mojo</groupId> |
| 87 | <artifactId>versions-maven-plugin</artifactId> |
| 88 | <version>2.4</version> |
| 89 | <executions> |
| 90 | <execution> |
| 91 | <id>check-dependencies-version</id> |
| 92 | <phase>validate</phase> |
| 93 | <goals> |
| 94 | <goal>display-dependency-updates</goal> |
| 95 | </goals> |
| 96 | <configuration> |
| 97 | <!--<rulesUri>https://git.onap.org/oparent/plain/oparent/versions/src/main/resources/onap-versions/ruleset.xml</rulesUri>--> |
| 98 | </configuration> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 102 | </plugins> |
| 103 | </pluginManagement> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 104 | <plugins> |
| 105 | <plugin> |
| 106 | <groupId>org.sonatype.plugins</groupId> |
| 107 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 108 | </plugin> |
| 109 | <plugin> |
| 110 | <groupId>org.apache.maven.plugins</groupId> |
| 111 | <artifactId>maven-deploy-plugin</artifactId> |
| 112 | </plugin> |
| 113 | <plugin> |
| 114 | <groupId>org.apache.maven.plugins</groupId> |
| 115 | <artifactId>maven-site-plugin</artifactId> |
| 116 | </plugin> |
Anaël Closson | 9ab3bc5 | 2017-08-28 15:35:58 +0200 | [diff] [blame^] | 117 | <plugin> |
| 118 | <groupId>org.codehaus.mojo</groupId> |
| 119 | <artifactId>versions-maven-plugin</artifactId> |
| 120 | </plugin> |
Gary Wu | 07a40c8 | 2017-08-23 12:03:32 -0700 | [diff] [blame] | 121 | </plugins> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 122 | </build> |
| 123 | </project> |