Skip to content

Commit

Permalink
Upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinSc committed Apr 20, 2023
1 parent 1b94ffe commit e679ae1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ buildscript {
}
dependencies {
classpath "com.badlogicgames.gdx:gdx-tools:$gdxVersion"

}
}

allprojects {
apply plugin: "eclipse"

group = "com.gempukku.libgdx.gdx-graph"
version = "$gdxGraphVersion"
ext {
appName = "Gdx Graph"
Expand Down Expand Up @@ -43,6 +43,7 @@ configure(subprojects) {
sourceSets.main.java.srcDirs = ["src/"]
sourceSets.main.resources.srcDirs = ["resources/"]
sourceSets.test.java.srcDirs = ["test/"]
sourceSets.test.resources.srcDirs = ["test-resources/"]

compileJava {
options.incremental = true
Expand Down
2 changes: 1 addition & 1 deletion gdx-graph-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ eclipse.project.name = "gdx-graph-test"
dependencies {
api project(":gdx-graph-artemis")

implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"

implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.gempukku.libgdx.graph.test;

import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;

public class TestDesktopLauncher {
public static void main(String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.width = 1440;
config.height = 810;
new LwjglApplication(new ReloadableGraphTestApplication(), config);
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
config.setWindowedMode(1440, 810);
new Lwjgl3Application(new ReloadableGraphTestApplication(), config);
}
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ org.gradle.daemon=true
org.gradle.jvmargs=-Xms128m -Xmx1500m
org.gradle.configureondemand=false

gdxGraphVersion=1.0.0
gdxGraphVersion=1.1.0

gdxVersion=1.11.0

gdxGempLibVersion=8550ff3
gdxAssistantVersion=6ae0f68
gdxGempLibVersion=94b54db
gdxAssistantVersion=bcb4a4c

visUiVersion=1.5.1
artemisOdbVersion=2.3.0
Expand Down

0 comments on commit e679ae1

Please sign in to comment.