-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (33 loc) · 1 KB
/
build.gradle
File metadata and controls
38 lines (33 loc) · 1 KB
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
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.11'
}
}
apply plugin: 'java'
apply plugin: 'robovm'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
ext {
roboVMVersion = "2.3.11"
altpodsVersion = "1.14.0-SNAPSHOT"
}
robovm {
}
dependencies {
compile "com.mobidevelop.robovm:robovm-rt:${roboVMVersion}"
compile "com.mobidevelop.robovm:robovm-cocoatouch:${roboVMVersion}"
compile "io.github.dkimitsa.robovm:robopods-appcenter-core-ios:$altpodsVersion"
compile "io.github.dkimitsa.robovm:robopods-appcenter-crashes-ios:$altpodsVersion"
compile "io.github.dkimitsa.robovm:robopods-appcenter-analytics-ios:$altpodsVersion"
testCompile "junit:junit:4.12"
}