Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added java 9+ compatibility (bugfix & addition) #139

Merged
merged 14 commits into from
May 2, 2022

Commits on Aug 17, 2020

  1. Enabled java9+ compatibility

    - SignatureChecker: upgraded from ASM5 to ASM7
    - ClassFileVisitor: added ability to process Paths (nedded for "jrt:/modules")
    - SignatureBuilder: added java version switch (<=8 / >=9) and implemented signature creation for java 9+
    Finomosec committed Aug 17, 2020
    Configuration menu
    Copy the full SHA
    13b1456 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Merge pull request #1 from mojohaus/master

    Update to origin
    Finomosec committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    2c2387d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6262d38 View commit details
    Browse the repository at this point in the history
  3. fixed bug: processing failed sometimes when inner classes existed

    Inner classes need to be processed first. By using a TreeSet, the files are automatically sorted with inner classes first. eg. like "Outer$Inner.class" before "Outer.class"
    Finomosec committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    8bdb758 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2021

  1. Configuration menu
    Copy the full SHA
    be4f1d6 View commit details
    Browse the repository at this point in the history
  2. fixed issue: FileSystemNotFoundException was thrown for paths like "C…

    …:/..." (with forward slash)
    Finomosec committed Feb 8, 2021
    Configuration menu
    Copy the full SHA
    03bba52 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    09fbc1e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9c8a50b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f66f7ac View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2021

  1. Configuration menu
    Copy the full SHA
    dbcfc2a View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master'

    # Conflicts:
    #	animal-sniffer/src/main/java/org/codehaus/mojo/animal_sniffer/ClassFileVisitor.java
    #	animal-sniffer/src/main/java/org/codehaus/mojo/animal_sniffer/Main.java
    Finomosec committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    ffdb970 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8909994 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2022

  1. Configuration menu
    Copy the full SHA
    c7ba25c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    abb1fee View commit details
    Browse the repository at this point in the history