Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-test-helper/pom.xml')
-rw-r--r--jetty-test-helper/pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/jetty-test-helper/pom.xml b/jetty-test-helper/pom.xml
index 843fa8b..d3de0f7 100644
--- a/jetty-test-helper/pom.xml
+++ b/jetty-test-helper/pom.xml
@@ -79,6 +79,35 @@
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <groupId>com.mycila.maven-license-plugin</groupId>
+ <artifactId>maven-license-plugin</artifactId>
+ <version>1.10.b1</version>
+ <configuration>
+ <header>header-template.txt</header>
+ <failIfMissing>true</failIfMissing>
+ <aggregate>true</aggregate>
+ <strictCheck>true</strictCheck>
+ <properties>
+ <copyright-range>${project.inceptionYear}-2015</copyright-range>
+ </properties>
+ <mapping>
+ <java>DOUBLESLASH_STYLE</java>
+ </mapping>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
+ </configuration>
+ <executions>
+ <execution>
+ <id>check-headers</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<dependencies>

Back to the top