Skip to content

Commit 769561e

Browse files
committed
Fix maven upload information
1 parent d21bd80 commit 769561e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ uploadArchives {
5151
repositories.mavenDeployer {
5252
configuration = configurations.deployJars
5353

54-
if (project.hasProperty("filesmaven")) {
54+
if (project.hasProperty('mavenPass')) {
5555
logger.info('Publishing to files server')
56-
repository(url: project.filesmaven.url) {
57-
authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
56+
repository(url: 'http://files.minecraftforge.net/maven/manage/upload') {
57+
authentication(userName: 'mcp', password: project.getProperty('mavenPass'))
5858
}
5959
} else {
6060
logger.info('Publishing to repo folder')

0 commit comments

Comments
 (0)