Skip to content
/ Atlas Public

A binary transformation framework for Java.

License

Notifications You must be signed in to change notification settings

CadixDev/Atlas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5dd628a · Feb 21, 2021

History

37 Commits
May 27, 2020
Oct 3, 2019
Feb 21, 2021
Oct 3, 2019
May 27, 2020
Oct 3, 2019
Feb 10, 2021
Feb 21, 2021
Feb 21, 2021
Oct 3, 2019
Oct 3, 2019
Oct 3, 2019

Repository files navigation

Atlas

Atlas is a plain-and-simple binary transformer for Java artifacts, providing a simple API to manipulate Jars as you see fit.

try (final Atlas atlas = new Atlas()) {
    atlas.install(ctx -> new JarEntryRemappingTransformer(
        new LorenzRemapper(mappings)
    ));
    atlas.run(Paths.get("input.jar"), Paths.get("output.jar"));
}

License

Atlas is made available under the Mozilla Public License 2.0, you can find a copy within Atlas' binary, or within this repository.