Projects STRLCPY jadx Commits 12ef29be
🤬
  • ■ ■ ■ ■ ■ ■
    build.gradle
    1 1  plugins {
    2  - id 'com.github.ben-manes.versions' version '0.43.0'
    3  - id 'com.diffplug.spotless' version '6.11.0'
     2 + id 'com.github.ben-manes.versions' version '0.44.0'
     3 + id 'com.diffplug.spotless' version '6.12.0'
    4 4  }
    5 5   
    6 6  ext.jadxVersion = System.getenv('JADX_VERSION') ?: "dev"
    skipped 19 lines
    26 26   }
    27 27   
    28 28   dependencies {
    29  - implementation 'org.slf4j:slf4j-api:2.0.3'
    30  - compileOnly 'org.jetbrains:annotations:23.0.0'
     29 + implementation 'org.slf4j:slf4j-api:2.0.5'
     30 + compileOnly 'org.jetbrains:annotations:23.1.0'
    31 31   
    32  - testImplementation 'ch.qos.logback:logback-classic:1.3.4'
     32 + testImplementation 'ch.qos.logback:logback-classic:1.3.5'
    33 33   testImplementation 'org.hamcrest:hamcrest-library:2.2'
    34  - testImplementation 'org.mockito:mockito-core:4.8.0'
     34 + testImplementation 'org.mockito:mockito-core:4.9.0'
    35 35   testImplementation 'org.assertj:assertj-core:3.23.1'
    36 36   
    37 37   testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
    38 38   testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
    39 39   
    40  - testCompileOnly 'org.jetbrains:annotations:23.0.0'
     40 + testCompileOnly 'org.jetbrains:annotations:23.1.0'
    41 41   }
    42 42   
    43 43   test {
    skipped 118 lines
  • ■ ■ ■ ■ ■ ■
    gradle/wrapper/gradle-wrapper.properties
    1 1  distributionBase=GRADLE_USER_HOME
    2 2  distributionPath=wrapper/dists
    3  -distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
    4  -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
     3 +distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
     4 +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
    5 5  zipStoreBase=GRADLE_USER_HOME
    6 6  zipStorePath=wrapper/dists
    7 7   
  • ■ ■ ■ ■
    jadx-cli/build.gradle
    skipped 10 lines
    11 11   runtimeOnly(project(':jadx-plugins:jadx-smali-input'))
    12 12   
    13 13   implementation 'com.beust:jcommander:1.82'
    14  - implementation 'ch.qos.logback:logback-classic:1.3.4'
     14 + implementation 'ch.qos.logback:logback-classic:1.3.5'
    15 15  }
    16 16   
    17 17  application {
    skipped 14 lines
  • ■ ■ ■ ■ ■ ■
    jadx-core/build.gradle
    skipped 4 lines
    5 5  dependencies {
    6 6   api(project(':jadx-plugins:jadx-plugins-api'))
    7 7   
    8  - implementation 'com.google.code.gson:gson:2.9.1'
     8 + implementation 'com.google.code.gson:gson:2.10'
    9 9   
    10 10   // TODO: move resources decoding to separate plugin module
    11 11   implementation 'com.android.tools.build:aapt2-proto:7.3.1-8691043'
    12  - implementation 'com.google.protobuf:protobuf-java:3.21.8' // forcing latest version
     12 + implementation 'com.google.protobuf:protobuf-java:3.21.11' // forcing latest version
    13 13   
    14 14   testImplementation 'org.apache.commons:commons-lang3:3.12.0'
    15 15   
    skipped 3 lines
    19 19   testRuntimeOnly(project(':jadx-plugins:jadx-java-input'))
    20 20   testRuntimeOnly(project(':jadx-plugins:jadx-raung-input'))
    21 21   
    22  - testImplementation 'org.eclipse.jdt:ecj:3.31.0'
    23  - testImplementation 'tools.profiler:async-profiler:1.8.3'
     22 + testImplementation 'org.eclipse.jdt:ecj:3.32.0'
     23 + testImplementation 'tools.profiler:async-profiler:2.9'
    24 24  }
    25 25   
    26 26  test {
    skipped 3 lines
  • ■ ■ ■ ■ ■ ■
    jadx-gui/build.gradle
    1 1  plugins {
    2 2   id 'application'
    3  - id 'edu.sc.seis.launch4j' version '2.5.3'
     3 + id 'edu.sc.seis.launch4j' version '2.5.4'
    4 4   id 'com.github.johnrengelman.shadow' version '7.1.2'
    5 5   id 'org.beryx.runtime' version '1.12.7'
    6 6  }
    skipped 2 lines
    9 9   implementation(project(':jadx-core'))
    10 10   implementation(project(":jadx-cli"))
    11 11   implementation 'com.beust:jcommander:1.82'
    12  - implementation 'ch.qos.logback:logback-classic:1.3.4'
     12 + implementation 'ch.qos.logback:logback-classic:1.3.5'
    13 13   
    14 14   implementation 'com.fifesoft:rsyntaxtextarea:3.3.0'
    15 15   implementation files('libs/jfontchooser-1.0.5.jar')
    skipped 4 lines
    20 20   implementation 'com.formdev:flatlaf-extras:2.6'
    21 21   implementation 'com.formdev:svgSalamander:1.1.4'
    22 22   
    23  - implementation 'com.google.code.gson:gson:2.9.1'
     23 + implementation 'com.google.code.gson:gson:2.10'
    24 24   implementation 'org.apache.commons:commons-lang3:3.12.0'
    25 25   implementation 'org.apache.commons:commons-text:1.10.0'
    26 26   
    skipped 121 lines
Please wait...
Page is in error, reload to recover