summaryrefslogtreecommitdiff
path: root/README.adoc
blob: 4b2b5ed22eafa9a139801a463992038962a5b974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
= 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.

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.

.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"
        }
    }
    dependencies {
        classpath 'com.github.frege:frege-gradle-plugin:release-0.3'
    }
}
----


To locally install this plugin use

    gradlew clean install


NOTE: There is no need to install gradle or anything else beside a recent Java version.
      It is all self-installing.

= Continuous Integration

The Travis CI build of this repository is at https://travis-ci.org/Frege/frege-gradle-plugin/                              .

The snapshot builds are automatically deployed to Sonatype at https://oss.sonatype.org/content/groups/public/org/frege-lang/frege-gradle-plugin/.