Repository: activemq-6 Updated Branches: refs/heads/master 23c4d78ea -> 4cda9d8da
disabled RAT plugin by default and updated the docs for releasing explaining how to enable it. Project: http://git-wip-us.apache.org/repos/asf/activemq-6/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-6/commit/d30ffb79 Tree: http://git-wip-us.apache.org/repos/asf/activemq-6/tree/d30ffb79 Diff: http://git-wip-us.apache.org/repos/asf/activemq-6/diff/d30ffb79 Branch: refs/heads/master Commit: d30ffb79c82e513f62b962aa02417e05bf39a204 Parents: 23c4d78 Author: Andy Taylor <[email protected]> Authored: Tue Mar 24 09:51:59 2015 +0000 Committer: Andy Taylor <[email protected]> Committed: Tue Mar 24 10:18:04 2015 +0000 ---------------------------------------------------------------------- RELEASING.md | 2 +- pom.xml | 40 ++-------------------------------------- 2 files changed, 3 insertions(+), 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-6/blob/d30ffb79/RELEASING.md ---------------------------------------------------------------------- diff --git a/RELEASING.md b/RELEASING.md index d23cd46..63ab342 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -12,7 +12,7 @@ Things to do before issuing a new release: * Bump the version numbers in example and test poms to the next release version. e.g. 6.0.0 -* Build the release locally: mvn clean install -Prelease +* Build the release locally: mvn clean install -DskipLicenseCheck=false -Prelease * Test the standalone release (this should be done on windows as well as linux): 1. Unpack the distribution zip or tar.gz http://git-wip-us.apache.org/repos/asf/activemq-6/blob/d30ffb79/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ca5f988..e7a35b7 100644 --- a/pom.xml +++ b/pom.xml @@ -97,7 +97,7 @@ -Djava.net.preferIPv4Stack=true </activemq-surefire-argline> <activemq.basedir>${project.basedir}</activemq.basedir> - <skipLicenseCheck>false</skipLicenseCheck> + <skipLicenseCheck>true</skipLicenseCheck> <skipStyleCheck>false</skipStyleCheck> <geronimo.jms.2.spec.version>1.0-alpha-1</geronimo.jms.2.spec.version> </properties> @@ -902,47 +902,11 @@ </configuration> </plugin> <plugin> - <groupId>com.mycila</groupId> - <artifactId>license-maven-plugin</artifactId> - <version>2.6</version> - <configuration> - <skip>${skipLicenseCheck}</skip> - <basedir>${activemq.basedir}</basedir> - <header>etc/license-header.txt</header> - <quiet>false</quiet> - <failIfMissing>true</failIfMissing> - <includes> - <include>**/*.java</include> - </includes> - <excludes> - <exclude>**/filter/impl/Identifier.java</exclude> - <exclude>**/filter/impl/Operator.java</exclude> - <exclude>**/filter/impl/RegExp.java</exclude> - <exclude>**/utils/UUID*.java</exclude> - <exclude>**/org/apache/activemq/selector/**</exclude> - <exclude>**/org/apache/activemq/utils/json/**</exclude> - <exclude>**/org/apache/activemq/utils/Base64.java</exclude> - </excludes> - <useDefaultExcludes>true</useDefaultExcludes> - <strictCheck>true</strictCheck> - <mapping> - <java>JAVADOC_STYLE</java> - </mapping> - </configuration> - <executions> - <execution> - <phase>compile</phase> - <goals> - <goal>check</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.11</version> <configuration> + <skip>${skipLicenseCheck}</skip> <excludes> <exclude>**/*.bin</exclude> <exclude>**/*.log</exclude>
