You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by do...@apache.org on 2023/06/21 13:36:24 UTC

[accumulo-classloaders] branch main updated (b4ecd67 -> 802ce65)

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

domgarguilo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-classloaders.git


    from b4ecd67  Remove usage of deprecated AccessController (#19)
     add bb76271  Upgrade from Junit4 to Junit5
     add 20c50be  Fix spotbugs error with tempdir
     add 7fd2731  Create sub directories for tempDir
     add ecc0d00  Enfore the use of JUnit5
     add 10a1efd  Fix regex
     new 802ce65  Upgrade from Junit4 to Junit5

The 1 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:
 modules/vfs-class-loader/pom.xml                   | 10 +++---
 .../accumulo/classloader/vfs/AccumuloDFSBase.java  |  8 ++---
 .../vfs/AccumuloVFSClassLoaderTest.java            | 25 +++++++------
 .../classloader/vfs/ClassPathPrinterTest.java      | 25 +++++++------
 .../classloader/vfs/VfsClassLoaderTest.java        | 26 +++++++-------
 .../ReloadingVFSContextClassLoaderFactoryTest.java | 41 +++++++++++++---------
 pom.xml                                            | 36 ++++++++++++++-----
 7 files changed, 98 insertions(+), 73 deletions(-)


[accumulo-classloaders] 01/01: Upgrade from Junit4 to Junit5

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

domgarguilo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-classloaders.git

commit 802ce65771e381c1766b73ba2ab3ef172981b015
Merge: b4ecd67 10a1efd
Author: Dom G <do...@apache.org>
AuthorDate: Wed Jun 21 09:36:18 2023 -0400

    Upgrade from Junit4 to Junit5

 modules/vfs-class-loader/pom.xml                   | 10 +++---
 .../accumulo/classloader/vfs/AccumuloDFSBase.java  |  8 ++---
 .../vfs/AccumuloVFSClassLoaderTest.java            | 25 +++++++------
 .../classloader/vfs/ClassPathPrinterTest.java      | 25 +++++++------
 .../classloader/vfs/VfsClassLoaderTest.java        | 26 +++++++-------
 .../ReloadingVFSContextClassLoaderFactoryTest.java | 41 +++++++++++++---------
 pom.xml                                            | 36 ++++++++++++++-----
 7 files changed, 98 insertions(+), 73 deletions(-)

diff --cc modules/vfs-class-loader/src/test/java/org/apache/accumulo/classloader/vfs/VfsClassLoaderTest.java
index e5a5cd1,15998ea..a3bbb4e
--- a/modules/vfs-class-loader/src/test/java/org/apache/accumulo/classloader/vfs/VfsClassLoaderTest.java
+++ b/modules/vfs-class-loader/src/test/java/org/apache/accumulo/classloader/vfs/VfsClassLoaderTest.java
@@@ -18,11 -18,13 +18,11 @@@
   */
  package org.apache.accumulo.classloader.vfs;
  
- import static org.junit.Assert.assertEquals;
- import static org.junit.Assert.assertNotNull;
- import static org.junit.Assert.assertTrue;
+ import static org.junit.jupiter.api.Assertions.assertEquals;
+ import static org.junit.jupiter.api.Assertions.assertNotNull;
+ import static org.junit.jupiter.api.Assertions.assertTrue;
  
  import java.net.URL;
 -import java.security.AccessController;
 -import java.security.PrivilegedAction;
  import java.util.Arrays;
  
  import org.apache.commons.vfs2.FileChangeEvent;