This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (46 loc) · 1.61 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'commons-lang:commons-lang:2.6'
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.apache.httpcomponents:fluent-hc:4.5.13'
implementation 'commons-codec:commons-codec:1.15'
implementation 'io.dropwizard.metrics:metrics-graphite:3.2.6'
implementation 'com.typesafe:config:1.4.2'
implementation 'com.google.guava:guava:30.1.1-jre'
implementation 'com.nurkiewicz.asyncretry:asyncretry:0.0.7'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.2'
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
implementation 'net.jodah:failsafe:2.4.4'
testImplementation 'io.netty:netty-all:4.1.42.Final'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.testcontainers:testcontainers:1.16.2'
testImplementation 'io.rest-assured:rest-assured:4.3.1'
testImplementation 'org.assertj:assertj-core:3.14.0'
testImplementation 'com.jayway.awaitility:awaitility:1.7.0'
}
group = 'io.logz'
version = '0-SNAPSHOT'
description = 'jmx2graphite'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}