Exclude the overview.html javadoc file from source#735
Exclude the overview.html javadoc file from source#735
Conversation
manovotn
left a comment
There was a problem hiding this comment.
According to the issue, this seems rather as a problem with the Jenkins setup then the repo itself? IIUIC, what you're adding would just exclude our own file.
It's also curious that this only happens for the API artifact and not for lang model or EL API 🤔
|
I had a look into why this happens. I think it's because we're listing the overview.html as a resource, which is really declaring that it should be included in the output jar. However, for some reason, when It looks like it's only been included as a resource in order to enable filtering to replace placeholders in the file? I've made a PR to do this with a separate goal rather than including it as a resource: #745 |
|
This also explains why it doesn't appear in the EL API, that overview file hasn't had placeholders added and isn't configured as a resource. |
Fixes #734