Advertisement
Guest User

Untitled

a guest
Aug 5th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. buildscript {
  2.  
  3.  
  4. repositories {
  5. mavenLocal()
  6. mavenCentral()
  7. maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
  8. jcenter()
  9. }
  10. dependencies {
  11. classpath 'org.multi-os-engine:moe-gradle:1.3.6'
  12.  
  13.  
  14. }
  15. }
  16.  
  17. allprojects {
  18. apply plugin: "eclipse"
  19. apply plugin: "idea"
  20.  
  21. version = '1.0'
  22. ext {
  23. appName = "Mandrin"
  24. gdxVersion = '1.9.6'
  25. roboVMVersion = '2.3.1'
  26. box2DLightsVersion = '1.4'
  27. ashleyVersion = '1.7.0'
  28. aiVersion = '1.8.0'
  29. }
  30.  
  31. repositories {
  32. mavenLocal()
  33. mavenCentral()
  34. maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
  35. maven { url "https://oss.sonatype.org/content/repositories/releases/" }
  36. }
  37. }
  38.  
  39. project(":desktop") {
  40. apply plugin: "java"
  41.  
  42.  
  43. dependencies {
  44. compile project(":core")
  45. compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
  46. compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
  47. compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
  48.  
  49. }
  50. }
  51.  
  52. project(":core") {
  53. apply plugin: "java"
  54.  
  55.  
  56. dependencies {
  57. compile "com.badlogicgames.gdx:gdx:$gdxVersion"
  58. compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  59. compile "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"
  60.  
  61. }
  62. }
  63.  
  64. project(":ios-moe") {
  65. apply plugin: "moe"
  66.  
  67. configurations { natives }
  68.  
  69. dependencies {
  70. compile project(":core")
  71. compile "com.badlogicgames.gdx:gdx-backend-moe:$gdxVersion"
  72. natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
  73. natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios"
  74.  
  75. }
  76. }
  77.  
  78. tasks.eclipse.doLast {
  79. delete ".project"
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement