We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d21bd80 commit 769561eCopy full SHA for 769561e
build.gradle
@@ -51,10 +51,10 @@ uploadArchives {
51
repositories.mavenDeployer {
52
configuration = configurations.deployJars
53
54
- if (project.hasProperty("filesmaven")) {
+ if (project.hasProperty('mavenPass')) {
55
logger.info('Publishing to files server')
56
- repository(url: project.filesmaven.url) {
57
- authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
+ repository(url: 'http://files.minecraftforge.net/maven/manage/upload') {
+ authentication(userName: 'mcp', password: project.getProperty('mavenPass'))
58
}
59
} else {
60
logger.info('Publishing to repo folder')
0 commit comments