-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathbuild.gradle
37 lines (30 loc) · 946 Bytes
/
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
plugins {
id 'application'
id "com.github.ben-manes.versions" version "0.21.0"
id "org.nosphere.apache.rat" version "0.7.0"
id 'net.researchgate.release' version '2.8.0'
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
}
group = 'com.github.chrishantha.jfr'
version = '0.0.4-SNAPSHOT'
description = "Create Flame Graphs using Java Flight Recordings"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
}
dependencies {
implementation "com.beust:jcommander:1.81"
implementation "com.google.code.gson:gson:2.8.8"
testImplementation "junit:junit:4.13.2"
}
rat {
excludes = ["**/.gradle/**", "**/gradle/**", "**/*.gradle", "**/gradlew*", "**/build/**", "**/.idea/**", "**/*.iml",
"**/*.md", ".travis.yml"]
}
mainClassName = 'com.github.chrishantha.jfr.flamegraph.output.Application'