mirror of https://github.com/apache/poi.git
xmlbeans 5.0.2 (temporarily from a pre-release location)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894211 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6583f68d2f
commit
4b97b12712
|
@ -119,7 +119,7 @@ subprojects {
|
||||||
log4jVersion = '2.14.1'
|
log4jVersion = '2.14.1'
|
||||||
mockitoVersion = '4.0.0'
|
mockitoVersion = '4.0.0'
|
||||||
hamcrestVersion = '2.2'
|
hamcrestVersion = '2.2'
|
||||||
xmlbeansVersion = '5.0.1'
|
xmlbeansVersion = '5.0.2'
|
||||||
batikVersion = '1.14'
|
batikVersion = '1.14'
|
||||||
|
|
||||||
JAVA9_SRC = 'src/main/java9'
|
JAVA9_SRC = 'src/main/java9'
|
||||||
|
|
|
@ -25,6 +25,12 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':poi-ooxml')
|
api project(':poi-ooxml')
|
||||||
|
|
|
@ -34,6 +34,13 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api 'org.apache.ant:ant:1.10.11'
|
api 'org.apache.ant:ant:1.10.11'
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,13 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.apache.ant:ant:1.10.11'
|
testImplementation 'org.apache.ant:ant:1.10.11'
|
||||||
testImplementation 'org.apache.commons:commons-collections4:4.4'
|
testImplementation 'org.apache.commons:commons-collections4:4.4'
|
||||||
|
|
|
@ -35,6 +35,13 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
|
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
|
||||||
// implementation "org.apache.logging.log4j:log4j-api:${log4jVersion}"
|
// implementation "org.apache.logging.log4j:log4j-api:${log4jVersion}"
|
||||||
|
|
|
@ -23,6 +23,13 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api 'net.bytebuddy:byte-buddy:1.11.20'
|
api 'net.bytebuddy:byte-buddy:1.11.20'
|
||||||
api 'net.bytebuddy:byte-buddy-agent:1.11.20'
|
api 'net.bytebuddy:byte-buddy-agent:1.11.20'
|
||||||
|
|
|
@ -35,6 +35,13 @@ sourceSets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
|
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
|
||||||
compileOnly project(':poi-ooxml-full')
|
compileOnly project(':poi-ooxml-full')
|
||||||
|
|
|
@ -62,6 +62,13 @@ java {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "https://dist.apache.org/repos/dist/release/poi/xmlbeans/dev/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':poi')
|
api project(':poi')
|
||||||
api project(':poi-ooxml-full')
|
api project(':poi-ooxml-full')
|
||||||
|
|
Loading…
Reference in New Issue