Review feedback.

This commit is contained in:
Roy Wetherall
2016-03-07 11:06:43 +11:00
parent 95610f4bfc
commit 59bf1cf1a0
2 changed files with 50 additions and 51 deletions

86
pom.xml
View File

@@ -73,7 +73,7 @@
<dependency> <dependency>
<groupId>${alfresco.groupId}</groupId> <groupId>${alfresco.groupId}</groupId>
<artifactId>alfresco-platform-distribution</artifactId> <artifactId>alfresco-platform-distribution</artifactId>
<version>5.1-20160302.012107-260</version> <version>${alfresco.version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
@@ -253,55 +253,55 @@
</plugin> </plugin>
<!-- License header generation --> <!-- License header generation -->
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId> <artifactId>license-maven-plugin</artifactId>
<version>1.8</version> <version>1.8</version>
<configuration> <configuration>
<verbose>${license.verbose}</verbose> <verbose>${license.verbose}</verbose>
<addSvnKeyWords>false</addSvnKeyWords> <addSvnKeyWords>false</addSvnKeyWords>
<!-- 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>
</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>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>

View File

@@ -25,6 +25,5 @@
<properties> <properties>
<alfresco.version>5.1.d-EA</alfresco.version> <alfresco.version>5.1.d-EA</alfresco.version>
<license.name>alfresco_community</license.name>
</properties> </properties>
</project> </project>