You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2011/10/25 00:46:25 UTC

svn commit: r1188429 - /avro/trunk/build.sh

Author: cutting
Date: Mon Oct 24 22:46:25 2011
New Revision: 1188429

URL: http://svn.apache.org/viewvc?rev=1188429&view=rev
Log:
preparing for 1.6.0 RC build.  enforcer is broken, rat only works at top-level.

Modified:
    avro/trunk/build.sh

Modified: avro/trunk/build.sh
URL: http://svn.apache.org/viewvc/avro/trunk/build.sh?rev=1188429&r1=1188428&r2=1188429&view=diff
==============================================================================
--- avro/trunk/build.sh (original)
+++ avro/trunk/build.sh Mon Oct 24 22:46:25 2011
@@ -74,7 +74,8 @@ case "$target" in
 
     dist)
         # ensure version matches
-        mvn enforcer:enforce -Davro.version=$VERSION
+        # FIXME: enforcer is broken:MENFORCER-42
+        # mvn enforcer:enforce -Davro.version=$VERSION
         
 	# build source tarball
         mkdir -p build
@@ -83,8 +84,9 @@ case "$target" in
 
 	rm -rf build/${SRC_DIR}
 	svn export --force . build/${SRC_DIR}
+
 	#runs RAT on artifacts
-        mvn -P rat antrun:run
+        mvn -N -P rat antrun:run
 
 	mkdir -p dist
         (cd build; tar czf ../dist/${SRC_DIR}.tar.gz ${SRC_DIR})