Skip to content

Commit 236cf1c

Browse files
update gradle build
1 parent 35ace7d commit 236cf1c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id 'java'
33
}
44

5+
apply plugin: 'java'
56
group 'org.ocavadenti'
67
version '1.0'
78

@@ -11,12 +12,11 @@ repositories {
1112

1213
dependencies {
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

2222
test {
@@ -32,6 +32,7 @@ jar {
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
}

0 commit comments

Comments
 (0)