forked from chewiebug/GCViewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (29 loc) · 881 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
38
39
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply from: "${rootDir}/gradle/codequality.gradle"
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}
mainClassName = 'com.tagtraum.perf.gcviewer.GCViewer'
group = 'com.github.chewiebug'
version = '1.34'
description = """GCViewer"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
configurations.all {
}
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version:'4.11'
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version:'1.9.5'
}
jar {
manifest {
attributes 'Main-Class': 'com.tagtraum.perf.gcviewer.GCViewer'
}
}