-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
44 lines (37 loc) · 989 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
40
41
42
43
44
buildscript {
repositories {
// mavenLocal()
mavenCentral()
// jcenter()
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
gradlePluginPortal()
}
dependencies {
classpath 'org.anarres.gradle:gradle-stdproject-plugin:1.0.10'
}
}
apply plugin: 'org.anarres.stdproject'
stdproject {
}
group = "org.anarres"
apply plugin: 'org.anarres.stdmodule'
stdmodule {
description "A multithreaded implementation of GZIPOutputStream and GZIPInputStream"
author id: 'shevek', name: 'Shevek', email: '[email protected]'
license 'Apache-2.0'
}
// This can't be made Java 1.5 compatible as the
// syncFlush option on DeflaterOutputStream is only
// available in 1.7.
sourceCompatibility = 1.7
// animalsniffer {
// signature = "org.codehaus.mojo.signature:java17:+@signature"
// skip = true
// }
dependencies {
compile 'com.google.code.findbugs:annotations:3.0.1'
testCompile 'com.google.guava:guava:21.0'
}
test {
maxHeapSize = "4096m"
}