-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Discrepancy in pom.xml dependencies and uberjar included dependencies #2790
Comments
Sorry, I don't really follow this logic. The documentation states:
The point of the leaky metadata is that you can get the behavior you describe, if you want it. This seems consistent with the observed behavior. If the default behavior worked the way you expect, there wouldn't be any need for the leaky feature. |
@technomancy the main point I was describing is the with-profile mechanism in some cases “breaks” the policy around unmerging leaky profiles. In my example I showed it shows that with-profile profiles are “sometimes” active during stages of the uberjar process. So those profiles do effect the artifact built. But for some parts of the artifact building - like the pom - with-profile doesn’t subvert the leaky semantics so you get the inconsistency. If leaky profiles were required for building the artifact then I wouldn’t expect that to only be true for parts of it. |
Ah, I see what you mean now. Normally with profiles at this point I assume any changes to the profile logic will cause an equal or greater number of problems as they solve. (after this has shown itself to be the case time and time again) However, this problem seems to be fairly focused and limited in scope to just the pom inside the uberjar. So I think this might be an exception. It sounds like you have taken the time to dive into the implementation and have a decent understanding of what's going on. Would you be able to provide a fix for this? |
I can look into this a bit. I do understand the implementation well enough I think. I also agree that profile-logic changes do seem to be an easy source of more trouble. Is the way you are thinking that makes sense here to have the pom built with the same profiles as the uberjar/jar, which is with the leaky profiles - but also those profiles explicitly set in |
That's right; the pom inside the uberjar should cover all the dependencies used to create the uberjar, which includes those explicitly added in by |
I would like to release 2.9.9 some time in the next week; do you think you could get the fix by then, or should it wait for a future version? |
I think it'll have to be a future version. I will try to get to look at this within the next 2 weeks. |
Well, one week for the release might be a little optimistic on my side. If it's coming soon then holding off another week isn't a big deal. =) |
Just an update here. I've been delayed getting to this. I'd say I will be hopeful to make some progress towards it by early next week. If you need to release earlier than that, feel free to not block on it. However, I will try to make the progress either way. |
Any progress on this? Just got a fix for the other big blocker bug for 2.9.9. |
Hi, Sorry I've dropped the ball on this one. I am working on hitting work deadlines, so I'll be delayed getting to it for another month or so. I do intend to get back to it if no one has looked at it by then though. Sorry. |
No worries; you're the one most affected by this. It'll just mean it will be longer before it makes it out into a release. |
Describe the bug
I've tested this behavior across several 2.9.x versions of
lein
, but looking at the code involved, it doesn't look like anything has changed that would affect the behavior in quite some time.When using
with-profile
to add a profile during theuberjar
task, the pom.xml that is generated and placed inside the uberjar jar itself can not accurately reflect the contents of the uberjar in terms of dependencies.The reason for this is the discrepancy between how
with-profile
adds the given profiles to(-> project meta :included-profiles)
. This is then specially included in tasks likeuberjar
andjar
. If a profile here has:dependencies
, they will be used during the building of the contents of the uberjar/jar.However, several other parts of the uberjar/jar build explicitly remove non-leaky profiles, ie profiles not marked with the
:leaky
metadata. The most interesting one for the sake of this issue is the pom that is made inside the uberjar/jar. Notably thepom/make-pom
fn called there removes non-leaky profiles and does not attempt to use the(-> project meta :included-profiles)
which, in this case, would bring in thewith-profile
passed profiles.The result is an uberjar that can build with
:dependencies
inside it that are not part of the pom.xml. The workaround/fix is to mark any profiles used withwith-profile
to build anuberjar
, with:leaky
metadata so the pom creation (and any other affected meta files in the jar) will not strip those profiles out.To Reproduce
Steps to reproduce the behavior:
app
here:lein with-profile extras uberjar
ring/ring-core
class files compiled into the uberjar, but theMETA-INF/maven/app/app/pom.xml
inside the jar does not include thering/ring-core
in the<dependencies>
.:leaky
metadata on the:extras
profile:ring/ring-core
class files are included in the uberjar now and the pom from step (3) includes it as a<dependencies>
entry.Expected behavior
Ideally the behavior of
with-profile
withuberjar
would create consistency with regards to how:leaky
profiles interact with the explicitwith-profile
profiles. I believe that thewith-profile
explicitly set profiles would generally not expect to be unmerged during the build of the given task and its include sub-tasks that are used to build the final artifact.The text was updated successfully, but these errors were encountered: