diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-01-09 14:32:02 +0100 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-01-15 08:55:24 +0100 |
commit | b0ea05d10250267895a4458ba84a9c9db1f51815 (patch) | |
tree | 545f92443d29e1651072a615f34dc1b0e4dc0416 | |
parent | 12d555eff64f68a39456c1a416b72fc930c8153b (diff) | |
download | sonarqube-b0ea05d10250267895a4458ba84a9c9db1f51815.tar.gz sonarqube-b0ea05d10250267895a4458ba84a9c9db1f51815.zip |
do not check file headers for src/main/webapp
-rw-r--r-- | server/sonar-web/pom.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml index 047e90d7e5a..c516f800f7e 100644 --- a/server/sonar-web/pom.xml +++ b/server/sonar-web/pom.xml @@ -137,6 +137,15 @@ </archive> </configuration> </plugin> + <plugin> + <groupId>com.mycila</groupId> + <artifactId>license-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude>src/main/webapp/**/*</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> |