-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (48 loc) · 1.46 KB
/
build.gradle
File metadata and controls
59 lines (48 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds
*/
plugins {
id 'java-library'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
maven {
url "https://repo1.maven.org/maven2/"
}
jcenter()
mavenCentral()
}
git {
implementation 'https://github.com/Leapsight/jawampa.git', {
tag '0.6.0'
}
}
dependencies {
// Vertx dependency
compile 'io.vertx:vertx-core:4.0.0-milestone5'
compile 'io.vertx:vertx-health-check:4.0.0-milestone5'
compile 'io.vertx:vertx-micrometer-metrics:4.0.0-milestone5'
compile group: 'io.micrometer', name: 'micrometer-registry-prometheus', version: '1.3.2'
compile 'io.micrometer:micrometer-registry-jmx:1.5.5'
// Spring dependency
compile group: 'org.springframework', name: 'spring-context', version: '5.2.8.RELEASE'
// Log
compile 'org.slf4j:jcl-over-slf4j:1.7.30'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '6.4'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
compileJava {
targetCompatibility = 11
sourceCompatibility = 11
}
java {
disableAutoTargetJvm()
}
group = 'com.leapsight'
version = System.getenv('JAR_VERSION')