pixel-libgdx-backend was renamed to pixel-backend-libgdx

This commit is contained in:
Robert Vokac 2024-09-11 16:53:59 +02:00
parent 4d4e0b3c6e
commit 7488fdccbf
No known key found for this signature in database
GPG Key ID: C459E1E4B4A986BB
25 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View File

@ -5,7 +5,7 @@ gradle-app.setting
/android/build/
/core/build/
/pixel/build/
/pixel-libgdx-backend/build/
/pixel-backend-libgdx/build/
/lwjgl2/build/
/lwjgl3/build/
/html/build/

View File

@ -58,7 +58,7 @@ dependencies {
implementation "com.github.MrStahlfelge.gdx-websockets:common:$websocketVersion"
implementation project(':core')
implementation project(':pixel')
implementation project(':pixel-libgdx-backend')
implementation project(':pixel-backend-libgdx')
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"

View File

@ -61,8 +61,8 @@ subprojects {
if (project.name == 'pixel') {
ext.appName = 'pixel'
}
if (project.name == 'pixel-libgdx-backend') {
ext.appName = 'pixel-libgdx-backend'
if (project.name == 'pixel-backend-libgdx') {
ext.appName = 'pixel-backend-libgdx'
}
repositories {
mavenCentral()

View File

@ -49,7 +49,7 @@ dependencies {
implementation "de.golfgl.gdxcontrollerutils:gdx-controllerutils-mapping:$controllerMappingVersion:sources"
implementation project(':core')
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: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"}
@ -150,7 +150,7 @@ task addSource {
doLast {
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-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")
}

View File

@ -34,7 +34,7 @@ dependencies {
//implementation "com.openeggbert.gdx:gdx-storage:0.0.0-SNAPSHOT"
implementation project(':core')
implementation project(':pixel')
implementation project(':pixel-libgdx-backend')
implementation project(':pixel-backend-libgdx')
}
def jarName = "${appName}-${version}.jar"

View File

@ -1,6 +1,6 @@
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
//eclipse.project.name = appName + '-core'
eclipse.project.name = 'pixel-libgdx-backend'
eclipse.project.name = 'pixel-backend-libgdx'
sourceSets.test.java.srcDirs = [ "src/test/java/" ]

View File

@ -1,4 +1,4 @@
// 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
// 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'