-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (40 loc) · 970 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
buildscript {
// Dependency versions
ext.badassRuntimeVersion="1.13.1"
ext.cliktVersion="5.0.1"
ext.gdxVersion="1.12.1"
ext.jUnitPlatformVersion="1.11.3"
ext.jUnitVersion="5.11.3"
ext.klaxonVersion="5.6"
ext.kotlinCsvVersion="1.10.0"
ext.kotlinVersion="2.0.21"
ext.kotlinxCoroutinesVersion="1.9.0"
ext.ktxVersion="1.12.1-rc2"
ext.textraTypistVersion="1.1.0"
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
apply plugin: 'eclipse'
apply plugin: 'idea'
}
configure(subprojects) {
apply plugin: 'java-library'
apply plugin: 'kotlin'
}
subprojects {
version = '1.0.1'
ext.appName = 'HybridSim'
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
gradlePluginPortal()
}
}
eclipse.project.name = 'HybridSim' + '-parent'