-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
35 lines (28 loc) · 872 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
apply plugin: 'java'
apply plugin: 'me.tatarka.retrolambda'
sourceCompatibility = 1.8
version = '2.0.3-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.2.4'
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'org.apache.commons:commons-lang3:3.0'
compile 'net.sourceforge.streamsupport:streamsupport:1.4.1'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'org.hamcrest:hamcrest-library:1.3'
}
// http://zserge.com/blog/gradle-maven-publish.html
// export JAVA6_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/
// ./gradlew uploadArchives
// https://oss.sonatype.org/#stagingRepositories
// apply from: 'maven-push.gradle'