summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle31
1 files changed, 31 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..1ff2833
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,31 @@
+apply plugin: "groovy"
+apply plugin: "maven"
+apply plugin: "signing"
+
+defaultTasks "build"
+
+ext {
+ baseVersion = "0.2"
+ isSnapshot = true
+ snapshotAppendix = "-SNAPSHOT"
+ pluginVersion = baseVersion + (isSnapshot ? snapshotAppendix : "")
+
+ fregeVersion = "3.22.367"
+ fregeClassifier = "-g2737683"
+}
+
+apply from: "gradle/sonatype.gradle"
+
+repositories {
+ mavenCentral()
+}
+
+version = pluginVersion
+group = groupName
+
+dependencies {
+ compile "com.theoryinpractise.frege:frege:$fregeVersion$fregeClassifier"
+ compile gradleApi()
+ compile localGroovy()
+}
+