Skip to content

Commit

Permalink
Eclipse Dash License Tool (Maven Plugin) implementation (#1846)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
  • Loading branch information
rfelcman committed Apr 1, 2023
1 parent 3271f25 commit 8662a87
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2188,5 +2188,44 @@
</plugins>
</build>
</profile>
<profile>
<id>license-check</id>
<pluginRepositories>
<pluginRepository>
<!-- org.eclipse.dash:license-tool-plugin is nor final nor in central yet -->
<id>dash-licenses-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<version>0.0.1-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<executions>
<execution>
<id>license-check</id>
<phase>validate</phase>
<goals>
<goal>license-check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8662a87

Please sign in to comment.