@@ -14,13 +14,14 @@ plugins {
14
14
}
15
15
16
16
group ' com.jspcore'
17
- version ' 0.4.6 -SNAPSHOT'
17
+ version ' 0.4.7 -SNAPSHOT'
18
18
description = ' A testing library for assert logging messages.'
19
19
20
20
apply plugin : ' idea'
21
21
apply plugin : ' groovy'
22
22
apply plugin : ' maven'
23
23
apply plugin : ' maven-publish'
24
+ apply plugin : ' java-library'
24
25
25
26
sourceCompatibility = 1.8
26
27
targetCompatibility = 1.8
@@ -32,19 +33,20 @@ repositories {
32
33
ext {
33
34
junit5_version = " 5.2.0"
34
35
}
36
+
35
37
dependencies {
36
- compile " org.slf4j:slf4j-api:1.7.22 "
37
- compile " ch.qos.logback:logback-classic :1.1.8 "
38
- compile " org.hamcrest:hamcrest-library :1.3 "
39
- compile " com.jayway. awaitility:awaitility:1.7.0 "
40
- compile " junit:junit:4.12"
41
- compile " org.junit.jupiter:junit-jupiter-api:$junit5_version "
42
- compile ' org.spockframework:spock-core:1.1 -groovy-2.4 '
43
-
44
- testCompile " org.assertj:assertj-core:3.6.1"
45
- testRuntime " org.junit.jupiter:junit-jupiter-engine:$junit5_version "
46
- testCompile " org.junit.jupiter:junit-jupiter-params:$junit5_version "
47
- testRuntime " org.junit.vintage:junit-vintage-engine:$junit5_version "
38
+ api " org.hamcrest:hamcrest-library:2.1 "
39
+ implementation " org.slf4j:slf4j-api :1.7.22 "
40
+ implementation " ch.qos.logback:logback-classic :1.1.8 "
41
+ implementation " org. awaitility:awaitility:3.1.6 "
42
+ implementation " junit:junit:4.12"
43
+ implementation " org.junit.jupiter:junit-jupiter-api:$junit5_version "
44
+ implementation ' org.spockframework:spock-core:1.3 -groovy-2.5 '
45
+
46
+ testImplementation " org.assertj:assertj-core:3.6.1"
47
+ testImplementation " org.junit.jupiter:junit-jupiter-engine:$junit5_version "
48
+ testImplementation " org.junit.jupiter:junit-jupiter-params:$junit5_version "
49
+ testImplementation " org.junit.vintage:junit-vintage-engine:$junit5_version "
48
50
}
49
51
50
52
test {
@@ -98,8 +100,8 @@ task sourceJar(type: Jar) {
98
100
from sourceSets. main. allJava
99
101
}
100
102
101
- task wrapper ( type : Wrapper ) {
102
- gradleVersion = ' 4.8 .1'
103
+ wrapper {
104
+ gradleVersion = ' 5.2 .1'
103
105
}
104
106
105
107
publishing {
@@ -108,7 +110,7 @@ publishing {
108
110
from components. java
109
111
groupId ' com.jspcore'
110
112
artifactId ' logcapture'
111
- version ' 0.4.6 '
113
+ version ' 0.4.7 '
112
114
113
115
artifacts {
114
116
artifact sourceJar {
@@ -142,8 +144,8 @@ bintray {
142
144
licenses = [' MIT' ]
143
145
vcsUrl = ' https://github.com/mustaine/logcapture.git'
144
146
version {
145
- name = ' 0.4.6 '
146
- vcsTag = ' 0.4.6 '
147
+ name = ' 0.4.7 '
148
+ vcsTag = ' 0.4.7 '
147
149
released = new Date ()
148
150
}
149
151
}
0 commit comments