-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
66 lines (50 loc) · 1.21 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
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "com.prezi.pride:gradle-pride-plugin:0.11"
}
}
repositories {
jcenter()
}
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'pride'
group = "io.netlibs.psql"
version = '1.0-SNAPSHOT'
task wrapper(type: Wrapper) {
gradleVersion = '2.8'
}
configurations {
provided
}
sourceSets {
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
dependencies {
compile 'org.projectlombok:lombok:1.16.6'
compile 'io.netty:netty-all:4.1.0.CR2'
compile 'org.slf4j:slf4j-api:1.7.16'
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.6.2'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.2.0'
testCompile 'ch.qos.logback:logback-classic:1.1.3'
testCompile 'org.slf4j:jul-to-slf4j:1.7.12'
testCompile 'com.jive.oss.junit:junit-docker:1.0-SNAPSHOT'
}
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}