Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.19 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         mavenLocal()
  4.         mavenCentral()
  5.         maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
  6.     }
  7.     dependencies {
  8.     }
  9. }
  10.  
  11. allprojects {
  12.     apply plugin: "eclipse"
  13.     apply plugin: "idea"
  14.  
  15.     version = '1.0'
  16.     ext {
  17.         visuiVersion = '1.4.5-SNAPSHOT'
  18.         gdxVersion = '1.9.8'
  19.         roboVMVersion = '2.1.0'
  20.         box2DLightsVersion = '1.4'
  21.         ashleyVersion = '1.7.0'
  22.         aiVersion = '1.8.0'
  23.         visuiVersion = '1.2.4'
  24.     }
  25.  
  26.     repositories {
  27.         mavenLocal()
  28.         mavenCentral()
  29.         maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
  30.         maven { url "https://oss.sonatype.org/content/repositories/releases/" }
  31.     }
  32. }
  33.  
  34. project(":desktop") {
  35.     apply plugin: "java"
  36.  
  37.     dependencies {
  38.         implementation project(":core")
  39.         implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
  40.         implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
  41.     }
  42. }
  43.  
  44. project(":core") {
  45.     apply plugin: "java"
  46.  
  47.     dependencies {
  48.         implementation group: 'de.ruedigermoeller', name: 'fst', version: '2.57'
  49.         implementation group: 'com.esotericsoftware', name: 'kryonet', version: '2.22.0-RC1'
  50.         implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
  51.         implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
  52.         implementation group: 'com.badlogicgames.gdx', name: 'gdx-backend-lwjgl3', version: '1.9.6'
  53.         implementation "com.kotcrab.vis:vis-ui:$visuiVersion"
  54.         implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.0'
  55.         implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8.2'
  56.         implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8.2'
  57.         implementation group: 'org.apache.commons', name: 'commons-email', version: '1.5'
  58.         implementation group: 'org.whitesource', name: 'pecoff4j', version: '0.0.2.1'
  59.         implementation 'com.google.guava:guava:23.0'
  60.         implementation files('opencv-331.jar')
  61.     }
  62. }
  63.  
  64. tasks.eclipse.doLast {
  65.     delete ".project"
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement