summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 1ff2833e9941cb8a96360a9b4478d30e013aa5c9 (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
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()
}