Skip to content

Commit

Permalink
Merge pull request #2 from DaanVanYperen/develop
Browse files Browse the repository at this point in the history
Upgrade to LibGDX 1.3.1
  • Loading branch information
DaanVanYperen committed Sep 17, 2014
2 parents ac22c97 + b7a45c7 commit 13992af
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,5 @@ nb-configuration.xml

.gradle
build/
android/libs/armeabi-v7a/libgdx.so
gradle/wrapper/gradle-wrapper.properties
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ into a library later, no guarantees. ;)

=== Library Versions ===

LibGDX 1.2.0 and Artemis-ODB 0.6.5-SNAPSHOT
LibGDX 1.3.1 and Artemis-ODB 0.6.5-SNAPSHOT
(LibGDX version can be changed in /build.gradle)

Tested for desktop:dist and html:dist targets. Others targets might function too. ;)
Expand Down
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ allprojects {
version = '1.0'
ext {
appName = 'GameTemplate'
// Uncomment if you want to use snapshots instead of stable.
gdxVersion = '1.2.0'
//gdxVersion = '1.0.1-SNAPSHOT'
gdxVersion = '1.3.1'
artemisVersion = '0.6.5'
roboVMVersion = '0.0.11'
}

Expand Down Expand Up @@ -84,9 +83,9 @@ project(":html") {
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"

// Support for artemis-odb
compile "net.onedaybeard.artemis:artemis-odb-gwt:0.6.5"
compile "net.onedaybeard.artemis:artemis-odb-gwt:0.6.5:sources"
compile "net.onedaybeard.artemis:artemis-odb:0.6.5:sources"
compile "net.onedaybeard.artemis:artemis-odb-gwt:$artemisVersion"
compile "net.onedaybeard.artemis:artemis-odb-gwt:$artemisVersion:sources"
compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion:sources"
}
}

Expand All @@ -98,8 +97,8 @@ project(":core") {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"

// Support for artemis-odb
compile "net.onedaybeard.artemis:artemis-odb:0.6.5"
compile "net.onedaybeard.artemis:artemis-odb:0.6.5:sources"
compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion"
compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion:sources"
}
}

Expand Down

0 comments on commit 13992af

Please sign in to comment.