classutil icon indicating copy to clipboard operation
classutil copied to clipboard

Scala-friendly, fast class-finder library (using ASM under the covers)

Results 7 classutil issues
Sort by recently updated
recently updated
newest added

Hi. I'm doing class lookup on list of jars from Spring application and getting bellow error. asm-7.1.jar is available in list of jars I'm loading. classutils: 1.5.0 Java version: 1.8.0_265...

The problem exists with jdk > 11, but in jdk 17 the workaround also stops working: [error] OpenJDK 64-Bit Server VM warning: Ignoring option --illegal-access=warn; support was removed in 17.0...

Hi, I have tried the following code which seems to work perfectly: val path : String = CLI.getClass.getProtectionDomain.getCodeSource.getLocation.getPath println("Path found " + path) val finder = ClassFinder(List(path).map(new File(_))) This detects...

Hi there! Was checking out the library, which looks really nice. I added the dependency through Maven Central (using sbt 0.13.7) via `libraryDependencies += "org.clapper" %% "classutil" % "1.0.5"`, so...