Skip to content

Commit 8d1bb05

Browse files
committed
chore: fix build after upgrading Antlr
1 parent 205bbd3 commit 8d1bb05

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

consumer/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies {
1919
implementation 'org.apache.commons:commons-io:1.3.2'
2020
implementation 'org.apache.commons:commons-text:1.9'
2121

22+
testImplementation project(":core:support")
2223
testImplementation "junit:junit:${project.junitVersion}"
2324
testImplementation "ch.qos.logback:logback-classic:${project.logbackVersion}"
2425
testImplementation 'org.cthul:cthul-matchers:1.1.0'

core/model/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ artifacts {
2222
dependencies {
2323
api project(":core:support")
2424
api project(":core:pactbroker")
25+
2526
implementation 'org.apache.commons:commons-collections4:4.4'
2627
implementation 'com.github.mifmif:generex:1.0.2'
2728
implementation 'javax.mail:mail:1.5.0-b01'
@@ -32,6 +33,7 @@ dependencies {
3233
implementation 'commons-beanutils:commons-beanutils:1.9.4'
3334
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
3435

36+
testImplementation project(":core:support")
3537
testImplementation "ch.qos.logback:logback-classic:${project.logbackVersion}"
3638
testImplementation "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}"
3739
testRuntimeOnly project(path: project.path, configuration: 'testJars')

core/support/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
}
2727
testImplementation "junit:junit:${project.junitVersion}"
2828

29-
antlr "org.antlr:antlr4:4.9.2"
29+
antlr "org.antlr:antlr4:4.11.1"
3030
}
3131

3232
compileJava {

0 commit comments

Comments
 (0)