Skip to content

Commit

Permalink
chore: update dependencies, remove workaround (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitram84 authored Oct 27, 2024
1 parent 5373629 commit b9b2289
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 19 deletions.
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,14 @@ Example:

JDK 11 or higher must be installed.

This plugin currently depends on an unreleased version on JADX. Therefore, you have to build the latest version of JADX:

```bash
git clone https://github.com/skylot/jadx.git
cd jadx
JADX_VERSION="1.5.1-SNAPSHOT" ./gradlew publishToMavenLocal
```

(on Windows, use gradlew.bat instead of ./gradlew)

#### Build the plugin

```bash
git clone https://github.com/jadx-decompiler/jadx-android-linter-plugin.git
cd jadx-android-linter-plugin
./gradlew assemble
```

(on Windows, use gradlew.bat instead of ./gradlew)

### Install

Install using location id: `github:jadx-decompiler:jadx-android-linter-plugin`
Expand Down
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {

// auto update dependencies with 'useLatestVersions' task
id("se.patrikerdes.use-latest-versions") version "0.2.18"
id("com.github.ben-manes.versions") version "0.50.0"
id("com.github.ben-manes.versions") version "0.51.0"
}

dependencies {
Expand All @@ -24,7 +24,7 @@ dependencies {
}
compileOnly("com.google.code.gson:gson:2.11.0")
compileOnly("commons-io:commons-io:2.17.0")
compileOnly("ch.qos.logback:logback-classic:1.5.8")
compileOnly("ch.qos.logback:logback-classic:1.5.11")

testImplementation("io.github.skylot:jadx-core:1.5.1-SNAPSHOT") {
isChanging = true
Expand All @@ -33,19 +33,19 @@ dependencies {
isChanging = true
}
testImplementation("com.google.code.gson:gson:2.11.0")
testImplementation("ch.qos.logback:logback-classic:1.5.8")
testImplementation("ch.qos.logback:logback-classic:1.5.11")
testImplementation("org.apache.commons:commons-lang3:3.17.0")
testImplementation("jakarta.xml.bind:jakarta.xml.bind-api:4.0.2")
testImplementation("org.ow2.asm:asm:9.7")
testImplementation("org.ow2.asm:asm:9.7.1")
testRuntimeOnly("com.sun.xml.bind:jaxb-impl:4.0.5")

testImplementation("io.github.skylot:jadx-smali-input:1.5.1-SNAPSHOT") {
isChanging = true
}

testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
}

allprojects {
Expand Down

0 comments on commit b9b2289

Please sign in to comment.