pixel-libgdx-backend was renamed to pixel-backend-libgdx
This commit is contained in:
parent
4d4e0b3c6e
commit
7488fdccbf
2
.gitignore
vendored
2
.gitignore
vendored
@ -5,7 +5,7 @@ gradle-app.setting
|
|||||||
/android/build/
|
/android/build/
|
||||||
/core/build/
|
/core/build/
|
||||||
/pixel/build/
|
/pixel/build/
|
||||||
/pixel-libgdx-backend/build/
|
/pixel-backend-libgdx/build/
|
||||||
/lwjgl2/build/
|
/lwjgl2/build/
|
||||||
/lwjgl3/build/
|
/lwjgl3/build/
|
||||||
/html/build/
|
/html/build/
|
||||||
|
@ -58,7 +58,7 @@ dependencies {
|
|||||||
implementation "com.github.MrStahlfelge.gdx-websockets:common:$websocketVersion"
|
implementation "com.github.MrStahlfelge.gdx-websockets:common:$websocketVersion"
|
||||||
implementation project(':core')
|
implementation project(':core')
|
||||||
implementation project(':pixel')
|
implementation project(':pixel')
|
||||||
implementation project(':pixel-libgdx-backend')
|
implementation project(':pixel-backend-libgdx')
|
||||||
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
|
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
|
||||||
|
|
||||||
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
|
||||||
|
@ -61,8 +61,8 @@ subprojects {
|
|||||||
if (project.name == 'pixel') {
|
if (project.name == 'pixel') {
|
||||||
ext.appName = 'pixel'
|
ext.appName = 'pixel'
|
||||||
}
|
}
|
||||||
if (project.name == 'pixel-libgdx-backend') {
|
if (project.name == 'pixel-backend-libgdx') {
|
||||||
ext.appName = 'pixel-libgdx-backend'
|
ext.appName = 'pixel-backend-libgdx'
|
||||||
}
|
}
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -49,7 +49,7 @@ dependencies {
|
|||||||
implementation "de.golfgl.gdxcontrollerutils:gdx-controllerutils-mapping:$controllerMappingVersion:sources"
|
implementation "de.golfgl.gdxcontrollerutils:gdx-controllerutils-mapping:$controllerMappingVersion:sources"
|
||||||
implementation project(':core')
|
implementation project(':core')
|
||||||
implementation project(':pixel')
|
implementation project(':pixel')
|
||||||
implementation project(':pixel-libgdx-backend')
|
implementation project(':pixel-backend-libgdx')
|
||||||
implementation("com.badlogicgames.gdx-controllers:gdx-controllers-gwt:$gdxControllersVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
|
implementation("com.badlogicgames.gdx-controllers:gdx-controllers-gwt:$gdxControllersVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
|
||||||
implementation("com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources") {exclude group: "com.google.gwt", module: "gwt-user"}
|
implementation("com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources") {exclude group: "com.google.gwt", module: "gwt-user"}
|
||||||
implementation("com.github.crykn.guacamole:gdx-gwt:$guacamoleVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
|
implementation("com.github.crykn.guacamole:gdx-gwt:$guacamoleVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
|
||||||
@ -150,7 +150,7 @@ task addSource {
|
|||||||
doLast {
|
doLast {
|
||||||
sourceSets.main.compileClasspath += files(project(':core').sourceSets.main.allJava.srcDirs)
|
sourceSets.main.compileClasspath += files(project(':core').sourceSets.main.allJava.srcDirs)
|
||||||
sourceSets.main.compileClasspath += files(project(':pixel').sourceSets.main.allJava.srcDirs)
|
sourceSets.main.compileClasspath += files(project(':pixel').sourceSets.main.allJava.srcDirs)
|
||||||
sourceSets.main.compileClasspath += files(project(':pixel-libgdx-backend').sourceSets.main.allJava.srcDirs)
|
sourceSets.main.compileClasspath += files(project(':pixel-backend-libgdx').sourceSets.main.allJava.srcDirs)
|
||||||
sourceSets.main.compileClasspath += files("../core/build/generated/sources/annotationProcessor/java/main")
|
sourceSets.main.compileClasspath += files("../core/build/generated/sources/annotationProcessor/java/main")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ dependencies {
|
|||||||
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
|
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
|
||||||
implementation project(':core')
|
implementation project(':core')
|
||||||
implementation project(':pixel')
|
implementation project(':pixel')
|
||||||
implementation project(':pixel-libgdx-backend')
|
implementation project(':pixel-backend-libgdx')
|
||||||
}
|
}
|
||||||
|
|
||||||
def jarName = "${appName}-${version}.jar"
|
def jarName = "${appName}-${version}.jar"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||||
//eclipse.project.name = appName + '-core'
|
//eclipse.project.name = appName + '-core'
|
||||||
eclipse.project.name = 'pixel-libgdx-backend'
|
eclipse.project.name = 'pixel-backend-libgdx'
|
||||||
|
|
||||||
sourceSets.test.java.srcDirs = [ "src/test/java/" ]
|
sourceSets.test.java.srcDirs = [ "src/test/java/" ]
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
// A list of which subprojects to load as part of the same larger project.
|
// A list of which subprojects to load as part of the same larger project.
|
||||||
// You can remove Strings from the list and reload the Gradle project
|
// You can remove Strings from the list and reload the Gradle project
|
||||||
// if you want to temporarily disable a subproject.
|
// if you want to temporarily disable a subproject.
|
||||||
include 'lwjgl3', 'android', 'html', 'core', 'pixel', 'pixel-libgdx-backend'
|
include 'lwjgl3', 'android', 'html', 'core', 'pixel', 'pixel-backend-libgdx'
|
||||||
|
Reference in New Issue
Block a user