aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle12
1 files changed, 10 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 46699f6..8ae12bc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,19 +5,25 @@ apply plugin: "signing"
defaultTasks "build"
ext {
- baseVersion = "0.2"
+ baseVersion = "0.1"
isSnapshot = true
snapshotAppendix = "-SNAPSHOT"
pluginVersion = baseVersion + (isSnapshot ? snapshotAppendix : "")
- fregeVersion = "3.22.367"
+ fregeBaseVersion = "3.22.367"
fregeClassifier = "-g2737683"
+ fregeVersion = "$fregeBaseVersion$fregeClassifier"
+ sonatypeUrl = "https://oss.sonatype.org/content/groups/public"
}
apply from: "gradle/sonatype.gradle"
repositories {
mavenCentral()
+ mavenLocal()
+ maven {
+ url = sonatypeUrl
+ }
}
version = pluginVersion
@@ -25,6 +31,8 @@ group = groupName
dependencies {
compile "com.theoryinpractise.frege:frege:$fregeVersion$fregeClassifier"
+ compile "frege:frege-repl-core:1.1.1-SNAPSHOT"
+ compile "com.github.mperry.frege:native-gen:0.1-SNAPSHOT"
compile gradleApi()
compile localGroovy()