Skip to content

Commit

Permalink
Fixed build error preventing Skin Composer from starting.
Browse files Browse the repository at this point in the history
  • Loading branch information
raeleus committed Jan 30, 2023
1 parent a934a0a commit d37a4bd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 22 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Skin Composer Version 55a ###
* Fixed build error preventing Skin Composer from starting.

### Skin Composer Version 55 ###
* Added emoji menu to TextraTypist Playground.
* Fixed not saving flip, markupEnabled, and scaling font values.
Expand Down
44 changes: 22 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,35 @@ allprojects {
}

project(":core") {
apply plugin: "java-library"
apply plugin: "java"

dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "org.lwjgl:lwjgl:3.3.1"
api "org.lwjgl:lwjgl-nfd:3.3.1"
api "org.lwjgl:lwjgl-nfd:3.3.1:natives-windows"
api "org.lwjgl:lwjgl-nfd:3.3.1:natives-linux"
api "org.lwjgl:lwjgl-nfd:3.3.1:natives-macos"
api "org.lwjgl:lwjgl-nfd:3.3.1:natives-macos-arm64"
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
api ("com.badlogicgames.gdx:gdx-tools:$gdxVersion") {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile "org.lwjgl:lwjgl:3.3.1"
compile "org.lwjgl:lwjgl-nfd:3.3.1"
compile "org.lwjgl:lwjgl-nfd:3.3.1:natives-windows"
compile "org.lwjgl:lwjgl-nfd:3.3.1:natives-linux"
compile "org.lwjgl:lwjgl-nfd:3.3.1:natives-macos"
compile "org.lwjgl:lwjgl-nfd:3.3.1:natives-macos-arm64"
compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
compile ("com.badlogicgames.gdx:gdx-tools:$gdxVersion") {
exclude group: 'com.badlogicgames.gdx', module: 'gdx-backend-lwjgl'
}
api "com.github.raeleus.TenPatch:tenpatch:5.2.3"
api "space.earlygrey:shapedrawer:2.2.0"
api 'com.squareup:javapoet:1.12.1'
api 'com.github.raeleus.stripe:stripe:1.4.1'
api ('com.github.raeleus.stripe:colorpicker:1.4.1') {
compile "com.github.raeleus.TenPatch:tenpatch:5.2.3"
compile "space.earlygrey:shapedrawer:2.2.0"
compile 'com.squareup:javapoet:1.12.1'
compile 'com.github.raeleus.stripe:stripe:1.4.1'
compile ('com.github.raeleus.stripe:colorpicker:1.4.1') {
exclude group: 'com.github.tommyettinger', module: 'textratypist'
}
api 'com.github.raeleus.stripe:freetype:1.1.0'
api 'com.esotericsoftware.spine:spine-libgdx:4.0.18.1'
api 'com.github.lyze237:gdx-TinyVG:9a5a6ae9ae'
compile 'com.github.raeleus.stripe:freetype:1.1.0'
compile 'com.esotericsoftware.spine:spine-libgdx:4.0.18.1'
compile 'com.github.lyze237:gdx-TinyVG:9a5a6ae9ae'
// compile "com.github.tommyettinger:textratypist:0.7.5"
api "com.github.tommyettinger:textratypist:e5155e06c5"
compile "com.github.tommyettinger:textratypist:e5155e06c5"
}
}

Expand Down

0 comments on commit d37a4bd

Please sign in to comment.