英文:
jpackage missing "mac.Appstore" bundle type
问题
The old retired javapackager
tool used to have 3 bundle types for mac os x:
- dmg
- pkg
- mac.Appstore
But the new jpackage
tool only has 2 types:
- dmg
- pkg
The mac.Appstore
type was previously used when packaging the app to be submitted to Mac Appstore.
It would automatically find two certificates (installer and application) and use it to sign both the app and pkg files.
This option doesn't seem to exist in the new jpackage tool.
My question: is there an option to build packages for Mac Appstore with jpackage
that I somehow missed? Or is this option gone forever? If so then what's the alternative?
英文:
The old retired javapackager
tool used to have 3 bundle types for mac os x:
- dmg
- pkg
- mac.Appstore
But the new jpackage
tool only has 2 types:
- dmg
- pkg
The mac.Appstore
type was previously used when packaging the app to be submitted to Mac Appstore.
It would automatically find two certificates (installer and application) and use it to sign both the app and pkg files.
This option doesn't seem to exist in the new jpackage tool.
My question: is there an option to build packages for Mac Appstore with jpackage
that I somehow missed? Or is this option gone forever? If so then what's the alternative?
答案1
得分: 1
我已提交请求将此功能包含在jpackage中:
https://bugs.openjdk.java.net/browse/JDK-8248904
更新: 此功能已添加到JDK 17
英文:
I submitted request to include this feature in jpackage:
https://bugs.openjdk.java.net/browse/JDK-8248904
Update: This feature is added to JDK 17
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论