mirror of
https://github.com/ParkerTenBroeck/coroutines.git
synced 2026-06-07 05:08:51 -04:00
migrated to gradle
This commit is contained in:
parent
0dd6fb237d
commit
ecb18b417e
43 changed files with 619 additions and 177 deletions
21
app/build.gradle.kts
Normal file
21
app/build.gradle.kts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
plugins {
|
||||
application
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib"))
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(24)
|
||||
}
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "demo.Main"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue