Author: mariusvolkhart Date: Sun Mar 14 01:46:05 2021 New Revision: 1887614
URL: http://svn.apache.org/viewvc?rev=1887614&view=rev Log: Get Gradle GitHub Action past downloading the XMLBeans JAR Modified: poi/trunk/build.gradle Modified: poi/trunk/build.gradle URL: http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1887614&r1=1887613&r2=1887614&view=diff ============================================================================== --- poi/trunk/build.gradle (original) +++ poi/trunk/build.gradle Sun Mar 14 01:46:05 2021 @@ -274,6 +274,7 @@ project('ooxml') { def f = new File("$projectDir/../../lib/ooxml/xmlbeans-5.0.0.jar") if (!f.exists()) { println 'writing file ' + f.getAbsolutePath() + f.getParentFile().mkdirs() new URL('https://ci-builds.apache.org/job/POI/job/POI-XMLBeans-DSL-1.8/lastSuccessfulBuild/artifact/build/xmlbeans-5.0.0.jar').withInputStream{ i -> f.withOutputStream{ it << i }} } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
