mirai/gradle/bintray.gradle

21 lines
697 B
Groovy
Raw Normal View History

2020-11-01 15:07:32 +08:00
/*
* Copyright 2019-2020 Mamoe Technologies and contributors.
*
* 使 GNU AFFERO GENERAL PUBLIC LICENSE version 3 , .
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/master/LICENSE
*/
2020-08-18 09:24:44 +08:00
publishing {
repositories {
maven {
2020-12-24 16:58:13 +08:00
url = "https://api.bintray.com/maven/him188moe/mirai/mirai-core/;publish=1;override=1"
2020-08-18 09:24:44 +08:00
credentials {
username = upload.Bintray.getUser(project)
password = upload.Bintray.getKey(project)
}
}
}
}