Author: fanningpj
Date: Fri Mar 26 08:22:00 2021
New Revision: 1888079
URL: http://svn.apache.org/viewvc?rev=1888079&view=rev
Log:
remove temp gradle workaround for xmlbeans
Modified:
poi/trunk/build.gradle
Modified: poi/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1888079&r1=1888078&r2=1888079&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Fri Mar 26 08:22:00 2021
@@ -271,15 +271,6 @@ project('ooxml') {
antdep 'org.apache.ant:ant:1.10.9'
}
- task downloadJarsToLibs() {
- 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 }}
- }
- }
-
// we need to ensure that the custom ant tasks are compiled before we
import the build.xml file
ant.mkdir(dir: "../../build/poi-ant-contrib")
ant.javac(srcdir: "../../src/excelant/poi-ant-contrib"
@@ -295,7 +286,6 @@ project('ooxml') {
'ant-' + antTargetName
}
compileJava.dependsOn 'ant-compile-ooxml-xsds'
- compileJava.dependsOn 'downloadJarsToLibs'
dependencies {
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]