add release pipeline #27

Manually merged
UmbertoF merged 7 commits from feature_ci into develop 2020-01-14 20:20:13 +00:00
Showing only changes of commit 92b6bc642a - Show all commits

View File

@ -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")
}
}
}