123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- buildscript {
-
- repositories {
- mavenLocal()
- mavenCentral()
- gradlePluginPortal()
- maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
- google()
- }
- dependencies {
- classpath 'org.wisepersist:gwt-gradle-plugin:1.0.13'
- classpath 'org.gretty:gretty:3.0.2'
- classpath 'com.android.tools.build:gradle:3.5.4'
- classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.12'
-
- }
- }
- allprojects {
- apply plugin: "eclipse"
- version = '1.0'
- ext {
- appName = "pjl-kursovaya"
- gdxVersion = '1.10.0'
- roboVMVersion = '2.3.12'
- box2DLightsVersion = '1.5'
- ashleyVersion = '1.7.3'
- aiVersion = '1.8.2'
- gdxControllersVersion = '2.1.0'
- }
- repositories {
- mavenLocal()
- mavenCentral()
- google()
- gradlePluginPortal()
- maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
- maven { url "https://oss.sonatype.org/content/repositories/releases/" }
- }
- }
- project(":desktop") {
- apply plugin: "java-library"
- dependencies {
- implementation project(":core")
- api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
- api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
- api "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
- implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
- }
- }
- project(":android") {
- apply plugin: "com.android.application"
- configurations { natives }
- dependencies {
- implementation project(":core")
- api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
- natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
- api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86_64"
- implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a"
- natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
- natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64"
- }
- }
- project(":ios") {
- apply plugin: "java-library"
- apply plugin: "robovm"
- dependencies {
- implementation project(":core")
- api "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
- api "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
- api "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
- api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
- api "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios"
-
- }
- }
- project(":html") {
- apply plugin: "java-library"
- apply plugin: "gwt"
- apply plugin: "war"
- apply plugin: "org.gretty"
- dependencies {
- implementation project(":core")
- api "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
- api "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
- api "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
- api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion:sources"
- api "com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources"
-
- }
- }
- project(":core") {
- apply plugin: "java-library"
- dependencies {
- api "com.badlogicgames.gdx:gdx:$gdxVersion"
- api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
- }
- }
|