This repository was archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
106 lines (89 loc) · 2.55 KB
/
Copy pathbuild.gradle
File metadata and controls
106 lines (89 loc) · 2.55 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
group 'com.uni-tuebingen.de.it.eager.eager-gui'
version '1.92.38'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
}
}
allprojects {
repositories {
jcenter()
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'jacoco'
}
sourceCompatibility = 1.8
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
test {
java {
srcDir 'test'
}
}
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile 'com.google.guava:guava:19.0'
compile group: 'com.thoughtworks.xstream', name: 'xstream', version: '1.4.9'
compile group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
compile 'com.uni-tuebingen.de.it.eager:EAGER-lib:+'
compile 'junit:junit:4.12'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes("Implementation-Title": "EAGER",
"Implementation-Version": version, "main-Class": "main.EAGER")
}
doFirst {
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
}
}
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'com.uni-tuebingen.de.it.eager'
artifactId 'EAGER-GUI'
}
}
}
jacocoTestReport {
reports {
xml.enabled true
}
}
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_API_KEY')
publications = ['MyPublication']
publish = true
override = true
pkg {
repo = 'EAGER'
name = 'EAGER-GUI'
licenses = ['GPL-3.0']
vcsUrl = "https://github.com/apeltzer/EAGER-GUI"
version {
name = project.version
desc = 'This is the main project for the EAGER project, with links to some tutorials, subsequent tools and HowTos and a FAQ which will be updated once we get feedback from end users. Please use the different bug trackers for other tools than the actual pipeline, e.g. the Clip&Merge issue tracking if you encounter issues with the Clip&Merge application.'
released = new Date()
vcsTag = project.version
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
}