-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
85 lines (67 loc) · 2.17 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
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
// this block is necessary to make enforcedPlatform work for Quarkus plugin available
// only locally (snapshot) that is also importing the Quarkus BOM
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath "io.quarkus:quarkus-gradle-plugin:${quarkusPluginVersion}"
}
}
plugins {
id 'java'
}
apply plugin: 'io.quarkus'
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url 'https://dl.bintray.com/senx/maven'
}
maven {
url 'https://dl.bintray.com/hbs/maven'
}
}
final excludedModules = [
[ 'javax.activation', 'javax.activation-api' ],
[ 'javax.enterprise', 'cdi-api' ],
[ 'javax.servlet', 'servlet-api' ],
[ 'javax.inject', 'javax.inject' ],
[ 'javax.xml.bind', 'jaxb-api' ],
]
dependencies {
implementation 'io.warp10:warpscript:+'
implementation 'net.java.dev.jna:jna:+'
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-resteasy'
implementation group: 'org.influxdb', name: 'influxdb-java', version: '2.7'
// runtimeOnly 'javax.activation:javax.activation-api'
// runtimeOnly 'javax.enterprise:cdi-api'
// runtimeOnly 'javax.inject:javax.inject'
// runtimeOnly 'javax.servlet:servlet-api'
// runtimeOnly 'javax.xml.bind:jaxb-api'
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
testCompile 'io.warp10:warpscript:+'
nativeTestImplementation 'io.quarkus:quarkus-junit5'
nativeTestImplementation 'io.rest-assured:rest-assured'
}
task buildUberJar(type: io.quarkus.gradle.tasks.QuarkusBuild, dependsOn: build) {
uberJar = true
}
group 'io.ovh.tsl'
version '0.0.1-SNAPSHOT'
compileJava {
options.compilerArgs << '-parameters'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
configurations {
[all, excludedModules].combinations { config, moduleToExclude ->
config.exclude group: moduleToExclude[0], module: moduleToExclude[1]
}
}