Skip to content

Commit

Permalink
Remove tool from maven/snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jan 11, 2024
1 parent 3c5e08d commit 7a784e0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 27 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- add TeaReflectionSupplier.printReflectionClasses()
- Change exclude class comparison to regex
- Downgrade teavm dev 0.10.X version to 0.9.2 release version
- Remove tool/generator from maven/snapshot.

[1.0.0-b8]
- Fix MMB code
Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,3 @@ dependencies {
- [ImGui](https://github.com/xpenatan/gdx-imgui) (WIP)
- [Lua](https://github.com/xpenatan/gdx-lua) (WIP)
- FreeType

## Generator:
A WIP standalone tool to convert your libgdx game in .jar or .class format to javascript. [Example](https://youtu.be/BIL_5eaxg9w)
<br>
<br>
Note: The compiled jar game should not be obfuscated.

Setup: TODO
4 changes: 1 addition & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ subprojects {

var libProjects = mutableSetOf(
project(":backends:backend-teavm"),
project(":extensions:gdx-freetype-teavm"),
project(":tools:generator:core"),
project(":tools:generator:ui")
project(":extensions:gdx-freetype-teavm")
)

configure(libProjects) {
Expand Down
16 changes: 8 additions & 8 deletions tools/generator/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ dependencies {
implementation("org.eclipse.jetty:jetty-webapp:${LibExt.jettyVersion}")
}

publishing {
publications {
create<MavenPublication>("maven") {
artifactId = moduleName
from(components["java"])
}
}
}
//publishing {
// publications {
// create<MavenPublication>("maven") {
// artifactId = moduleName
// from(components["java"])
// }
// }
//}
16 changes: 8 additions & 8 deletions tools/generator/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies {
implementation("org.eclipse.jetty:jetty-webapp:${LibExt.jettyVersion}")
}

publishing {
publications {
create<MavenPublication>("maven") {
artifactId = moduleName
from(components["java"])
}
}
}
//publishing {
// publications {
// create<MavenPublication>("maven") {
// artifactId = moduleName
// from(components["java"])
// }
// }
//}

0 comments on commit 7a784e0

Please sign in to comment.