forked from playn/playn-gradle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
135 lines (108 loc) · 2.81 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
buildscript {
// Defined here so that we can use it in the buildscript block
project.ext.roboVMVersion = '2.3.12'
repositories {
mavenLocal()
mavenCentral()
jcenter()
google()
}
dependencies {
classpath "org.wisepersist:gwt-gradle-plugin:1.0.6"
classpath "com.android.tools.build:gradle:4.0.0"
classpath "com.mobidevelop.robovm:robovm-gradle-plugin:$roboVMVersion"
}
}
allprojects {
version = "1.0"
repositories {
mavenLocal()
mavenCentral()
google()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
ext {
appName = "playn-gradle-template"
playnVersion = "2.0.6"
gwtVersion = "2.8.0"
}
}
project(":assets") {
apply plugin: "java"
}
project(":core") {
apply plugin: "java"
sourceCompatibility = 1.7
dependencies {
implementation "io.playn:playn-scene:$playnVersion"
}
}
project(":java") {
apply plugin: "java"
sourceCompatibility = 1.7
dependencies {
implementation project(":core")
implementation project(":assets")
implementation "io.playn:playn-java-lwjgl:$playnVersion"
}
project.ext.mainClassName = "io.playn.template.java.TemplateGameJava"
}
project(":android") {
apply plugin: "android"
sourceCompatibility = 1.7
dependencies {
implementation project(":core")
implementation "io.playn:playn-android:$playnVersion"
}
android {
buildToolsVersion "28.0.0"
compileSdkVersion 28
defaultConfig {
applicationId "io.playn.template"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
}
}
project(":robovm") {
apply plugin: "java"
apply plugin: "robovm"
sourceCompatibility = 1.7
dependencies {
implementation project(":core")
implementation "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
implementation "com.mobidevelop.robovm:robovm-objc:$roboVMVersion"
implementation "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
implementation "io.playn:playn-robovm:$playnVersion"
}
ext {
mainClassName = "io.playn.template.robovm.TemplateGameRoboVM"
}
}
project(":html") {
apply plugin: "gwt"
apply plugin: "war"
sourceCompatibility = 1.7
dependencies {
implementation project(":assets")
implementation project(":core")
implementation "io.playn:playn-html:$playnVersion"
implementation "io.playn:playn-html:$playnVersion:sources"
implementation "io.playn:playn-scene:$playnVersion:sources"
}
gwt {
gwtVersion="$project.gwtVersion"
maxHeapSize="1G"
minHeapSize="512M"
modules "io.playn.template.TemplateGame"
devModules "io.playn.template.TemplateGame"
// devModules "samskivert.testola.GdxDefinitionSuperdev"
// project.webAppDirName = "webapp"
compiler {
strict = true
disableCastChecking = true
}
}
}