1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-14 13:55:27 +00:00

fix publish config

This commit is contained in:
InsanusMokrassar 2019-02-16 15:39:36 +08:00
parent 753f9cab7a
commit 0803499df5

View File

@ -7,15 +7,13 @@ ext {
bintray {
user = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
key = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
publications = ["maven"]
publications = ["jvm8"]
filesSpec {
into "$projectBintrayDir"
from("build/libs") {
from("$destinationDir/libs") {
rename "(.+)-jvm8-(.+)\\.asc", "\$1-\$2.asc"
include "**/*.asc"
}
from("build/publications/maven") {
rename 'pom-default.xml(.*)', "${project.name}-${project.version}.pom\$1"
}
}
pkg {
repo = 'StandardRepository'