Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2019-05-15 15:28:38 +0000
committerAlexander Kurtakov2019-05-16 16:57:55 +0000
commit8e0776f3aed831e254057b57cfcbc747f3acf299 (patch)
tree50dbf0f73f2699b087f5c41a7ce95d94bac3ad58
parentd6262831c727e13927857475955c7ce7897ea50b (diff)
downloadeclipse.platform.releng.aggregator-8e0776f3aed831e254057b57cfcbc747f3acf299.tar.gz
eclipse.platform.releng.aggregator-8e0776f3aed831e254057b57cfcbc747f3acf299.tar.xz
eclipse.platform.releng.aggregator-8e0776f3aed831e254057b57cfcbc747f3acf299.zip
Bug 474156 - Generate dependency:list during build
This file can be used later to automate API tools execution and analysis Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--eclipse-platform-parent/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index fa9c10c56..22d91dc7d 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -583,6 +583,23 @@
<artifactId>sonar-maven-plugin</artifactId>
<version>3.3.0.603</version>
</plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>list-dependencies</id>
+ <goals>
+ <goal>list</goal>
+ </goals>
+ <phase>verify</phase>
+ <configuration>
+ <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
+ <outputScope>false</outputScope>
+ <outputFile>${project.build.directory}/dependencies.txt</outputFile>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
</build>

Back to the top