forked from MrStahlfelge/gdx-websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (48 loc) · 1.33 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
ext {
GROUPID = 'com.github.MrStahlfelge.gdx-websockets'
VERSION = '1.9.10.3-SNAPSHOT'
}
buildscript {
repositories {
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
classpath "org.wisepersist:gwt-gradle-plugin:1.0.13"
classpath "com.android.tools.build:gradle:3.6.3"
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.12'
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "maven"
ext {
minSdk = 16
targetSdk = 29
compileSdk = 29
buildTools = '29.0.3'
appName = 'gdx-websockets'
gdxVersion = '1.9.10'
roboVMVersion = '2.3.12'
nvVersion = '2.10'
}
repositories {
google()
mavenCentral()
mavenLocal()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://jitpack.io" }
}
group = GROUPID
version = VERSION
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Test) {
systemProperty 'file.encoding', 'UTF-8'
}
}