release 0.1 #30

Manually merged
noemi3 merged 150 commits from release/0.1 into master 2020-01-18 14:59:02 +00:00
1 changed files with 15 additions and 0 deletions
Showing only changes of commit 92b6bc642a - Show all commits

View File

@ -14,3 +14,18 @@ dependencies {
// use JUnit test framework
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")
}
}
}