Skip to content

Commit

Permalink
TEPHRA-315 tephra-example maven setup is broken (addendum: fix apache…
Browse files Browse the repository at this point in the history
…-rat-plugin config)
  • Loading branch information
stoty committed Nov 30, 2020
1 parent 3d79679 commit b3dc67e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
34 changes: 17 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -449,30 +449,30 @@
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>build-number.txt</exclude>
<exclude>README.rst</exclude>
<exclude>RELEASING.rst</exclude>
<exclude>**/target/**</exclude>
<exclude>**/.git/**</exclude>
<exclude>.gitignore</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/*.iml</exclude>
<exclude>**/.project</exclude>
<exclude>**/.classpath</exclude>
<exclude>**/.settings/**</exclude>
<exclude>licenses/**</exclude>
<exclude>**/NOTICE_BINARY</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>rat-check</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<excludes>
<exclude>build-number.txt</exclude>
<exclude>README.rst</exclude>
<exclude>RELEASING.rst</exclude>
<exclude>**/target/**</exclude>
<exclude>**/.git/**</exclude>
<exclude>.gitignore</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/*.iml</exclude>
<exclude>**/.project</exclude>
<exclude>**/.classpath</exclude>
<exclude>**/.settings/**</exclude>
<exclude>licenses/**</exclude>
<exclude>**/NOTICE_BINARY</exclude>
</excludes>
</configuration>
</execution>
</executions>
<dependencies>
Expand Down
7 changes: 7 additions & 0 deletions tephra-core-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b3dc67e

Please sign in to comment.