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:17:31 UTC

svn commit: r1827682 - in /db/derby/code/branches/10.14: ./ tools/release/build.xml

Author: rhillegas
Date: Sat Mar 24 23:17:31 2018
New Revision: 1827682

URL: http://svn.apache.org/viewvc?rev=1827682&view=rev
Log:
DERBY-6990: Port 1827681 from trunk to the 10.14 branch.

Modified:
    db/derby/code/branches/10.14/   (props changed)
    db/derby/code/branches/10.14/tools/release/build.xml

Propchange: db/derby/code/branches/10.14/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Mar 24 23:17:31 2018
@@ -1,4 +1,4 @@
 /db/derby/code/branches/10.7:1061570,1061578,1082235
 /db/derby/code/branches/10.8:1177474,1234973,1464951
 /db/derby/code/branches/10.9:1373148
-/db/derby/code/trunk:1063809,1811510,1812952,1814381
+/db/derby/code/trunk:1063809,1811510,1812952,1814381,1827681

Modified: db/derby/code/branches/10.14/tools/release/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.14/tools/release/build.xml?rev=1827682&r1=1827681&r2=1827682&view=diff
==============================================================================
--- db/derby/code/branches/10.14/tools/release/build.xml (original)
+++ db/derby/code/branches/10.14/tools/release/build.xml Sat Mar 24 23:17:31 2018
@@ -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}"