-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
862 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import ktx.* | ||
|
||
dependencies { | ||
testImplementation("com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import ktx.* | ||
|
||
dependencies { | ||
testImplementation("com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import ktx.* | ||
|
||
val junitPlatformVersion: String by project | ||
|
||
dependencies { | ||
compileOnly("com.badlogicgames.ashley:ashley:$ashleyVersion") | ||
|
||
testImplementation("org.jetbrains.spek:spek-api:$spekVersion") | ||
testImplementation("org.assertj:assertj-core:$assertjVersion") | ||
|
||
testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junitPlatformVersion") | ||
testRuntimeOnly("org.jetbrains.spek:spek-junit-platform-engine:$spekVersion") | ||
} | ||
|
||
tasks.withType<Test> { | ||
testLogging { | ||
showExceptions = true | ||
events("FAILED", "SKIPPED") | ||
} | ||
|
||
useJUnitPlatform { | ||
includeEngines("spek") | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import ktx.* | ||
|
||
val async = project(":async") | ||
|
||
dependencies { | ||
api(project(":assets")) | ||
api(async) | ||
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion") | ||
|
||
testImplementation(async.sourceSets.test.get().output) | ||
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinCoroutinesVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | ||
import ktx.* | ||
|
||
tasks.withType<KotlinCompile> { | ||
kotlinOptions { | ||
freeCompilerArgs += listOf( | ||
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi", | ||
"-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi" | ||
) | ||
} | ||
} | ||
|
||
dependencies { | ||
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion") | ||
|
||
testImplementation("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") | ||
testImplementation("me.alexpanov:free-port-finder:1.0") // Version unlikely to change, not parametrized. | ||
testImplementation("com.github.tomakehurst:wiremock:$wireMockVersion") | ||
testImplementation("org.slf4j:slf4j-nop:$slf4jVersion") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import ktx.* | ||
|
||
dependencies { | ||
compileOnly("com.badlogicgames.gdx:gdx-box2d:$gdxVersion") | ||
testImplementation("com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop") | ||
} |
Oops, something went wrong.