-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to include README in jar #7
Comments
We should also include LICENSE/NOTICE files if they exist. |
I wonder if we can also add build.sbt, since all of our schema projects rely on it. |
Possibly, though the layout of a jar is different than an SBT project. For example, it does not have a |
If one adds a src/main/resources/doc directory with files in it, are those going to end up in a doc subdir in the jar, or does some special provision need to be made to get that to happen? |
Yep, anything in src/main/resources ends up in the root of the jar, including any subdirectories. Nothing special needs to be done. |
So perhaps all we need is guidelines that the README.md is for us, and user doc, rel-notes, instructions, whatever we want to include is just referenced from the README but lives under src/main/resources/doc ? |
Since we often distribute schemas as jars, it would be useful to include the README as well, since this file usually includes helpful things like usage and license information, which isn't necessarily in the schema files.
The text was updated successfully, but these errors were encountered: