Skip to content

Commit

Permalink
Merge pull request #1213 from Sanne/ANTLR_Kogito
Browse files Browse the repository at this point in the history
Enforce previous version of ANTLR for Kogito quickstarts
  • Loading branch information
Sanne authored Nov 25, 2022
2 parents 699310d + e72a683 commit efd28c1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kogito-pmml-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
</properties>
<dependencyManagement>
<dependencies>
<!-- Temporary workaround for this specific quickstart: Quarkus and Kogito need to upgrade to ANTLR 4.10,
we need to keep this particular quickstart on 4.9.2 for a while longer to avoid a deadlock in the migration process -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.9.2</version>
</dependency>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>${quarkus.platform.artifact-id}</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions kogito-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
</properties>
<dependencyManagement>
<dependencies>
<!-- Temporary workaround for this specific quickstart: Quarkus and Kogito need to upgrade to ANTLR 4.10,
we need to keep this particular quickstart on 4.9.2 for a while longer to avoid a deadlock in the migration process -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.9.2</version>
</dependency>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>${quarkus.platform.artifact-id}</artifactId>
Expand Down

0 comments on commit efd28c1

Please sign in to comment.