This commit is contained in:
parent
1294c1c45a
commit
92b6bc642a
@ -14,3 +14,18 @@ dependencies {
|
|||||||
// use JUnit test framework
|
// use JUnit test framework
|
||||||
testImplementation("junit:junit:4.12")
|
testImplementation("junit:junit:4.12")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks {
|
||||||
|
jar {
|
||||||
|
from(
|
||||||
|
configurations.compileClasspath
|
||||||
|
.map { config ->
|
||||||
|
config.map { if (it.isDirectory) it else zipTree(it) }
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
manifest {
|
||||||
|
attributes("Implementation-Title" to "wedroid-wrapper")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user