gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r23765 - gnunet-java


From: gnunet
Subject: [GNUnet-SVN] r23765 - gnunet-java
Date: Thu, 13 Sep 2012 13:25:04 +0200

Author: dold
Date: 2012-09-13 13:25:04 +0200 (Thu, 13 Sep 2012)
New Revision: 23765

Modified:
   gnunet-java/ISSUES
   gnunet-java/build.gradle
Log:
issues

Modified: gnunet-java/ISSUES
===================================================================
--- gnunet-java/ISSUES  2012-09-13 10:24:58 UTC (rev 23764)
+++ gnunet-java/ISSUES  2012-09-13 11:25:04 UTC (rev 23765)
@@ -235,7 +235,9 @@
  * can run the annotation processor ("msgtypes")
  * => should we keep/maintain the old build scripts or not?
 
+=> "gradle tasks" produces ConcurrentModificationException
 
+
 * http://docs.oracle.com/javase/1.4.2/docs/api/java/nio/channels/Pipe.html
  * "Many pipe implementations will buffer up to a certain number of bytes 
between the sink and source channels"
   * reminds me of matthias' problems last monday. what to do about it?

Modified: gnunet-java/build.gradle
===================================================================
--- gnunet-java/build.gradle    2012-09-13 10:24:58 UTC (rev 23764)
+++ gnunet-java/build.gradle    2012-09-13 11:25:04 UTC (rev 23765)
@@ -62,15 +62,19 @@
   systemProperties = ["net.sourceforge.cobertura.datafile":"$coverageData"]
 }
 
-task reportCoverage (dependsOn: ['testCoverage'], type: JavaExec) {
-  classpath = files("$projectDir/cobertura/cobertura.jar",
-                    "$projectDir/cobertura/lib/*")
-  main = 'net.sourceforge.cobertura.reporting.Main'
-  args "--datafile", "$coverageData"
-  args "--destination", "$coverageReportDir"
-  args "$projectDir/src/"
+task reportCoverage (type: JavaExec) {
+  doFirst {
+    classpath = files("$projectDir/cobertura/cobertura.jar",
+                      "$projectDir/cobertura/lib/*")
+    main = 'net.sourceforge.cobertura.reporting.Main'
+    args "--datafile", "$coverageData"
+    args "--destination", "$coverageReportDir"
+    args "$projectDir/src/"
+  }
 }
 
+//reportCoverage.dependsOn testCoverage
+
 /*
 TODO: should we really use the compile task for this?
 */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]