-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
82 lines (69 loc) · 2 KB
/
Copy pathbuild.gradle
File metadata and controls
82 lines (69 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'application'
id 'maven'
id 'eclipse'
}
mainClassName = 'com.ecovate.rtc.turn.TurnRest'
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
applicationName = 'turnrest'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
testCompile(
'junit:junit:4.12',
"org.threadly:litesockets-http-client:0.26",
"org.threadly:threadly-test:1.0"
)
compile (
"com.auth0:java-jwt:3.4.1",
"com.auth0:jwks-rsa:0.7.0",
"io.prometheus:simpleclient_dropwizard:0.8.1",
"io.prometheus:simpleclient_servlet:0.8.1",
"io.prometheus:simpleclient_hotspot:0.8.1",
"com.google.code.gson:gson:2.8.5",
"io.jsonwebtoken:jjwt-api:0.10.5",
"io.jsonwebtoken:jjwt-jackson:0.10.5",
"io.jsonwebtoken:jjwt-impl:0.10.5",
"io.dropwizard.metrics:metrics-core:4.0.5",
'io.dropwizard.metrics:metrics-jvm:4.0.5',
'io.dropwizard.metrics:metrics-healthchecks:4.0.5',
'io.dropwizard.metrics:metrics-json:4.0.5',
'io.dropwizard.metrics:metrics-servlets:4.0.5',
"net.sourceforge.argparse4j:argparse4j:0.8.1",
"org.slf4j:slf4j-api:1.7.21",
"org.slf4j:slf4j-simple:1.7.21",
"org.threadly:threadly:6.1",
"org.threadly:litesockets-http-server:0.27",
"org.threadly:litesockets:4.14"
)
}
test {
getReports().getJunitXml().setDestination(file("${buildDir}/reports/tests/xml"))
getReports().getHtml().setDestination(file("${buildDir}/reports/tests/html"))
setBinResultsDir(file("${buildDir}/reports/tests/bin"))
}
javadoc {
source = sourceSets.main.allJava
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PUBLIC
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
jar {
baseName "turnrest"
}
shadowJar {
archiveName "turnrest-${version}-all.jar"
}