aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2017-05-18 12:36:58 -0400
committerDan Timoney <dtimoney@att.com>2017-05-18 12:37:06 -0400
commited1cfa72a40d471c733a1af0b432ff10bc5d0214 (patch)
treed1387f085bc7d9ea2d1fa49f8414099be907932b
parenta30580223e154e0ee1756c9d635a93e547c57e9a (diff)
[BLACKDUCK] Fix blackduck config
Fix blackduck configuration so that BOM file can be generated via mvn install -P blackduck Change-Id: I94ccbb18af76acfee589f391d353eb453f1ab657 Signed-off-by: Dan Timoney <dtimoney@att.com>
-rwxr-xr-xpom.xml46
1 files changed, 22 insertions, 24 deletions
diff --git a/pom.xml b/pom.xml
index 6af4726..2b625e8 100755
--- a/pom.xml
+++ b/pom.xml
@@ -51,30 +51,28 @@
</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>
+ <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>
+
</build>