Skip to content

Commit

Permalink
update snapshot to 0.10.0-dev-12
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Apr 23, 2024
1 parent e49e4df commit f68fcb2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ subprojects {
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/releases/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/releases/") }
maven { url = uri("https://jitpack.io") }

maven {
url = uri("http://teavm.org/maven/repository/")
setAllowInsecureProtocol(true)
}
}

configurations.configureEach {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object LibExt {
val libVersion: String = getVersion()

const val gdxVersion = "1.12.1"
const val teaVMVersion = "0.9.2"
const val teaVMVersion = "0.10.0-dev-12"

const val gdxImGuiVersion = "1.0.0-SNAPSHOT"
const val gdxMultiViewVersion = "1.0.0-SNAPSHOT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.github.xpenatan.gdx.backends.teavm.TeaApplication;
import com.github.xpenatan.gdx.backends.teavm.TeaApplicationConfiguration;
import com.github.xpenatan.gdx.examples.tests.PixelTest;
import com.github.xpenatan.gdx.examples.tests.ReadPixelsTest;

public class TeaVMTestLauncher {

Expand All @@ -11,7 +12,7 @@ public static void main(String[] args) {
config.width = 0;
config.height = 0;
// new TeaApplication(new GearsDemo(), config);
// new TeaApplication(new ReadPixelsTest(), config);
new TeaApplication(new PixelTest(), config);
new TeaApplication(new ReadPixelsTest(), config);
// new TeaApplication(new PixelTest(), config);
}
}

0 comments on commit f68fcb2

Please sign in to comment.