Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
ab040d36
Commit
ab040d36
authored
Feb 10, 2018
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update all dependencies (#229)
parent
a2781b5b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
13 deletions
+30
-13
build.gradle
build.gradle
+23
-6
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
build.gradle
jadx-cli/build.gradle
+1
-1
build.gradle
jadx-core/build.gradle
+3
-3
build.gradle
jadx-gui/build.gradle
+2
-2
No files found.
build.gradle
View file @
ab040d36
plugins
{
id
'com.github.ksoichiro.console.reporter'
version
'0.5.0'
id
'org.sonarqube'
version
'2.4'
id
'org.sonarqube'
version
'2.6.2'
id
'com.github.ben-manes.versions'
version
'0.17.0'
}
ext
.
jadxVersion
=
file
(
'version'
).
readLines
().
get
(
0
)
...
...
@@ -31,14 +32,14 @@ allprojects {
}
dependencies
{
compile
'org.slf4j:slf4j-api:1.7.
10
'
compile
'org.slf4j:slf4j-api:1.7.
25
'
testCompile
'ch.qos.logback:logback-classic:1.
1.2
'
testCompile
'ch.qos.logback:logback-classic:1.
2.3
'
testCompile
'junit:junit:4.12'
testCompile
'org.hamcrest:hamcrest-library:1.3'
testCompile
'org.mockito:mockito-core:
1.10.19
'
testCompile
'org.spockframework:spock-core:1.
0
-groovy-2.4'
testCompile
'cglib:cglib-nodep:3.
1
'
testCompile
'org.mockito:mockito-core:
2.15.0
'
testCompile
'org.spockframework:spock-core:1.
1
-groovy-2.4'
testCompile
'cglib:cglib-nodep:3.
2.6
'
}
repositories
{
...
...
@@ -47,6 +48,9 @@ allprojects {
jcenter
()
}
jacoco
{
toolVersion
=
"0.8.0"
}
jacocoTestReport
{
reports
{
xml
.
enabled
=
true
...
...
@@ -62,6 +66,19 @@ sonarqube {
}
}
dependencyUpdates
.
resolutionStrategy
=
{
componentSelection
{
rules
->
rules
.
all
{
ComponentSelection
selection
->
boolean
rejected
=
[
'alpha'
,
'beta'
,
'rc'
,
'cr'
,
'm'
,
'atlassian'
].
any
{
qualifier
->
selection
.
candidate
.
version
==~
/(?i).*[.-]${qualifier}[.\d-]*/
}
if
(
rejected
)
{
selection
.
reject
(
'Release candidate'
)
}
}
}
}
task
copyArtifacts
(
type:
Sync
,
dependsOn:
[
'jadx-cli:installDist'
,
'jadx-gui:installDist'
])
{
destinationDir
file
(
"$buildDir/jadx"
)
[
'jadx-cli'
,
'jadx-gui'
].
each
{
...
...
gradle/wrapper/gradle-wrapper.jar
View file @
ab040d36
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
ab040d36
...
...
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-4.
4
.1-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-4.
5
.1-bin.zip
jadx-cli/build.gradle
View file @
ab040d36
...
...
@@ -6,7 +6,7 @@ applicationName = 'jadx'
dependencies
{
compile
(
project
(
':jadx-core'
))
compile
'com.beust:jcommander:1.47'
compile
'ch.qos.logback:logback-classic:1.
1.2
'
compile
'ch.qos.logback:logback-classic:1.
2.3
'
}
applicationDistribution
.
with
{
...
...
jadx-core/build.gradle
View file @
ab040d36
...
...
@@ -5,9 +5,9 @@ dependencies {
compile
files
(
'lib/dx-1.14.jar'
)
compile
'commons-io:commons-io:2.6'
compile
'org.ow2.asm:asm:
5.0.3
'
compile
'
com.intellij:annotations:12
.0'
compile
'uk.com.robust-it:cloning:1.9.
2
'
compile
'org.ow2.asm:asm:
6.0
'
compile
'
org.jetbrains:annotations:15
.0'
compile
'uk.com.robust-it:cloning:1.9.
9
'
testCompile
'org.smali:smali:2.2.2'
testCompile
'org.smali:baksmali:2.2.2'
...
...
jadx-gui/build.gradle
View file @
ab040d36
...
...
@@ -6,7 +6,7 @@ dependencies {
compile
(
project
(
":jadx-core"
))
compile
(
project
(
":jadx-cli"
))
compile
'com.fifesoft:rsyntaxtextarea:2.6.1'
compile
'com.google.code.gson:gson:2.
3.1
'
compile
'com.google.code.gson:gson:2.
8.2
'
compile
files
(
'libs/jfontchooser-1.0.5.jar'
)
compile
'hu.kazocsaba:image-viewer:1.2.3'
}
...
...
@@ -30,7 +30,7 @@ jar {
}
startScripts
{
defaultJvmOpts
=
[
'-
Xms2g
'
,
'-Xmx4g'
]
defaultJvmOpts
=
[
'-
d64'
,
'-Xms512M
'
,
'-Xmx4g'
]
doLast
{
def
str
=
windowsScript
.
text
str
=
str
.
replaceAll
(
'java.exe'
,
'javaw.exe'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment