diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 415e2ae4..40db89e2 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,21 +17,21 @@ jobs: java: [ '8', '11', '17' ] # LTS versions steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} distribution: 'temurin' - name: Build with Maven run: mvn -B package --file pom.xml - name: Extract Maven project version - run: echo ::set-output name=version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) + run: echo "bcv_version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> $GITHUB_ENV id: project - name: 'Upload Artifact' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ matrix.java == '8' }} with: - name: Bytecode-Viewer-${{ steps.project.outputs.version }}-SNAPSHOT - path: target/Bytecode-Viewer-${{ steps.project.outputs.version }}.jar + name: Bytecode-Viewer-${{ env.bcv_version }}-SNAPSHOT + path: target/Bytecode-Viewer-${{ env.bcv_version }}.jar retention-days: 90 diff --git a/pom.xml b/pom.xml index 280379df..c5d62d6e 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ 23.0.0 4.9.3 2.6.1 - 9.3 + 9.4 0.2.0 1.0bcv 0.152 @@ -27,11 +27,11 @@ 1.21 2.11.0 3.12.0 - 1.9 - 3.0.1 + 1.10.0 + 3.0.2 0.4.1 6.0.0.Final - v52 + v56 e0d44f4 2.9.1 31.1-jre @@ -43,11 +43,11 @@ 3.3 0.2.0 0.6.0 - 3.2.0 + 3.3.0 2.1.1 - 2.0.0 + 2.0.3 2.5.2 - 1.32 + 1.33 1.0.3 0.2.2 1.1.4c @@ -421,6 +421,26 @@ META-INF/MANIFEST.MF + + + com.github.ThexXTURBOXx.dex2jar:d2j-external + true + + com/android/** + api_database/** + META-INF/services/** + LICENSE + r8-version.properties + org/objectweb/asm/MethodWriter.class + + + + + org.ow2.asm:asm + + org/objectweb/asm/MethodWriter.class + +