move scm-webapp specific license rules to scm-webapp/pom.xml

This commit is contained in:
Sebastian Sdorra
2011-10-07 09:26:52 +02:00
parent 11823bf455
commit 514d110e02
2 changed files with 21 additions and 2 deletions

View File

@@ -166,8 +166,6 @@
<excludes>
<exclude>target/**</exclude>
<exclude>.hg/**</exclude>
<exclude>**/extjs/**</exclude>
<exclude>**/syntaxhighlighter/**</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>

View File

@@ -259,6 +259,27 @@
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>http://download.scm-manager.org/licenses/mvn-license.txt</header>
<includes>
<include>src/**</include>
<include>**/test/**</include>
</includes>
<excludes>
<exclude>target/**</exclude>
<exclude>.hg/**</exclude>
<exclude>**/extjs/**</exclude>
<exclude>**/syntaxhighlighter/**</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>