You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/11/10 22:36:43 UTC

(commons-io) branch master updated (d6c14418 -> 31c72cd2)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


    from d6c14418 2.15.0 breaks backwards compatibility in PathUtils.fileContentEquals for the Zip file system
     new 2209fbb3 Javadoc
     new 31c72cd2 Remove profile made obsolete by parent POM

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                            | 38 ----------------------
 .../io/monitor/FileAlterationObserverTest.java     |  2 +-
 2 files changed, 1 insertion(+), 39 deletions(-)


(commons-io) 01/02: Javadoc

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 2209fbb36c1714328a2a09c60d13171fc584f531
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 10 17:34:02 2023 -0500

    Javadoc
---
 .../java/org/apache/commons/io/monitor/FileAlterationObserverTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/monitor/FileAlterationObserverTest.java b/src/test/java/org/apache/commons/io/monitor/FileAlterationObserverTest.java
index 5edc6bb5..130105ea 100644
--- a/src/test/java/org/apache/commons/io/monitor/FileAlterationObserverTest.java
+++ b/src/test/java/org/apache/commons/io/monitor/FileAlterationObserverTest.java
@@ -36,7 +36,7 @@ import org.junit.jupiter.api.Test;
 public class FileAlterationObserverTest extends AbstractMonitorTest {
 
     /**
-     * Construct a new test case.
+     * Constructs a new instance.
      *
      */
     public FileAlterationObserverTest() {


(commons-io) 02/02: Remove profile made obsolete by parent POM

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 31c72cd29af9c3f78f547268daea02766ba69cf3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 10 17:36:38 2023 -0500

    Remove profile made obsolete by parent POM
---
 pom.xml | 38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/pom.xml b/pom.xml
index c182a320..08f43e51 100644
--- a/pom.xml
+++ b/pom.xml
@@ -560,44 +560,6 @@ file comparators, endian transformation classes, and much more.
         <maven.compiler.release>8</maven.compiler.release>
       </properties>
     </profile>
-    <profile>
-      <id>java9-moditect</id>
-      <activation>
-        <!-- 
-        Fails on Java 11 and Windows:
-        Error:  Failed to execute goal org.moditect:moditect-maven-plugin:1.0.0.RC2:add-module-info (add-module-infos) on project commons-io: Execution add-module-infos of goal org.moditect:moditect-maven-plugin:1.0.0.RC2:add-module-info failed: Couldn't add module-info.class to JAR: D:\a\commons-io\commons-io\target\commons-io-2.12.0-SNAPSHOT.jar: The process cannot access the file because it is being used by another process. -> [Help 1]
-        -->
-        <jdk>[9,11)</jdk>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.moditect</groupId>
-            <artifactId>moditect-maven-plugin</artifactId>
-            <version>${commons.moditect.version}</version>
-            <executions>
-              <execution>
-                <id>add-module-infos</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>add-module-info</goal>
-                </goals>
-                <configuration>
-                  <jvmVersion>9</jvmVersion>
-                  <outputDirectory>${project.build.directory}</outputDirectory>
-                  <overwriteExistingFiles>true</overwriteExistingFiles>
-                  <module>
-                    <moduleInfo>
-                      <name>org.apache.commons.io</name>
-                    </moduleInfo>
-                  </module>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
     <profile>
       <id>benchmark</id>
       <properties>