diff options
-rwxr-xr-x | pom.xml | 84 |
1 files changed, 66 insertions, 18 deletions
@@ -42,25 +42,73 @@ </site> </distributionManagement> + <profiles> + <profile> + <id>blackduck</id> + <activation> + <property> + <name>blackduck-scan</name> + </property> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>com.blackducksoftware.integration</groupId> + <artifactId>hub-maven-plugin</artifactId> + <version>1.4.0</version> + <inherited>false</inherited> + <configuration> + <hubProjectName>${project.name}</hubProjectName> + <outputDirectory>${project.basedir}</outputDirectory> + </configuration> + <executions> + <execution> + <id>create-bdio-file</id> + <phase>package</phase> + <goals> + <goal>createHubOutput</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + + </pluginManagement> + + </build> + + </profile> + <profile> + <id>staging</id> + <activation> + <property> + <name>!no-staging</name> + </property> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>https://${openecomp.nexus.host}</nexusUrl> + <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId> + <serverId>${openecomp.nexus.staging.server-id}</serverId> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + + </profiles> + <build> <plugins> - <!-- Blackduck plugin breaks release build <plugin> <groupId>com.blackducksoftware.integration</groupId> - <artifactId>hub-maven-plugin</artifactId> <version>1.4.0</version> <inherited>false</inherited> - <configuration> <hubProjectName>${project.name}</hubProjectName> <outputDirectory>${project.basedir}</outputDirectory> - </configuration> <executions> <execution> <id>create-bdio-file</id> <phase>package</phase> - <goals> <goal>createHubOutput</goal> </goals> </execution> </executions> - </plugin> --> - <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> - <extensions>true</extensions> - <configuration> - <nexusUrl>https://nexus.openecomp.org</nexusUrl> - <stagingProfileId>176c31dfe190a</stagingProfileId> - <serverId>ecomp-staging</serverId> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> @@ -79,7 +127,7 @@ <module>sql-resource</module> </modules> <organization> - <name>AT&T</name> + <name>OpenECOMP</name> </organization> <version>1.0.0</version> |