File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
22 id ' java'
33}
44
5+ apply plugin : ' java'
56group ' org.ocavadenti'
67version ' 1.0'
78
@@ -11,12 +12,11 @@ repositories {
1112
1213dependencies {
1314 implementation ' org.antlr:antlr4:4.9.3'
14- implementation ' org.mockito:mockito-core:4.3.1'
15- implementation ' org.assertj:assertj-core:3.22.0'
1615 testImplementation ' org.junit.jupiter:junit-jupiter-params:5.8.2'
1716 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2'
17+ testImplementation ' org.mockito:mockito-core:4.3.1'
18+ testImplementation ' org.assertj:assertj-core:3.22.0'
1819 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2'
19- implementation ' com.fasterxml.jackson.core:jackson-databind:2.13.1'
2020}
2121
2222test {
3232 }
3333
3434 from {
35- configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
35+ configurations. runtimeClasspath. collect {
36+ it. isDirectory() ? it : zipTree(it) }
3637 }
3738}
You can’t perform that action at this time.
0 commit comments