ouven / scanndal   0.11

Contributors Wanted GitHub

Scanndal is a library, which enables software developers to scan the classpath for classes without loading them via a classloader.

Scala versions: 2.12 2.11 2.10

Maven Central

Scanndal

Scanndal is a library, which enables software developers to scan the classpath for classes without loading them via a classloader.

Main design goal:

  • To have no transient maven dependencies, except the scala-library.

Most libraries of this kind utilize an opcode engineering library like asm, bcel or javaassist and any logging tool and other frameworks. The most common case, I used classpath scanning was, when I wrote some kind of runners, which bring their own dependencies into the pool, so solving version clashes became daily business.

The library is highly influenced by ronmamos reflections library at googlecode (https://code.google.com/p/reflections/) and the apache bcel project.