-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (42 loc) · 1.22 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
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.8.4'
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')
}
wrapper {
gradleVersion = '6.6'
}
repositories {
mavenCentral()
jcenter()
mavenLocal()
maven {
url 'https://dl.bintray.com/miho/JCSG/'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'eu.mihosoft.vcsg.vcsgdist', name: 'vcsg-dist', version: '0.9.3.0'
compile group: 'eu.mihosoft.vvecmath', name: 'vvecmath', version: '0.3.9'
}
//task run(type: JavaExec) {
// classpath = sourceSets.main.runtimeClasspath
// main = mainClass;
// jvmArgs = ['-Dprism.forceGPU=true', '-Dprism.verbose=true', '-Dprism.order=es2,d3d,sw']
//}
test {
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
showStandardStreams = true
}
}