Michal Ptacek | 7168a9a | 2019-11-04 06:45:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2016-2018 Huawei Technologies Co., Ltd. |
| 4 | Modifications copyright (C) 2017 AT&T Intellectual Property |
| 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> |
| 20 | <name>oparent</name> |
| 21 | <groupId>org.onap.oparent</groupId> |
| 22 | <artifactId>version</artifactId> |
| 23 | <version>1.2.1</version> |
| 24 | <packaging>pom</packaging> |
| 25 | <modules> |
| 26 | <!-- oparent tools --> |
| 27 | <module>checkstyle</module> |
| 28 | <module>license</module> |
| 29 | <module>oparent</module> |
| 30 | <module>oparent-python</module> |
| 31 | <module>dependencies</module> |
| 32 | <module>dependencies-clm</module> |
| 33 | </modules> |
| 34 | <properties> |
| 35 | <maven.compiler.source>1.8</maven.compiler.source> |
| 36 | <maven.compiler.target>1.8</maven.compiler.target> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 39 | <!-- sitePath may be overridden in the inheriting POM if desired --> |
| 40 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
| 41 | |
| 42 | <!-- |
| 43 | The following properties should be defined in your own ~/.m2/settings.xml based on your own build infastructure setup. |
| 44 | See the settings.xml in this directory for default settings based on the Linux Foundation ONAP infrastructure. |
| 45 | |
| 46 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
| 47 | <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw</onap.nexus.rawrepo.baseurl.upload> |
| 48 | <onap.nexus.rawrepo.baseurl.download>https://nexus.onap.org/service/local/repositories/raw/content</onap.nexus.rawrepo.baseurl.download> |
| 49 | <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid> |
| 50 | <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily> |
| 51 | <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release> |
| 52 | <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry> |
| 53 | <docker.push.registry>nexus3.onap.org:10003</docker.push.registry> |
| 54 | --> |
| 55 | </properties> |
| 56 | <distributionManagement> |
| 57 | <repository> |
| 58 | <id>ecomp-releases</id> |
| 59 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 60 | </repository> |
| 61 | <snapshotRepository> |
| 62 | <id>ecomp-snapshots</id> |
| 63 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 64 | </snapshotRepository> |
| 65 | </distributionManagement> |
| 66 | <build> |
| 67 | <pluginManagement> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <groupId>org.sonatype.plugins</groupId> |
| 71 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 72 | <version>1.6.7</version> |
| 73 | <extensions>true</extensions> |
| 74 | <configuration> |
| 75 | <nexusUrl>${onap.nexus.url}</nexusUrl> |
| 76 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 77 | <serverId>ecomp-staging</serverId> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-deploy-plugin</artifactId> |
| 83 | <!-- This version supports the "deployAtEnd" parameter --> |
| 84 | <version>2.8</version> |
| 85 | <configuration> |
| 86 | <skip/> |
| 87 | </configuration> |
| 88 | </plugin> |
| 89 | <plugin> |
| 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-site-plugin</artifactId> |
| 92 | <version>3.6</version> |
| 93 | <dependencies> |
| 94 | <dependency> |
| 95 | <groupId>org.apache.maven.wagon</groupId> |
| 96 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 97 | <version>2.10</version> |
| 98 | </dependency> |
| 99 | </dependencies> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-enforcer-plugin</artifactId> |
| 104 | <version>3.0.0-M2</version> |
| 105 | <executions> |
| 106 | <execution> |
| 107 | <id>enforce-property</id> |
| 108 | <goals> |
| 109 | <goal>enforce</goal> |
| 110 | </goals> |
| 111 | <configuration> |
| 112 | <rules> |
| 113 | <requireProperty> |
| 114 | <property>onap.nexus.url</property> |
| 115 | <message>You must set a onap.nexus.url property in your ~/.m2/settings.xml. See oparent/settings.xml for an example.</message> |
| 116 | </requireProperty> |
| 117 | </rules> |
| 118 | <fail>true</fail> |
| 119 | </configuration> |
| 120 | </execution> |
| 121 | <execution> |
| 122 | <id>enforce-no-snapshots</id> |
| 123 | <goals> |
| 124 | <goal>enforce</goal> |
| 125 | </goals> |
| 126 | <configuration> |
| 127 | <rules> |
| 128 | <requireReleaseDeps> |
| 129 | <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot> |
| 130 | <onlyWhenRelease>true</onlyWhenRelease> |
| 131 | <level>ERROR</level> |
| 132 | </requireReleaseDeps> |
| 133 | </rules> |
| 134 | </configuration> |
| 135 | </execution> |
| 136 | </executions> |
| 137 | </plugin> |
| 138 | <!-- https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin --> |
| 139 | <plugin> |
| 140 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 141 | <artifactId>sonar-maven-plugin</artifactId> |
| 142 | <version>3.2</version> |
| 143 | </plugin> |
| 144 | </plugins> |
| 145 | </pluginManagement> |
| 146 | <plugins> |
| 147 | <plugin> |
| 148 | <groupId>org.sonatype.plugins</groupId> |
| 149 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 150 | </plugin> |
| 151 | <plugin> |
| 152 | <groupId>org.apache.maven.plugins</groupId> |
| 153 | <artifactId>maven-deploy-plugin</artifactId> |
| 154 | </plugin> |
| 155 | <plugin> |
| 156 | <groupId>org.apache.maven.plugins</groupId> |
| 157 | <artifactId>maven-site-plugin</artifactId> |
| 158 | </plugin> |
| 159 | <plugin> |
| 160 | <groupId>org.apache.maven.plugins</groupId> |
| 161 | <artifactId>maven-enforcer-plugin</artifactId> |
| 162 | </plugin> |
| 163 | </plugins> |
| 164 | |
| 165 | </build> |
| 166 | </project> |