generated from Cumulocity-IoT/cumulocity-iot-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
38 lines (33 loc) · 1011 Bytes
/
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
plugins {
id 'application'
id 'java'
id 'java-library'
id 'eclipse'
id 'maven-publish'
}
jar {
archiveBaseName = 'cumulocitycorelibrary'
archiveVersion = '10.15.0-207'
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
implementation 'com.google.guava:guava:28.0-jre'
implementation 'jakarta.ws.rs:jakarta.ws.rs-api:3.0.0'
implementation 'org.glassfish.jersey.core:jersey-client:3.0.3'
implementation 'org.glassfish.jersey.containers:jersey-container-servlet:3.0.3'
implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:3.0.3'
implementation 'org.glassfish.jersey.media:jersey-media-multipart:3.0.3'
implementation 'org.glassfish.jersey.inject:jersey-hk2:3.0.3'
implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}