Skip to content

Commit

Permalink
add SimpleApp
Browse files Browse the repository at this point in the history
  • Loading branch information
bachish committed Jun 3, 2024
1 parent b538262 commit e2e34e9
Show file tree
Hide file tree
Showing 14 changed files with 46,792 additions and 0 deletions.
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ include("benchmarks")
include("generator")
include("test-shared")
include("examples")
include("simpleApp")
30 changes: 30 additions & 0 deletions simpleApp/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
plugins {
java
kotlin("jvm") version "1.9.20"
application
}

repositories {
mavenCentral()
maven("https://releases.usethesource.io/maven/")
}

application{
mainClass = "java8.GeneratorKt"
}

dependencies {
//benchmarks tool
testImplementation("org.jetbrains.kotlin:kotlin-test")
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.10")
//compared projects
// 1. for ucfs
implementation(project(":solver"))
implementation(project(":generator"))
implementation(project(":examples"))
// 2. for antlr
implementation("org.antlr:antlr4:4.13.1")
}


kotlin { jvmToolchain(11) }
Loading

0 comments on commit e2e34e9

Please sign in to comment.