You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by rh...@apache.org on 2018/03/24 23:09:37 UTC

svn commit: r1827681 - /db/derby/code/trunk/tools/release/build.xml

Author: rhillegas
Date: Sat Mar 24 23:09:37 2018
New Revision: 1827681

URL: http://svn.apache.org/viewvc?rev=1827681&view=rev
Log:
DERBY-6990: Deprecate the broken SOAP-based logic for listing fixed bugs on behalf of the release notes generator; commit derby-6990-01-aa-removeSOAPlogic.diff.

Modified:
    db/derby/code/trunk/tools/release/build.xml

Modified: db/derby/code/trunk/tools/release/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/tools/release/build.xml?rev=1827681&r1=1827680&r2=1827681&view=diff
==============================================================================
--- db/derby/code/trunk/tools/release/build.xml (original)
+++ db/derby/code/trunk/tools/release/build.xml Sat Mar 24 23:09:37 2018
@@ -73,7 +73,7 @@
   <taskdef
     name="generateReleaseNotes"
     classname="org.apache.derbyBuild.ReleaseNotesGenerator"
-    classpath="${out.dir}"
+    classpath="${out.build.dir}"
   />
 
 <!-- Targets -->
@@ -120,41 +120,6 @@
       depends="missing-properties, maven-exec-windows, maven-exec-unix"
       description="Generates the release notes. Takes the following properties: jira.user, jira.password, release.version, relnotes.src.reports, jira.filter.id (optional), reportDisqualifications (optional)">
 
-        <!-- Build the JIRA SOAP client -->
-	<exec executable="${mvn.exec}"
-                dir="${basedir}/tools/release/jirasoap">
-        <!-- comment out the two lines below for debugging -->
-        <arg line="--quiet"/>
-        <arg line="--batch-mode"/>
-        <arg line="-Pbuildclient"/>
-        </exec>
-
-        <!-- Define the task which generates the issue list data for the
-             release notes generator
-        -->
-        <taskdef
-            name="jirasoapclient"
-            classname="org.apache.derbyBuild.jirasoap.FilteredIssueListerAntWrapper"
-            classpath="${jirasoap.generated}/JiraSOAP-LATEST-jar-with-dependencies.jar"
-        />
-
-        <!-- Set default for jira.filter.id (0 to use JQL). -->
-        <condition property="jira.filter.id" value="0">
-          <not>
-              <isset property="${jira.filter.id}" />
-          </not>
-        </condition>
-
-        <!-- Execute the JIRA SOAP client -->
-        <jirasoapclient
-            user="${jira.user}"
-            password="${jira.password}"
-            releaseVersion="${release.version}"
-            filterId="${jira.filter.id}"
-            outputFile="${relnotes.src.buglist}"
-            reportDisqualifications="${reportDisqualifications}"
-        />
-            
      <generateReleaseNotes
        summaryFileName="${relnotes.src.summary}"
        bugListFileName="${relnotes.src.buglist}"