Some exporting jar suggestions
See original GitHub issueFirst off all, thanks for all the effort so far. I like to where this is going!
I would like a way to include / exclude specific files or folders from the src
.
For example I have a folder sfjl
and sfjl_examples
, and I don’t want the sfjl_examples
folders included in the jar file.
Second, it would be nice to store export settings in settings.json
.
For example, I would love something like this:
{
"java.jar.exports": [
{
"name": "sfjl",
"exludes": [
"/sfjl/SFJL_Profiler*",
"/sfjl_examples"
],
"manifest": "${workspaceFolder}/manifests/sfjl_manifest.mf"
},
{
"name": "sfjl_profiler",
"exludes": [
"*"
],
"includes": [
"/sfjl/SFJL_Profiler"
],
"manifest": "${workspaceFolder}/manifests/sfjl_profiler_manifest.mf"
}
]
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (8 by maintainers)
Top Results From Across the Web
Java: export to an .jar file in eclipse - Stack Overflow
In my project I have added some pictures and PDF:s. When I'm exporting to jar file, it seems that only the main has...
Read more >Exporting a JAR file to a project folder outside the workspace ...
Browse for export destination, select the project folder and enter a filename ( example.jar ). Click Finish Actual result: A workspace relative ...
Read more >Exporting Jar Files - Happy Coding
Extracting the libraries copies the files from inside the library .jar files into the generated .jar file. · Packaging the libraries copies the...
Read more >Problem in exporting JAR - SAP Community
Hi, I have created a Java Project. And it is running well as a Java Application. But i am facing problem in exporting...
Read more >Handy Export Jar - IntelliJ IDEs Plugin - JetBrains Marketplace
Plugin of Intellij IDEA for quickly export java project's class, resource, source file to jar, like Eclipse's action of export to jar.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@CsCherrYY will recently look into this since he’s the contributor of this feature.
Close this thread since the most part of the request should have been resolved.
There is one remaining: allow user to customized the manifest or allow user to select one, which will be tracked by #526.
Thanks.