mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-24 01:35:58 +07:00
5779bdaa4f
Instead of forcing reflection to depend on latest kotlin version, I have a feeling the dependency is due to older mockito depending on older reflection.
21 lines
249 B
Plaintext
21 lines
249 B
Plaintext
import com.unciv.build.BuildConfig
|
|
|
|
plugins {
|
|
id("kotlin")
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDir("src/")
|
|
}
|
|
}
|
|
|
|
eclipse.project {
|
|
name = "${BuildConfig.appName}-core"
|
|
}
|