Skip to content

Commit

Permalink
Adds Eclipse Dash License tool
Browse files Browse the repository at this point in the history
Signed-off-by: Jannik Fried <[email protected]>
  • Loading branch information
FriedJannik committed Feb 22, 2024
1 parent 7d5768e commit 4306bb6
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
25 changes: 25 additions & 0 deletions basyx.components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<pluginRepositories>
<pluginRepository>
<id>dash-licenses-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<!-- Includes all components in this project as separated modules -->
<modules>
<module>basyx.components.lib</module>
Expand All @@ -89,6 +99,21 @@
<pluginManagement>
<plugins>
<!-- Compile Java sources using Java 11 -->

<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<version>1.1.1-SNAPSHOT</version>
<executions>
<execution>
<id>license-check</id>
<goals>
<goal>license-check</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
24 changes: 24 additions & 0 deletions basyx.tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,35 @@
<module>basyx.tck.registry</module>
</modules>

<pluginRepositories>
<pluginRepository>
<id>dash-licenses-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<!-- Specifies plugin settings that are common for all submodules -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<version>1.1.1-SNAPSHOT</version>
<executions>
<execution>
<id>license-check</id>
<goals>
<goal>license-check</goal>
</goals>
</execution>
</executions>
</plugin>


<!-- Compile Java sources using Java 11 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 4306bb6

Please sign in to comment.