You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2021/12/18 09:48:12 UTC

svn commit: r1896116 - in /xmlbeans/trunk: .travis.yml build.xml src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml src/main/resources/maven/plugin.xml

Author: fanningpj
Date: Sat Dec 18 09:48:11 2021
New Revision: 1896116

URL: http://svn.apache.org/viewvc?rev=1896116&view=rev
Log:
log4j 2.17.0

Modified:
    xmlbeans/trunk/.travis.yml
    xmlbeans/trunk/build.xml
    xmlbeans/trunk/src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml
    xmlbeans/trunk/src/main/resources/maven/plugin.xml

Modified: xmlbeans/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/.travis.yml?rev=1896116&r1=1896115&r2=1896116&view=diff
==============================================================================
--- xmlbeans/trunk/.travis.yml (original)
+++ xmlbeans/trunk/.travis.yml Sat Dec 18 09:48:11 2021
@@ -3,9 +3,9 @@ language: java
 jdk:
 - openjdk11
 before_install:
-  - wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.11-bin.tar.gz
-  - tar -xzvf apache-ant-1.10.11-bin.tar.gz
-  - export PATH=`pwd`/apache-ant-1.10.11/bin:$PATH
+  - wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.12-bin.tar.gz
+  - tar -xzvf apache-ant-1.10.12-bin.tar.gz
+  - export PATH=`pwd`/apache-ant-1.10.12/bin:$PATH
   - echo $(ant -version)
   - svn co https://svn.apache.org/repos/asf/poi/site/src/documentation src/documentation
 install: /bin/true

Modified: xmlbeans/trunk/build.xml
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/build.xml?rev=1896116&r1=1896115&r2=1896116&view=diff
==============================================================================
--- xmlbeans/trunk/build.xml (original)
+++ xmlbeans/trunk/build.xml Sat Dec 18 09:48:11 2021
@@ -120,9 +120,9 @@
 
     <!-- dependencies -->
     <dependency prefix="xml-apis" artifact="xml-apis:xml-apis:1.4.01" usage="java8"/>
-    <dependency prefix="log4j-api" artifact="org.apache.logging.log4j:log4j-api:2.16.0" usage="main"/>
+    <dependency prefix="log4j-api" artifact="org.apache.logging.log4j:log4j-api:2.17.0" usage="main"/>
     <dependency prefix="saxon" artifact="net.sf.saxon:Saxon-HE:10.6" usage="main"/>
-    <dependency prefix="ant" artifact="org.apache.ant:ant:1.10.11" usage="main"/>
+    <dependency prefix="ant" artifact="org.apache.ant:ant:1.10.12" usage="main"/>
     <dependency prefix="javaparser.core" artifact="com.github.javaparser:javaparser-core:3.23.1" usage="main"/>
 
     <!-- previous xmlbeans version is used to bootstrap necessary schema bindings -->
@@ -139,9 +139,9 @@
 
     <!-- test dependencies -->
     <dependency prefix="junit" artifact="junit:junit:4.13.2" usage="tests"/>
-    <dependency prefix="log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.16.0" usage="tests"/>
-    <dependency prefix="ant-junit" artifact="org.apache.ant:ant-junit:1.10.11" usage="tests"/>
-    <dependency prefix="ant-junit4" artifact="org.apache.ant:ant-junit4:1.10.11" usage="tests"/>
+    <dependency prefix="log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.17.0" usage="tests"/>
+    <dependency prefix="ant-junit" artifact="org.apache.ant:ant-junit:1.10.12" usage="tests"/>
+    <dependency prefix="ant-junit4" artifact="org.apache.ant:ant-junit4:1.10.12" usage="tests"/>
     <dependency prefix="hamcrest" artifact="org.hamcrest:hamcrest:2.2" usage="tests"/>
     <dependency prefix="xerces" artifact="xerces:xercesImpl:2.12.1" usage="tests"/>
 
@@ -917,9 +917,9 @@
         <dependency prefix="spotbugs.commons-text" artifact="org.apache.commons:commons-text:1.9" usage="${spotbugs.lib}"/>
         <dependency prefix="spotbugs.jcip-annotations" artifact="net.jcip:jcip-annotations:1.0" usage="${spotbugs.lib}"/>
         <dependency prefix="spotbugs.icu4j" artifact="com.ibm.icu:icu4j:68.2" usage="${spotbugs.lib}" target="icu4j-63.1.jar"/>
-        <dependency prefix="spotbugs.log4j-api" artifact="org.apache.logging.log4j:log4j-api:2.16.0" usage="${spotbugs.lib}"/>
-        <dependency prefix="spotbugs.log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.16.0" usage="${spotbugs.lib}"/>
-        <dependency prefix="spotbugs.log4j-slf4j18-impl" artifact="org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0" usage="${spotbugs.lib}"/>
+        <dependency prefix="spotbugs.log4j-api" artifact="org.apache.logging.log4j:log4j-api:2.17.0" usage="${spotbugs.lib}"/>
+        <dependency prefix="spotbugs.log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.17.0" usage="${spotbugs.lib}"/>
+        <dependency prefix="spotbugs.log4j-slf4j18-impl" artifact="org.apache.logging.log4j:log4j-slf4j18-impl:2.17.0" usage="${spotbugs.lib}"/>
         <dependency prefix="spotbugs.saxon" artifact="net.sf.saxon:Saxon-HE:9.9.1-8" usage="${spotbugs.lib}"/>
 
         <mkdir dir="${basedir}${spotbugs.lib}/config"/>

Modified: xmlbeans/trunk/src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml?rev=1896116&r1=1896115&r2=1896116&view=diff
==============================================================================
--- xmlbeans/trunk/src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml (original)
+++ xmlbeans/trunk/src/main/resources/maven/org.apache.xmlbeans/xmlbeans/pom.xml Sat Dec 18 09:48:11 2021
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-api</artifactId>
-            <version>2.16.0</version>
+            <version>2.17.0</version>
         </dependency>
         <dependency>
             <groupId>net.sf.saxon</groupId>

Modified: xmlbeans/trunk/src/main/resources/maven/plugin.xml
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/src/main/resources/maven/plugin.xml?rev=1896116&r1=1896115&r2=1896116&view=diff
==============================================================================
--- xmlbeans/trunk/src/main/resources/maven/plugin.xml (original)
+++ xmlbeans/trunk/src/main/resources/maven/plugin.xml Sat Dec 18 09:48:11 2021
@@ -399,12 +399,12 @@
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-api</artifactId>
-            <version>2.16.0</version>
+            <version>2.17.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-core</artifactId>
-            <version>2.16.0</version>
+            <version>2.17.0</version>
         </dependency>
         <dependency>
             <groupId>net.sf.saxon</groupId>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org