Skip to content

Commit

Permalink
Merge branch 'develop' into Fix-recursion-script-MUTE10_xx
Browse files Browse the repository at this point in the history
  • Loading branch information
FiorenzaBusi authored Oct 4, 2024
2 parents 9fae1b6 + 922fdfa commit 003fec0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dspfparser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
testImplementation 'junit:junit:4.13.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"

implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-cbor:$serializationVersion"
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
implementation project(":rpgJavaInterpreter-core")
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
testImplementation 'junit:junit:4.13.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
}

task javadocJar(type: Jar) {
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ FlightRecorderOptions=stackdepth=64
kotlinVersion=2.0.20
serializationVersion=1.7.3
jvmVersion=11
junitVersion=5.11.1
antlrVersion=4.13.2
reloadVersion=develop-SNAPSHOT
jarikoGroupId=io.github.smeup.jariko
jarikoVersion=develop-SNAPSHOT
13 changes: 7 additions & 6 deletions kolasu/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
//-----------------
buildscript {

ext.antlr_version = '4.7.2'
ext.antlrVersion = "${antlrVersion}"
ext.junitVersion = "${junitVersion}"

repositories {
mavenCentral()
Expand Down Expand Up @@ -33,16 +34,16 @@ repositories {
}

dependencies {
implementation "org.antlr:antlr4:$antlr_version"
implementation "org.antlr:antlr4-runtime:$antlr_version"
implementation "org.antlr:antlr4:$antlrVersion"
implementation "org.antlr:antlr4-runtime:$antlrVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
testImplementation 'junit:junit:4.13.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"

implementation 'com.fifesoft:rsyntaxtextarea:2.5.8'
implementation 'com.fifesoft:autocomplete:2.5.8'
implementation 'com.fifesoft:rsyntaxtextarea:3.5.1'
implementation 'com.fifesoft:autocomplete:3.3.1'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-cbor:$serializationVersion"

Expand Down
12 changes: 7 additions & 5 deletions rpgJavaInterpreter-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import java.text.SimpleDateFormat
buildscript {
ext.kotlinVersion = "${kotlinVersion}"
ext.jvmVersion = "${jvmVersion}"
ext.antlr_version = '4.13.2'
ext.antlrVersion = "${antlrVersion}"
ext.junitVersion = "${junitVersion}"

repositories {
mavenCentral()
Expand All @@ -41,15 +42,16 @@ buildscript {

apply plugin: 'antlr'

def antlrVersion = ext.antlr_version
def antlrVersion = ext.antlrVersion
def junitVersion = ext.junitVersion
def generatedMain = "generated-src/antlr/main"
def generatedMainFile = file(generatedMain)

def unlimitedStringTypeFlag = "jariko.features.UnlimitedStringTypeFlag"

dependencies {
antlr "org.antlr:antlr4:$antlr_version"
implementation "org.antlr:antlr4-runtime:$antlr_version"
antlr "org.antlr:antlr4:$antlrVersion"
implementation "org.antlr:antlr4-runtime:$antlrVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
Expand All @@ -76,7 +78,7 @@ dependencies {

testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation 'org.hsqldb:hsqldb:2.7.3'
testImplementation 'org.mockito.kotlin:mockito-kotlin:5.4.0'
}
Expand Down

0 comments on commit 003fec0

Please sign in to comment.