-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (35 loc) · 1.16 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'newrelic-api-client-java'
version = '0.1.0'
}
repositories {
mavenCentral()
maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'org.springframework.boot:spring-boot-starter:2.0.0.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-webflux:2.0.0.RELEASE'
compile 'com.squareup.okhttp3:okhttp:3.9.0'
compile "com.opencsv:opencsv:4.0"
compile 'com.typesafe:config:1.0.2'
compile group: 'org.json', name: 'json', version: '20180130'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.4'
compile 'com.newrelic.agent.java:newrelic-api:3.46.0'
// Linux ONLY!
// http://netty.io/wiki/native-transports.html
compile 'io.netty:netty-transport-native-epoll:4.1.22.Final'
compile 'io.netty:netty-transport-native-unix-common:4.1.22.Final'
}