Update Libgdx Dependency

-update to 1.9.11, and use specific nightly build for gdx (pre 1.9.12, fixes for glyph, etc..) for mobile version (newer nightly build than August 13, 2020 changed the android path so unless we adopt scoped storage, we can't upgrade to newer libgdx versions)
This commit is contained in:
Anthony Calosa
2020-10-23 18:00:08 +08:00
parent e82ae6f507
commit e80d6d66d0
4 changed files with 11 additions and 7 deletions

View File

@@ -102,7 +102,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-android</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
</dependency>
</dependencies>

View File

@@ -73,7 +73,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-robovm</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
</dependency>
</dependencies>
</project>

View File

@@ -60,18 +60,18 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-platform</artifactId>
<version>1.2.0</version>
<version>1.9.11</version>
<classifier>natives-desktop</classifier>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-freetype-platform</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
<classifier>natives-desktop</classifier>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->

View File

@@ -63,12 +63,16 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/gdx.jar</systemPath>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-freetype</artifactId>
<version>1.9.10</version>
<version>1.9.11</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/gdx-freetype.jar</systemPath>
</dependency>
</dependencies>