Skip to content

Commit

Permalink
🐛 fix jar export issue
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Dec 19, 2022
1 parent 67f512b commit 984bbe4
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 29 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,5 @@ build
gpm.json
jdeploy-bundle
package-lock.json
node_modules
node_modules
.DS_Store
17 changes: 17 additions & 0 deletions .idea/artifacts/create_compose_app_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 0 additions & 19 deletions .idea/artifacts/create_compose_app_main_jar.xml

This file was deleted.

9 changes: 3 additions & 6 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.theapache64.createcomposeapp.MainKt
Class-Path: annotations-13.0.jar kotlin-stdlib-common-1.6.10.jar kotlin-
stdlib-jdk8-1.6.10.jar kotlin-stdlib-jdk7-1.6.10.jar kotlin-stdlib-1.6.
10.jar

Manifest-Version: 1.0
Main-Class: com.theapache64.createcomposeapp.MainKt

11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@
"preferGlobal": true,
"repository": "https://github.com/theapache64/create-compose-app",
"version": "2022.12.19",
"jdeploy": {},
"jdeploy": {
"jdk": false,
"javaVersion": "11",
"jar": "out/artifacts/create_compose_app_jar/create-compose-app.jar",
"javafx": false,
"title": "create-compose-app"
},
"dependencies": {
"shelljs": "0.8.4"
"njre": "^0.2.0",
"shelljs": "^0.8.4"
},
"license": "ISC",
"name": "create-compose-app",
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/theapache64/createcomposeapp/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ enum class Platform(val title: String) {
Wasm("🌐 Wasm"),
ChromeExt("🔌 Chrome extension"),
DesktopGame("🎮 Desktop (game)"),
Terminal("⌨️ Terminal")
Terminal("⌨️ Terminal")
}


Expand Down

0 comments on commit 984bbe4

Please sign in to comment.