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
727285e3
Commit
727285e3
authored
Jan 12, 2019
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update dependencies and gradle
parent
a932c7c5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
27 deletions
+25
-27
build.gradle
build.gradle
+3
-6
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
build.gradle
jadx-core/build.gradle
+6
-6
CountString.java
...-core/src/test/java/jadx/tests/api/utils/CountString.java
+11
-10
build.gradle
jadx-gui/build.gradle
+4
-4
No files found.
build.gradle
View file @
727285e3
plugins
{
id
'com.github.ksoichiro.console.reporter'
version
'0.5.0'
id
'org.sonarqube'
version
'2.6.2'
id
'org.sonarqube'
version
'2.7'
id
'com.github.ben-manes.versions'
version
'0.20.0'
}
...
...
@@ -12,7 +11,6 @@ allprojects {
apply
plugin:
'java'
apply
plugin:
'groovy'
apply
plugin:
'jacoco'
apply
plugin:
'com.github.ksoichiro.console.reporter'
version
=
jadxVersion
...
...
@@ -41,10 +39,9 @@ allprojects {
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:2.2
0.1
'
testCompile
'org.hamcrest:hamcrest-library:
2.1
'
testCompile
'org.mockito:mockito-core:2.2
3.4
'
testCompile
'org.spockframework:spock-core:1.1-groovy-2.4'
testCompile
'cglib:cglib-nodep:3.2.7'
}
repositories
{
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
727285e3
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
4.9
-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
5.1.1
-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
jadx-core/build.gradle
View file @
727285e3
...
...
@@ -5,13 +5,13 @@ dependencies {
compile
files
(
'lib/dx-1.16.jar'
)
compile
'commons-io:commons-io:2.6'
compile
'org.ow2.asm:asm:
6.2
'
compile
'org.jetbrains:annotations:16.0.
2
'
compile
'uk.com.robust-it:cloning:1.9.1
0
'
compile
'org.ow2.asm:asm:
7.0
'
compile
'org.jetbrains:annotations:16.0.
3
'
compile
'uk.com.robust-it:cloning:1.9.1
1
'
testCompile
'org.smali:smali:2.2.
4
'
testCompile
'org.smali:baksmali:2.2.
4
'
testCompile
'org.smali:smali:2.2.
5
'
testCompile
'org.smali:baksmali:2.2.
5
'
testCompile
'org.apache.commons:commons-lang3:3.
7
'
testCompile
'org.apache.commons:commons-lang3:3.
8.1
'
}
jadx-core/src/test/java/jadx/tests/api/utils/CountString.java
View file @
727285e3
package
jadx
.
tests
.
api
.
utils
;
import
org.hamcrest.Description
;
import
org.hamcrest.
core.Substring
Matcher
;
import
org.hamcrest.
TypeSafe
Matcher
;
public
class
CountString
extends
SubstringMatcher
{
public
class
CountString
extends
TypeSafeMatcher
<
String
>
{
private
final
int
count
;
private
final
String
substring
;
public
CountString
(
int
count
,
String
substring
)
{
super
(
substring
);
this
.
count
=
count
;
this
.
substring
=
substring
;
}
@Override
protected
boolean
evalSubstringOf
(
String
string
)
{
return
this
.
count
==
count
(
string
);
protected
boolean
matchesSafely
(
String
item
)
{
return
this
.
count
==
count
(
item
);
}
@Override
p
rotected
String
relationship
(
)
{
return
"containing <"
+
count
+
"> occurrence of"
;
p
ublic
void
describeMismatchSafely
(
String
item
,
Description
mismatchDescription
)
{
mismatchDescription
.
appendText
(
"found "
).
appendValue
(
count
(
item
))
;
}
@Override
public
void
describe
MismatchSafely
(
String
item
,
Description
mismatchD
escription
)
{
mismatchDescription
.
appendText
(
"found "
).
appendValue
(
count
(
item
)
);
public
void
describe
To
(
Description
d
escription
)
{
description
.
appendText
(
"containing <"
+
count
+
"> occurrence of "
).
appendValue
(
this
.
substring
);
}
private
int
count
(
String
string
)
{
return
TestUtils
.
count
(
string
,
substring
);
return
TestUtils
.
count
(
string
,
this
.
substring
);
}
}
jadx-gui/build.gradle
View file @
727285e3
...
...
@@ -10,15 +10,15 @@ mainClassName = 'jadx.gui.JadxGUI'
dependencies
{
compile
(
project
(
":jadx-core"
))
compile
(
project
(
":jadx-cli"
))
compile
'com.fifesoft:rsyntaxtextarea:
2.6.1
'
compile
'com.fifesoft:rsyntaxtextarea:
3.0.0
'
compile
'com.google.code.gson:gson:2.8.5'
compile
files
(
'libs/jfontchooser-1.0.5.jar'
)
compile
'hu.kazocsaba:image-viewer:1.2.3'
compile
'org.apache.commons:commons-lang3:3.
7
'
compile
'org.apache.commons:commons-lang3:3.
8.1
'
compile
'io.reactivex.rxjava2:rxjava:2.
1.17
'
compile
"com.github.akarnokd:rxjava2-swing:0.
2.16
"
compile
'io.reactivex.rxjava2:rxjava:2.
2.5
'
compile
"com.github.akarnokd:rxjava2-swing:0.
3.3
"
}
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