DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>org.openecomp.vid</groupId> |
| 5 | <artifactId>vid-parent</artifactId> |
| 6 | <packaging>pom</packaging> |
| 7 | <name>VID Parent Project</name> |
| 8 | |
Jimmy Forsyth | 48bf0ac | 2017-02-17 14:11:35 -0500 | [diff] [blame] | 9 | <profiles> |
| 10 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
| 11 | <profile> |
| 12 | <id>default</id> |
| 13 | <activation> |
| 14 | <activeByDefault>true</activeByDefault> |
| 15 | </activation> |
| 16 | <modules> |
| 17 | <module>vid</module> |
| 18 | </modules> |
| 19 | </profile> |
| 20 | |
| 21 | <profile> |
| 22 | <id>docker</id> |
| 23 | <modules> |
| 24 | <module>vid</module> |
| 25 | <module>deliveries</module> |
| 26 | </modules> |
| 27 | </profile> |
| 28 | </profiles> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 29 | |
| 30 | <properties> |
| 31 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 32 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Jimmy Forsyth | 1362da2 | 2017-02-27 11:10:00 -0500 | [diff] [blame] | 33 | <build.version>1.0.0-SNAPSHOT</build.version> |
jimmydot | 15a056d | 2017-04-06 11:24:45 -0400 | [diff] [blame] | 34 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 35 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 36 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 37 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
jimmydot | d844ad2 | 2017-03-24 12:32:30 -0400 | [diff] [blame] | 38 | <sitePath>/content/sites/site/org/openecomp/vid/${project.version}</sitePath> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 39 | </properties> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 40 | |
Jimmy Forsyth | 1362da2 | 2017-02-27 11:10:00 -0500 | [diff] [blame] | 41 | <repositories> |
| 42 | <repository> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 43 | <id>ecomp-releases</id> |
| 44 | <name>VID Release Repository</name> |
| 45 | <url>${nexusproxy}/${releaseNexusPath}</url> |
Jimmy Forsyth | 1362da2 | 2017-02-27 11:10:00 -0500 | [diff] [blame] | 46 | </repository> |
| 47 | <repository> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 48 | <id>ecomp-snapshots</id> |
| 49 | <name>VID Snapshot Repository</name> |
| 50 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 51 | </repository> |
| 52 | <repository> |
| 53 | <id>ecomp-staging</id> |
| 54 | <name>VID Staging Repository</name> |
| 55 | <url>${nexusproxy}/${stagingNexusPath}</url> |
Jimmy Forsyth | 1362da2 | 2017-02-27 11:10:00 -0500 | [diff] [blame] | 56 | </repository> |
| 57 | <repository> |
| 58 | <!-- Snapshots repository has ECOMP snapshot artifacts --> |
| 59 | <id>oss-snapshots</id> |
| 60 | <name>oss Central - Snapshots</name> |
| 61 | <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> |
| 62 | </repository> |
| 63 | </repositories> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 64 | |
| 65 | <distributionManagement> |
| 66 | <repository> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 67 | <id>ecomp-releases</id> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 68 | <name>VID Release Repository</name> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 69 | <url>${nexusproxy}/${releaseNexusPath}</url> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 70 | </repository> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 71 | <snapshotRepository> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 72 | <id>ecomp-snapshots</id> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 73 | <name>VID Snapshot Repository</name> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 74 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 75 | </snapshotRepository> |
Jimmy Forsyth | 1362da2 | 2017-02-27 11:10:00 -0500 | [diff] [blame] | 76 | <!-- added for javadoc --> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 77 | <site> |
jimmydot | bd90a44 | 2017-03-23 18:03:51 -0400 | [diff] [blame] | 78 | <id>ecomp-site</id> |
jimmydot | d844ad2 | 2017-03-24 12:32:30 -0400 | [diff] [blame] | 79 | <url>dav:${nexusproxy}${sitePath}</url> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 80 | </site> |
| 81 | </distributionManagement> |
| 82 | |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 83 | <build> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 84 | <plugins> |
| 85 | <plugin> |
| 86 | <groupId>org.codehaus.mojo</groupId> |
| 87 | <artifactId>versions-maven-plugin</artifactId> |
| 88 | <version>1.3.1</version> |
| 89 | </plugin> |
| 90 | <plugin> |
| 91 | <groupId>org.sonatype.plugins</groupId> |
| 92 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 93 | <version>1.6.7</version> |
| 94 | <extensions>true</extensions> |
| 95 | <configuration> |
| 96 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 97 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 98 | <serverId>ecomp-staging</serverId> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 102 | <!-- license plugin for open source --> |
| 103 | <plugin> |
| 104 | <groupId>org.codehaus.mojo</groupId> |
| 105 | <artifactId>license-maven-plugin</artifactId> |
| 106 | <version>1.9</version> |
| 107 | <configuration> |
| 108 | <licenseName>apache_v2</licenseName> |
| 109 | <inceptionYear>2016</inceptionYear> |
| 110 | <organizationName>AT&T</organizationName> |
| 111 | <projectName>VID</projectName> |
| 112 | <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 113 | <processStartTag>========LICENSE_START===========</processStartTag> |
| 114 | <processEndTag>============LICENSE_END===========</processEndTag> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 115 | <roots> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 116 | <root>src/main/java</root> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 117 | </roots> |
| 118 | <excludes> |
| 119 | <exclude>*.png</exclude> |
| 120 | </excludes> |
| 121 | </configuration> |
| 122 | </plugin> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 123 | |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 124 | <plugin> |
| 125 | <groupId>org.apache.maven.plugins</groupId> |
| 126 | <artifactId>maven-deploy-plugin</artifactId> |
| 127 | <version>2.8</version> |
| 128 | </plugin> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 129 | |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 130 | <plugin> |
| 131 | <groupId>org.apache.maven.plugins</groupId> |
| 132 | <artifactId>maven-surefire-plugin</artifactId> |
| 133 | <version>2.17</version> |
| 134 | </plugin> |
| 135 | |
| 136 | <plugin> |
| 137 | <groupId>org.apache.maven.plugins</groupId> |
| 138 | <artifactId>maven-compiler-plugin</artifactId> |
| 139 | <version>2.3.2</version> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 140 | |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 141 | <configuration> |
| 142 | <debug>true</debug> |
| 143 | <compilerArgument>-Xlint</compilerArgument> |
| 144 | <verbose>true</verbose> |
| 145 | <showDeprecation>true</showDeprecation> |
| 146 | <showWarnings>true</showWarnings> |
| 147 | <source>1.8</source> |
| 148 | <target>1.8</target> |
| 149 | </configuration> |
| 150 | </plugin> |
| 151 | <!-- added for javadoc --> |
| 152 | <plugin> |
| 153 | <groupId>org.apache.maven.plugins</groupId> |
| 154 | <artifactId>maven-site-plugin</artifactId> |
| 155 | <version>3.6</version> |
| 156 | <dependencies> |
| 157 | <dependency> |
| 158 | <groupId>org.apache.maven.wagon</groupId> |
| 159 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 160 | <version>2.10</version> |
| 161 | </dependency> |
| 162 | </dependencies> |
| 163 | </plugin> |
| 164 | </plugins> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 165 | </build> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 166 | |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 167 | <!-- added for javadoc --> |
Jimmy Forsyth | 1b72033 | 2017-03-02 16:54:27 -0500 | [diff] [blame] | 168 | |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 169 | <reporting> |
| 170 | <plugins> |
| 171 | |
| 172 | <plugin> |
| 173 | <groupId>org.apache.maven.plugins</groupId> |
| 174 | <artifactId>maven-javadoc-plugin</artifactId> |
| 175 | <version>2.10.4</version> |
| 176 | <configuration> |
| 177 | <failOnError>false</failOnError> |
| 178 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 179 | <docletArtifact> |
| 180 | <groupId>org.umlgraph</groupId> |
| 181 | <artifactId>umlgraph</artifactId> |
| 182 | <version>5.6</version> |
| 183 | </docletArtifact> |
| 184 | <additionalparam>-views</additionalparam> |
| 185 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 186 | </configuration> |
| 187 | </plugin> |
| 188 | </plugins> |
| 189 | </reporting> |
| 190 | <dependencies> |
| 191 | <dependency> |
| 192 | <groupId>junit</groupId> |
| 193 | <artifactId>junit</artifactId> |
| 194 | <version>4.11</version> |
| 195 | <scope>test</scope> |
| 196 | </dependency> |
| 197 | </dependencies> |
Jimmy Forsyth | 374d5f9 | 2017-02-27 11:59:12 -0500 | [diff] [blame] | 198 | <version>1.0.0-SNAPSHOT</version> |
DR695H | 13ce055 | 2017-02-07 13:11:03 -0500 | [diff] [blame] | 199 | </project> |