blob: 6e3ba935b26765cefe325f4546690cea7cd11beb (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
classpath "com.github.mperry:frege-gradle-release-plugin:0.1"
}
}
apply plugin: "groovy"
apply plugin: "maven"
apply plugin: "signing"
apply plugin: 'io.codearte.nexus-staging'
apply plugin: 'frege-release'
defaultTasks "build"
sourceCompatibility = 1.7
targetCompatibility = 1.7
ext {
baseVersion = "0.4.2"
isSnapshot = true
snapshotAppendix = "-SNAPSHOT"
projectVersion = baseVersion + (isSnapshot ? snapshotAppendix : "")
fregeBaseVersion = "3.22.367"
fregeClassifier = "-g2737683"
fregeVersion = "$fregeBaseVersion$fregeClassifier"
}
apply from: "gradle/sonatype.gradle"
repositories {
mavenLocal()
maven {
url = sonatypeRepositoryUrl
}
mavenCentral()
}
version = projectVersion
group = groupName
dependencies {
compile "org.frege-lang:frege:$fregeVersion"
compile "org.frege-lang:frege-repl-core:1.2"
compile "org.frege-lang:frege-native-gen:1.3"
compile gradleApi()
compile localGroovy()
}
nexusStaging {
packageGroup = groupName
stagingProfileId = "a622b6773bea07"
}
|