Author: gtrasuk
Date: Thu Jan 21 05:40:02 2016
New Revision: 1725867
URL: http://svn.apache.org/viewvc?rev=1725867&view=rev
Log:
Signature verification is temporarily disabled, until we can get the signatures
from
Maven Central.
ReferenceConcurrentMapConcurrencyTest.java in the unit tests is quarantined
until
we can get imunit.jar from Maven Central.
Added:
river/jtsk/trunk/test/quarantined-src/
river/jtsk/trunk/test/quarantined-src/README
river/jtsk/trunk/test/quarantined-src/org/
river/jtsk/trunk/test/quarantined-src/org/apache/
river/jtsk/trunk/test/quarantined-src/org/apache/river/
river/jtsk/trunk/test/quarantined-src/org/apache/river/concurrent/
river/jtsk/trunk/test/quarantined-src/org/apache/river/concurrent/ReferenceConcurrentMapConcurrencyTest.java
- copied unchanged from r1725356,
river/jtsk/trunk/test/src/org/apache/river/concurrent/ReferenceConcurrentMapConcurrencyTest.java
Removed:
river/jtsk/trunk/test/src/org/apache/river/concurrent/ReferenceConcurrentMapConcurrencyTest.java
Modified:
river/jtsk/trunk/hudson.xml
Modified: river/jtsk/trunk/hudson.xml
URL:
http://svn.apache.org/viewvc/river/jtsk/trunk/hudson.xml?rev=1725867&r1=1725866&r2=1725867&view=diff
==============================================================================
--- river/jtsk/trunk/hudson.xml (original)
+++ river/jtsk/trunk/hudson.xml Thu Jan 21 05:40:02 2016
@@ -67,24 +67,57 @@
</sequential>
</macrodef>
- <target name="verify-14" >
- <verify-signature
signature="dep-libs/animal-sniffer/java14-1.0.signature" />
+ <target name="verify-14">
+ <!--
+ <verify-signature
signature="dep-libs/animal-sniffer/java14-1.0.signature" if="sig-java14-avail"/>
+ -->
+ <echo>
+ Signature checking is disabled because the signature isn't present.
+ It should be available in the next release.
+ </echo>
</target>
<target name="verify-14-sun" >
+ <!--
<verify-signature
signature="dep-libs/animal-sniffer/java14-sun-1.0.signature" />
+ -->
+ <echo>
+ Signature checking is disabled because the signature isn't present.
+ It should be available in the next release.
+ </echo>
</target>
<target name="verify-15" >
+ <!--
<verify-signature
signature="dep-libs/animal-sniffer/java15-1.0.signature" />
+ -->
+ <echo>
+ Signature checking is disabled because the signature isn't present.
+ It should be available in the next release.
+ </echo>
+
</target>
<target name="verify-15-sun" >
+ <!--
<verify-signature
signature="dep-libs/animal-sniffer/java15-sun-1.0.signature" />
+ -->
+ <echo>
+ Signature checking is disabled because the signature isn't present.
+ It should be available in the next release.
+ </echo>
+
</target>
<target name="verify-15-ibm" >
+ <!--
<verify-signature
signature="dep-libs/animal-sniffer/java15-ibm-1.0.signature" />
+ -->
+ <echo>
+ Signature checking is disabled because the signature isn't present.
+ It should be available in the next release.
+ </echo>
+
</target>
<target name="qa-runtime" description="build QA runtime" >
Added: river/jtsk/trunk/test/quarantined-src/README
URL:
http://svn.apache.org/viewvc/river/jtsk/trunk/test/quarantined-src/README?rev=1725867&view=auto
==============================================================================
--- river/jtsk/trunk/test/quarantined-src/README (added)
+++ river/jtsk/trunk/test/quarantined-src/README Thu Jan 21 05:40:02 2016
@@ -0,0 +1,9 @@
+This is source code from the tests that is currently unused, but will be
+reinstated soon.
+
+Background: The tests in this folder use the 'imunit' test library, which
+is not currently available through Maven Central, and we can't ship the
+dependency jar with the source distribution (Apache produces source code only).
+
+When imunit is available through Maven Central, these tests will be
+added back in.