From d5e5a2c31495536a046bd3471901516073832ce0 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 15 Sep 2016 16:10:53 +0100 Subject: [PATCH] Fix maven URL and dependencies. Accessing 'repo' is bad practice and disabled in newer artifactory versions (like the one we just deployed). Rely on releases instead. Also, the identd plugin was depending on the wrong parser, and was presumably pulling in criminally old versions from artifactory. --- build.gradle | 2 +- identd/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 72536b5ae..6e591f56d 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ subprojects { repositories { mavenCentral() - maven { url 'https://artifactory.dmdirc.com/artifactory/repo' } + maven { url 'https://artifactory.dmdirc.com/artifactory/releases' } maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } } diff --git a/identd/build.gradle b/identd/build.gradle index 392649a11..9b8d32f59 100644 --- a/identd/build.gradle +++ b/identd/build.gradle @@ -1,3 +1,3 @@ dependencies { - compile group: 'com.dmdirc.parser', name: 'irc', version: '+', changing: true + compile group: 'com.dmdirc', name: 'parser-irc', version: '+', changing: true }