RM-4613 Further updates

This commit is contained in:
Richard Smith
2017-07-10 10:38:42 +01:00
parent a206c1e95e
commit f95e454fc0

88
pom.xml
View File

@@ -339,51 +339,63 @@
<version>1.8</version> <version>1.8</version>
<configuration> <configuration>
<verbose>${license.verbose}</verbose> <verbose>${license.verbose}</verbose>
<addSvnKeyWords>false</addSvnKeyWords> <addSvnKeyWords>false</addSvnKeyWords>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<!-- header configuration --> <!-- header configuration -->
<organizationName>Alfresco Software Limited</organizationName> <organizationName>Alfresco Software Limited</organizationName>
<descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate> <descriptionTemplate>${project.parent.parent.basedir}/license/description.ftl</descriptionTemplate>
<canUpdateCopyright>true</canUpdateCopyright> <canUpdateCopyright>true</canUpdateCopyright>
<canUpdateDescription>true</canUpdateDescription> <canUpdateDescription>true</canUpdateDescription>
<!-- licence configuration --> <!-- licence configuration -->
<licenseResolver>file:${project.parent.parent.basedir}/license</licenseResolver> <licenseResolver>file:${project.parent.parent.basedir}/license</licenseResolver>
<!-- dry run options --> <!-- dry run options -->
<dryRun>${license.update.dryrun}</dryRun> <dryRun>${license.update.dryrun}</dryRun>
<failOnMissingHeader>true</failOnMissingHeader> <failOnMissingHeader>true</failOnMissingHeader>
<failOnNotUptodateHeader>true</failOnNotUptodateHeader> <failOnNotUptodateHeader>true</failOnNotUptodateHeader>
<!-- default root --> <!-- default root -->
<roots> <roots>
<root>src</root> <root>src</root>
</roots> </roots>
<!-- exculsions --> <!-- exculsions -->
<excludes> <excludes>
<exclude>**/package-info.java</exclude> <exclude>**/package-info.java</exclude>
<exclude>**/*.properties</exclude> <exclude>**/*.properties</exclude>
<exclude>**/*.css</exclude> <exclude>**/*.css</exclude>
<exclude>**/*.xml</exclude> <exclude>**/*.xml</exclude>
<exclude>**/*.json</exclude> <exclude>**/*.json</exclude>
<exclude>**/*.txt</exclude> <exclude>**/*.txt</exclude>
<exclude>**/*.html</exclude> <exclude>**/*.html</exclude>
</excludes> </excludes>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>first</id> <id>first</id>
<goals> <goals>
<goal>update-file-header</goal> <goal>update-file-header</goal>
</goals> </goals>
<phase>process-sources</phase> <phase>process-sources</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.version}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-filtering</artifactId>
<version>3.1.1</version>
</dependency>
</dependencies>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>