-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (43 loc) · 1.11 KB
/
build.gradle
File metadata and controls
49 lines (43 loc) · 1.11 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
repositories {
mavenLocal()
maven {
url 'http://repo.maven.apache.org/maven2'
}
maven {
url 'https://jitpack.io'
}
maven {
url 'http://jcenter.bintray.com'
}
}
sourceSets {
main.kotlin.srcDirs += 'src/main/myKotlin'
main.java.srcDirs += 'src/main/myJava'
}
dependencies {
compile 'org.keycloak:keycloak-admin-client:4.8.3.Final'
compile 'org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:1.0.1.Final'
compile 'org.jboss.resteasy:resteasy-client:3.6.1.Final'
compile 'org.jboss.resteasy:resteasy-jackson2-provider:3.6.1.Final'
compile 'org.slf4j:slf4j-simple:1.7.25'
compile 'io.javalin:javalin:2.7.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'khttp:khttp:0.1.0'
}
group = 'eu.ditas.tub'
version = '1.0.0'
sourceCompatibility = '1.8'
distTar {
archiveName = 'KeycloakAdminClient.tar'
}
application {
mainClassName = 'eu.ditas.tub.Main'
}