From c3a573c5e58a067672b4b36d8b6d50da92b54767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rahel=20L=C3=BCthy?= Date: Wed, 1 Jul 2015 10:40:13 +0200 Subject: [PATCH] Fix frege-gradle-plugin resolution --- build.gradle | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index a644639..89ea3a7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,13 @@ -buildscript { // make the frege plugin available in our build +buildscript { repositories { - mavenLocal() // if you have the plugin installed locally, this is enough + mavenLocal() + mavenCentral() maven { - url = "https://oss.sonatype.org/content/groups/public" + url = 'https://jitpack.io' } } dependencies { - classpath 'org.frege-lang:frege-gradle-plugin:0.3-SNAPSHOT', { + classpath 'com.github.frege:frege-gradle-plugin:release-0.3', { exclude module: "frege-native-gen" } }