Skip to content

Commit

Permalink
Dependency versions update, readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
uaraven committed Sep 1, 2023
1 parent da05596 commit 1e04aec
Show file tree
Hide file tree
Showing 3 changed files with 229 additions and 221 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Supports Lexer and Combined grammars.

## Using

AntlrScope is a Java application, you will need Java 11 to run it.
AntlrScope is a Java application, you will need Java 17+ to run it.
Java 17-19 is required for the build. Java 20+ isn't supported yet.

Get the latest zip archive from the [releases](https://github.com/uaraven/antlrscope/releases) unpack it somewhere
and run
Expand Down Expand Up @@ -48,4 +49,4 @@ grammar includes code in other languages, you won't be able to generate lexer/pa
the text successfully.

You can try using interpreted mode, so that all the code in the grammar
is ignored, but, obviously, this might produce results that are different from expected.
is ignored, but, obviously, this might produce results that are different from expected.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "1.8.21"
id "org.jetbrains.kotlin.jvm" version "1.9.10"
id 'org.openjfx.javafxplugin' version '0.0.14'
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'application'
}

mainClassName = 'net.ninjacat.antlrscope.AppKt'

group 'net.ninjacat'
version '0.4.7'
version '0.4.8'

repositories {
mavenCentral()
Expand All @@ -27,14 +27,14 @@ javafx {
}

ext {
graalJsVersion = '23.0.0'
graalJsVersion = '23.0.1'
graphvizJavaVersion = '0.18.1'
antlrVersion = '4.11.1'
antlrVersion = '4.13.0'
richTextFxVersion = '0.11.0'
}

dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.21'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.10'
implementation "org.antlr:antlr4:$antlrVersion"
implementation "org.antlr:antlr4-runtime:$antlrVersion"
implementation "org.fxmisc.richtext:richtextfx:$richTextFxVersion"
Expand Down
Loading

0 comments on commit 1e04aec

Please sign in to comment.