Skip to content

Commit

Permalink
Add JSON and ANTLR4 as external dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lsk567 committed Jul 19, 2023
1 parent 57eed6a commit b424572
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions org.lflang.epoch.external.dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin-version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonVersion}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4Version}</version>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
<eclipse-url>https://download.eclipse.org/releases/latest</eclipse-url>

<kotlin-version>1.6.20</kotlin-version>

<!-- JSON version used in the LF Verifier -->
<jsonVersion>20230618</jsonVersion>

<!-- ANTLR4 version used in the LF Verifier (not the one used in xtext) -->
<antlr4Version>4.7.2</antlr4Version>
</properties>

<modules>
Expand Down

0 comments on commit b424572

Please sign in to comment.