-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
43 lines (34 loc) · 1.39 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
plugins {
// id 'com.github.hierynomus.license' version '0.13.1'
id 'maven-publish'
id 'net.nemerosa.versioning' version '2.4.0'
id 'com.jfrog.bintray' version '1.7.2'
id 'com.github.ben-manes.versions' version '0.13.0'
}
apply plugin: 'java'
apply from: 'gradle/publishing.gradle'
sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
failOnError = false
}
task wrapper(type: Wrapper, description: 'Creates and deploys the Gradle wrapper to the current directory.') {
gradleVersion = '4.0'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.10'
// ug shell api
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2017.1.0'
compile group: 'eu.mihosoft.ugshell.vugshell', name: 'vugshell', version: '2017.1.0', classifier: 'sources'
// binary ug distribution
compile group: 'eu.mihosoft.ugshell.ugdist', name: 'ugshell-dist', version: '2017.1.0'
// jcsg library
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6'
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6', classifier: 'sources'
compile group: 'eu.mihosoft.vrl.jcsg', name: 'jcsg', version: '0.5.6', classifier: 'javadoc'
}