mirror of
https://github.com/revanced/smali.git
synced 2025-05-29 12:20:11 +02:00
gradleize util project
This commit is contained in:
parent
94599babbb
commit
7d7ee58ad9
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
/.gradle
|
||||
/baksmali/target
|
||||
/dexlib/target
|
||||
/smali/target
|
||||
/util/target
|
||||
/util/build
|
||||
/maven-smali-plugin/target
|
||||
/smali-integration-tests/target
|
||||
|
7
build.gradle
Normal file
7
build.gradle
Normal file
@ -0,0 +1,7 @@
|
||||
subprojects {
|
||||
apply plugin: 'java'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
1
gradle.properties
Normal file
1
gradle.properties
Normal file
@ -0,0 +1 @@
|
||||
org.gradle.daemon=true
|
1
settings.gradle
Normal file
1
settings.gradle
Normal file
@ -0,0 +1 @@
|
||||
include 'util'
|
1
util/.gitignore
vendored
1
util/.gitignore
vendored
@ -1 +0,0 @@
|
||||
/target
|
4
util/build.gradle
Normal file
4
util/build.gradle
Normal file
@ -0,0 +1,4 @@
|
||||
dependencies {
|
||||
compile 'commons-cli:commons-cli:1.2'
|
||||
testCompile 'junit:junit:4.6'
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user