Extended configuration to cover share community, added file exclusions.

This commit is contained in:
Roy Wetherall
2016-03-01 11:35:28 +11:00
parent 201d542c1a
commit 4cd3a82391

View File

@@ -234,8 +234,8 @@
<configuration> <configuration>
<verbose>${license.verbose}</verbose> <verbose>${license.verbose}</verbose>
<addSvnKeyWords>false</addSvnKeyWords> <addSvnKeyWords>false</addSvnKeyWords>
<!-- header configuration --> <!-- header configuration -->
<organizationName>${license.org.name}</organizationName> <organizationName>${license.org.name}</organizationName>
<descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate> <descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate>
@@ -254,11 +254,23 @@
<!-- source roots to check --> <!-- source roots to check -->
<roots> <roots>
<root>source</root> <root>source/java</root>
<root>test</root> <root>unit-test/java</root>
<root>unit-test</root> <root>source/compatibility</root>
<root>config</root> <root>config</root>
<root>test/java</root>
<root>test/resources</root>
</roots> </roots>
<!-- exculsions -->
<excludes>
<exclude>**/package-info.java</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.css</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.json</exclude>
<exclude>**/*.txt</exclude>
</excludes>
</configuration> </configuration>
<executions> <executions>