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. |
| 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" 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"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 19 | <name>oparent</name> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 20 | <groupId>org.onap.oparent</groupId> |
| 21 | <artifactId>version</artifactId> |
| 22 | <version>1.0.0-SNAPSHOT</version> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 23 | <packaging>pom</packaging> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 24 | <modules> |
| 25 | <!-- oparent tools --> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 26 | <module>checkstyle</module> |
| 27 | <module>license</module> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 28 | <module>oparent</module> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 29 | </modules> |
Kanagaraj Manickam k00365106 | fc3e465 | 2017-08-11 10:37:12 +0530 | [diff] [blame] | 30 | |
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 | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 37 | </properties> |
Kanagaraj Manickam k00365106 | fc3e465 | 2017-08-11 10:37:12 +0530 | [diff] [blame] | 38 | |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 39 | <distributionManagement> |
| 40 | <repository> |
| 41 | <id>ecomp-releases</id> |
| 42 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 43 | </repository> |
| 44 | <snapshotRepository> |
| 45 | <id>ecomp-snapshots</id> |
| 46 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 47 | </snapshotRepository> |
| 48 | </distributionManagement> |
Kanagaraj Manickam k00365106 | fc3e465 | 2017-08-11 10:37:12 +0530 | [diff] [blame] | 49 | |
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 | 2a78a37 | 2017-08-21 14:03:14 -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> |
| 67 | <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter --> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 68 | <configuration> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 69 | <skip /> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 70 | </configuration> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 71 | </plugin> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 72 | </plugins> |
| 73 | </pluginManagement> |
Gary Wu | 2a78a37 | 2017-08-21 14:03:14 -0700 | [diff] [blame^] | 74 | <plugins> |
| 75 | <plugin> |
| 76 | <groupId>org.sonatype.plugins</groupId> |
| 77 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-deploy-plugin</artifactId> |
| 82 | </plugin> |
| 83 | </plugins> |
Gary Wu | 7f1c152 | 2017-06-21 15:03:17 -0700 | [diff] [blame] | 84 | </build> |
| 85 | </project> |