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
a6b4043e
Commit
a6b4043e
authored
Nov 29, 2014
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update gradle and dependencies
parent
9cea0163
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
18 deletions
+41
-18
build.gradle
build.gradle
+30
-16
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
build.gradle
jadx-core/build.gradle
+9
-0
build.gradle
jadx-gui/build.gradle
+1
-1
No files found.
build.gradle
View file @
a6b4043e
ext
.
jadxVersion
=
file
(
'version'
).
readLines
().
get
(
0
)
version
=
jadxVersion
buildscript
{
repositories
{
mavenCentral
()
jcenter
()
}
}
plugins
{
id
"com.github.kt3k.coveralls"
version
"2.0.1"
id
"info.solidsoft.pitest"
version
"1.1.1"
// id "com.github.ben-manes.versions" version "0.6"
}
apply
plugin:
'sonar-runner'
ext
.
jadxVersion
=
file
(
'version'
).
readLines
().
get
(
0
)
version
=
jadxVersion
subprojects
{
apply
plugin:
'java'
apply
plugin:
'groovy'
apply
plugin:
'jacoco'
apply
plugin:
'coveralls'
apply
plugin:
'co
m.github.kt3k.co
veralls'
version
=
jadxVersion
...
...
@@ -32,7 +45,7 @@ subprojects {
testCompile
'ch.qos.logback:logback-classic:1.1.2'
testCompile
'junit:junit:4.11'
testCompile
'org.mockito:mockito-core:1.10.1
0
'
testCompile
'org.mockito:mockito-core:1.10.1
3
'
testCompile
'org.spockframework:spock-core:0.7-groovy-2.0'
testCompile
'cglib:cglib-nodep:3.1'
}
...
...
@@ -50,15 +63,12 @@ subprojects {
}
}
buildscript
{
repositories
{
mavenCentral
()
}
dependencies
{
// setup coveralls (http://coveralls.io/) see http://github.com/kt3k/coveralls-gradle-plugin
classpath
'org.kt3k.gradle.plugin:coveralls-gradle-plugin:0.6.1'
}
/* Sonar runner configuration */
repositories
{
mavenCentral
()
}
sonarRunner
{
toolVersion
=
'2.4'
}
task
copyArtifacts
(
type:
Sync
,
dependsOn:
[
'jadx-cli:installApp'
,
'jadx-gui:installApp'
])
{
...
...
@@ -81,13 +91,17 @@ task dist(dependsOn: pack) {
task
samples
(
dependsOn:
'jadx-samples:samples'
)
{
}
task
build
(
dependsOn:
[
dist
,
samples
]
)
{
task
pitest
(
overwrite:
true
,
dependsOn:
'jadx-core:pitest'
)
{
}
task
clean
(
type:
Delete
)
{
task
clean
BuildDir
(
type:
Delete
)
{
delete
buildDir
}
build
.
dependsOn
(
dist
,
samples
)
clean
.
dependsOn
(
cleanBuildDir
)
task
wrapper
(
type:
Wrapper
)
{
gradleVersion
=
'2.
0
'
gradleVersion
=
'2.
2.1
'
}
gradle/wrapper/gradle-wrapper.jar
View file @
a6b4043e
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
a6b4043e
...
...
@@ -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-2.
0
-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-2.
2.1
-bin.zip
jadx-core/build.gradle
View file @
a6b4043e
ext
.
jadxClasspath
=
'clsp-data/android-4.3.jar'
apply
plugin:
"info.solidsoft.pitest"
dependencies
{
runtime
files
(
jadxClasspath
)
...
...
@@ -15,3 +17,10 @@ task packTests(type: Jar) {
from
sourceSets
.
test
.
output
}
pitest
{
excludedMethods
=
[
'toString'
]
threads
=
4
enableDefaultIncrementalAnalysis
=
true
outputFormats
=
[
'XML'
,
'HTML'
]
jvmArgs
=
[
'-Xmx12G'
]
}
jadx-gui/build.gradle
View file @
a6b4043e
...
...
@@ -6,7 +6,7 @@ dependencies {
compile
(
project
(
":jadx-core"
))
compile
(
project
(
":jadx-cli"
))
compile
'com.fifesoft:rsyntaxtextarea:2.5.0'
compile
'com.google.code.gson:gson:2.3'
compile
'com.google.code.gson:gson:2.3
.1
'
}
applicationDistribution
.
with
{
...
...
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