-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
68 lines (60 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
buildscript {
repositories {
jcenter()
}
dependencies {
}
}
plugins {
id 'com.jfrog.bintray' version '1.3.1'
}
apply plugin: 'java'
group = 'org.qualog'
version ='3.0.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
pkgName = 'qualog'
pkgDesc = 'Quasi Logging'
githubRepo = 'github.com/jpace/qualog'
pkgLicense = 'MIT'
pkgLicenseUrl = 'https://mit-license.org/'
devInfo = {
id 'jpace'
name 'Jeff Pace'
url 'https://github.com/jpace'
email 'jeugenepace@gmail'
}
bintrayUser = System.getenv('BINTRAY_USER')
bintrayKey = System.getenv('BINTRAY_API_KEY')
mavenUserToken = System.getenv('MAVEN_USER_TOKEN')
mavenUserPass = System.getenv('MAVEN_USER_PASS')
deployDryRun = false
}
apply from: 'deploy.gradle'
dependencies {
compile 'org.incava:ijdk:3.8.1'
testCompile 'org.incava:attest:[0.0.4,)'
testCompile 'pl.pragmatists:JUnitParams:1.0.6'
testCompile('junit:junit:[4.13.1,') {
exclude group: 'org.hamcrest'
}
testCompile('org.mockito:mockito-core:1.10.19') {
exclude group: 'org.hamcrest'
}
testCompile 'org.hamcrest:hamcrest-library:1.3'
}
allprojects {
tasks.withType(JavaCompile).all { JavaCompile compile ->
compile.options.debug = true
compile.options.compilerArgs = ['-Xlint:all']
}
}
test {
excludes = [ '**/test/TestCaseExt*' ]
testLogging {
exceptionFormat = "full"
}
scanForTestClasses = true
}
logging.captureStandardOutput LogLevel.ERROR