diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-01-28 00:25:06 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-03-03 22:00:28 +0100 |
commit | 996e651c147ffa88d9883c0cd029a3cff3f37063 (patch) | |
tree | 3f2401a8a887fc77a962fb661ab81b926a156781 /pom.xml | |
parent | 877c79dc69125c2997bcf08f9b31ac66d1cb6341 (diff) | |
download | jgit-996e651c147ffa88d9883c0cd029a3cff3f37063.tar.gz jgit-996e651c147ffa88d9883c0cd029a3cff3f37063.zip |
Add dependency to dash-licenses
This is required to run the license check using the license tool [1]
required by the Eclipse project handbook [2]:
mvn org.eclipse.dash:license-tool-plugin:license-check -Ddash.summary=DEPENDENCIES
Note: the tool still requires Java 11 hence it needs to be run in a
separate build step and is not yet integrated in the build which runs
on Java 8.
[1] https://github.com/eclipse/dash-licenses
[2] https://www.eclipse.org/projects/handbook/#ip-license-tool
Change-Id: Ib41d54de246c3c9499cc3be9f026294c39fdfd99
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -203,6 +203,14 @@ <id>repo.eclipse.org.cbi-snapshots</id> <url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url> </pluginRepository> + <pluginRepository> + <id>repo.eclipse.org.dash-releases</id> + <url>https://repo.eclipse.org/content/repositories/dash-licenses-releases/</url> + </pluginRepository> + <pluginRepository> + <id>repo.eclipse.org.dash-snapshots</id> + <url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url> + </pluginRepository> </pluginRepositories> <build> @@ -382,6 +390,11 @@ <artifactId>spring-boot-maven-plugin</artifactId> <version>2.5.4</version> </plugin> + <plugin> + <groupId>org.eclipse.dash</groupId> + <artifactId>license-tool-plugin</artifactId> + <version>0.0.1-SNAPSHOT</version> + </plugin> </plugins> </pluginManagement> @@ -540,6 +553,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> + <plugin> + <groupId>org.eclipse.dash</groupId> + <artifactId>license-tool-plugin</artifactId> + </plugin> </plugins> </build> |