blob: 2ce251c65eaf03dd3dd7dd12f80c424edaf11136 (
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.324"
fregeClassifier = "-g630677b"
}
apply from: "gradle/sonatype.gradle"
repositories {
mavenCentral()
}
version = pluginVersion
group = groupName
dependencies {
compile "com.theoryinpractise.frege:frege:$fregeVersion$fregeClassifier"
compile gradleApi()
compile localGroovy()
}
|