diff options
author | Mark Perry <maperry78@yahoo.com.au> | 2015-07-15 23:53:31 +1000 |
---|---|---|
committer | Mark Perry <maperry78@yahoo.com.au> | 2015-07-15 23:53:31 +1000 |
commit | a777707c4757d83a5bbc348b9a0b10cf05a2b68a (patch) | |
tree | 6d1070c4d1d5c03ed030e18178dffe13f5b67fed | |
parent | 3696c915796d103730efd2c43f418a89dc614c3f (diff) | |
download | frege-gradle-plugin-a777707c4757d83a5bbc348b9a0b10cf05a2b68a.tar.gz frege-gradle-plugin-a777707c4757d83a5bbc348b9a0b10cf05a2b68a.tar.bz2 frege-gradle-plugin-a777707c4757d83a5bbc348b9a0b10cf05a2b68a.zip |
Updated readme
-rw-r--r-- | README.adoc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/README.adoc b/README.adoc index 4b2b5ed..dd18c30 100644 --- a/README.adoc +++ b/README.adoc @@ -1,24 +1,21 @@ = Frege Gradle Plugin -This is an experimental Gradle plugin to compile Frege projects (https://github.com/Frege/frege). It was forked from https://github.com/galderz/gradle-frege-plugin. +This is the official Gradle plugin to compile Frege projects (https://github.com/Frege/frege). See the example project, https://github.com/mperry/frege-gradle-example, for how to use this plugin. -See the example project, https://github.com/mperry/gradle-frege-example, for how to use this plugin. +With the 0.3 release we experimented with _github releases_ and http://jitpack.io. There seems to be access issues to the 0.3 release, please use the 0.4-SNAPSHOT snapshot release. -With the 0.3 release we experimented with _github releases_ and http://jitpack.io. - -.How to refer to the 0.3 release [source, groovy] ---- buildscript { // make the frege plugin available in our build repositories { mavenLocal() // if you have the plugin installed locally, this is enough maven { - url = "https://jitpack.io" + url "https://oss.sonatype.org/content/groups/public" } } dependencies { - classpath 'com.github.frege:frege-gradle-plugin:release-0.3' + classpath 'org.frege-lang:frege-gradle-plugin:0.4-SNAPSHOT' } } ---- |