File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
src/main/java/io/jactl/repl Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group ' io.jactl'
8- version ' 1.2 .0'
8+ version ' 1.3 .0'
99
1010repositories {
1111 mavenLocal()
1818}
1919
2020dependencies {
21- implementation( ' io.jactl:jactl:1.2 .0' )
21+ implementation ' io.jactl:jactl:1.3 .0'
2222 implementation ' org.jline:jline:3.21.0'
2323 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.0'
2424 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.0'
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ It provides a Read-Evaluate-Print-Loop execution shell for testing simple Jactl
88## Download
99
1010You can download the Jactl REPL jar file from Maven Central using this link:
11- [ https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.2 .0/jactl-repl-1.2 .0.jar ] ( https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.2 .0/jactl-repl-1.2 .0.jar )
11+ [ https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.3 .0/jactl-repl-1.3 .0.jar ] ( https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.3 .0/jactl-repl-1.3 .0.jar )
1212
1313Since it is built as a "fat" jar it can be run standalone (see [ Running] ( #Running ) section below).
1414
@@ -18,7 +18,7 @@ Since it is built as a "fat" jar it can be run standalone (see [Running](#Runnin
1818
1919* Java 11+
2020* JLine 3.21.0
21- * Jactl 1.2 .0
21+ * Jactl 1.3 .0
2222* Gradle 8.0.2
2323
2424### Build
@@ -85,7 +85,7 @@ The main ones to remember:
8585As well as entering Jactl code at the prompt, the REPL understands a limit set of commands that all start with ` : ` .
8686For example, ` :h ` or ` :? ` will print out the help text listing the commands available:
8787```
88- $ java -jar build/libs/jactl-repl-1.2 .0-SNAPSHOT.jar
88+ $ java -jar build/libs/jactl-repl-1.3 .0-SNAPSHOT.jar
8989> :h
9090
9191Available commands:
Original file line number Diff line number Diff line change 1818package io .jactl .repl ;
1919
2020import io .jactl .*;
21- import io .jactl .Compiler ;
2221import io .jactl .runtime .RuntimeUtils ;
2322import org .jline .builtins .Completers ;
2423import org .jline .reader .EndOfFileException ;
You can’t perform that action at this time.
0 commit comments