-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (43 loc) · 1.24 KB
/
build.gradle
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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}
plugins {
id 'java'
id 'groovy'
id 'pl.allegro.tech.build.axion-release' version '1.7.1'
}
scmVersion.tag.prefix = rootProject.name
group 'pl.edu.icm.unity'
project.version = scmVersion.version
apply plugin: 'com.novoda.bintray-release'
dependencies {
def unityVersion = '2.1.0'
compile "pl.edu.icm.unity:unity-server-engine:${unityVersion}",
"pl.edu.icm.unity:unity-server-unicore:${unityVersion}"
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
}
repositories {
mavenCentral()
maven { url 'http://unicore-dev.zam.kfa-juelich.de/maven' }
maven { url 'http://maven.vaadin.com/vaadin-addons' }
}
publish {
userOrg = 'unicore-life'
groupId = project.group
artifactId = project.name
publishVersion = project.version
uploadName = rootProject.name
desc = 'Unity initializers with Grid contents.'
website = "http://github.com/unicore-life/${rootProject.name}"
}
sourceCompatibility = JavaVersion.VERSION_1_8
test.testLogging.showStandardStreams = true
task wrapper(type: Wrapper) {
gradleVersion = '4.1'
}