diff options
author | Dierk Koenig <dierk.koenig@canoo.com> | 2015-12-29 16:11:21 +0100 |
---|---|---|
committer | Dierk Koenig <dierk.koenig@canoo.com> | 2015-12-29 16:11:21 +0100 |
commit | 78986a6befc112541e3f4d89f9b7cacf36fde458 (patch) | |
tree | 27e603fd35ef947a2c465e7d19b6ae8ae2ad6748 /build.gradle | |
parent | edb3e94f2e2c14b6f6cd899f0fe5d8227c7f2dbd (diff) | |
download | frege-gradle-plugin-78986a6befc112541e3f4d89f9b7cacf36fde458.tar.gz frege-gradle-plugin-78986a6befc112541e3f4d89f9b7cacf36fde458.tar.bz2 frege-gradle-plugin-78986a6befc112541e3f4d89f9b7cacf36fde458.zip |
releasing version 0.6release_0.6
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index a3114ee..2a24a47 100644 --- a/build.gradle +++ b/build.gradle @@ -12,13 +12,13 @@ targetCompatibility = 1.7 ext { baseVersion = "0.6" - isSnapshot = true + isSnapshot = false snapshotAppendix = "-SNAPSHOT" projectVersion = baseVersion + (isSnapshot ? snapshotAppendix : "") projectGroup = "org.frege-lang" - fregeBaseVersion = "3.23.288" - fregeClassifier = "-gaa3af0c" + fregeBaseVersion = "3.23.401" + fregeClassifier = "-g7c45277" fregeVersion = "$fregeBaseVersion$fregeClassifier" // work around https://issues.gradle.org/browse/GRADLE-3281 @@ -58,7 +58,7 @@ repositories { dependencies { compile "$projectGroup:frege:$fregeVersion" - compile "$projectGroup:frege-repl-core:1.2" + compile "$projectGroup:frege-repl-core:1.3" compile "$projectGroup:frege-native-gen:1.3" compile "org.functionaljava:functionaljava:4.4" |