Skip to content

Instantly share code, notes, and snippets.

@uberry
Created July 21, 2016 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uberry/9f1f0a88712e488e8657dda66c95f110 to your computer and use it in GitHub Desktop.
Save uberry/9f1f0a88712e488e8657dda66c95f110 to your computer and use it in GitHub Desktop.
MissionFX Gradle file
buildscript {
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b10'
classpath 'me.tatarka:gradle-retrolambda:2.5.0'
}
}
apply plugin: 'org.javafxports.jfxmobile'
apply plugin: 'me.tatarka.retrolambda'
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases/'
url 'http://dl.bintray.com/jerady/maven'
}
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
compile 'eu.hansolo:colors:1.+'
compile 'eu.hansolo:Medusa:4.+'
compile 'de.jensd:fontawesomefx-commons:8.12'
compile 'de.jensd:fontawesomefx-controls:8.12'
compile 'de.jensd:fontawesomefx-fontawesome:4.6.3'
compile 'de.jensd:fontawesomefx-materialdesignfont: 1.6.50'
compile 'de.jensd:fontawesomefx-materialicons:2.2.0'
compile 'de.jensd:fontawesomefx-octicons:4.3.0'
compile 'de.jensd:fontawesomefx-icons525:2.6.0'
compile 'de.jensd:fontawesomefx-weathericons:2.0-3'
compile 'de.jensd:shichimifx:1.0.5'
compile 'de.dimaki:refuel:0.0.5'
compile 'org.controlsfx:controlsfx:8.40.10'
compile 'org.apache.httpcomponents:httpclient:4.3.6'
compile "com.gluonhq:charm-down-common:0.0.1"
iosCompile "org.robovm:robovm-cocoatouch:1.5.0"
compile "com.gluonhq:charm:0.0.1-b3"
desktopRuntime "com.gluonhq:charm-desktop:0.0.1-b3"
androidRuntime "com.gluonhq:charm-android:0.0.1-b3"
iosRuntime "com.gluonhq:charm-ios:0.0.1-b3"
}
mainClassName = 'com.hexagonrobotics.MissionFX'
jfxmobile {
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'de.jensd.**.*',
'com.gluonhq.charm.down.**.*']
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment