Skip to content

Commit

Permalink
Merge pull request objectionary#2897 from objectionary/license-check
Browse files Browse the repository at this point in the history
check licenses automatically
  • Loading branch information
yegor256 committed Feb 27, 2024
2 parents ae08297 + bf2dffc commit 67d14ee
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,23 @@ SOFTWARE.
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<id>check-licenses</id>
<phase>verify</phase>
<goals>
<goal>check-file-header</goal>
</goals>
<configuration>
<licenseName>mit</licenseName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
Expand Down

0 comments on commit 67d14ee

Please sign in to comment.