2016-02-11 14:55:52 +00:00
|
|
|
import com.google.common.io.ByteStreams
|
2016-04-07 18:16:28 +00:00
|
|
|
|
2016-02-11 14:55:52 +00:00
|
|
|
import java.nio.file.Files
|
|
|
|
import java.nio.file.Paths
|
|
|
|
import java.nio.file.StandardCopyOption
|
|
|
|
import java.nio.file.attribute.FileTime
|
|
|
|
import java.util.zip.ZipEntry
|
|
|
|
import java.util.zip.ZipFile
|
2016-04-07 18:16:28 +00:00
|
|
|
import java.util.zip.ZipOutputStream
|
2016-02-11 14:55:52 +00:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "com.google.guava:guava:19.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: CanonicalizerPlugin
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2016-03-02 13:45:53 +00:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
2016-02-11 14:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-02-16 14:10:51 +00:00
|
|
|
compile project(':core')
|
2016-05-19 09:25:18 +00:00
|
|
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
2016-07-21 12:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
srcDir "../config/test"
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 11:11:23 +00:00
|
|
|
}
|