Initial commit
This commit is contained in:
commit
a3503e3e5c
73 changed files with 1348 additions and 0 deletions
23
core/build.gradle
Normal file
23
core/build.gradle
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
apply plugin: "java"
|
||||
|
||||
sourceCompatibility = 1.7
|
||||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
java.srcDirs = [ "src/" ]
|
||||
}
|
||||
test {
|
||||
java.srcDirs = ["test/"]
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
|
||||
testImplementation "org.junit.platform:junit-platform-runner:1.5.2"
|
||||
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue