You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to publish JARs from one Conjure Java project to another (trying to publish the Jersey jar as well as the Objects jar) and am struggling to get the configuration right.
My initial configuration looked like the following:
This has been working great as I've been publishing Python packages (generating and publishing via some CI steps), but now that I want to publish the Jars, I'm struggling.
I noticed that gradle-conjure doesn't seem to add any Java packages to the publish task within gradle, even though it adds the typescript one. I saw this discussion from 2018 but it's not clear to me why gradle-conjure wouldn't provide a means to add publishing.
I attempted the following (file shortened for brevity)
This results in the packages being picked up by publish, but then my compileJava starts failing. From what I can tell, it seems like it's because the Undertow and Jersey projects are failing to take a dependency on the Objects project.
What did you want to happen?
It would be amazing if gradle-conjure exposed a mechanism to allow me to pipe publishing through in a clean manner, so that I can publish my Java packages.
The text was updated successfully, but these errors were encountered:
What happened?
Hey everyone!
I'm attempting to publish JARs from one Conjure Java project to another (trying to publish the Jersey jar as well as the Objects jar) and am struggling to get the configuration right.
My initial configuration looked like the following:
This has been working great as I've been publishing Python packages (generating and publishing via some CI steps), but now that I want to publish the Jars, I'm struggling.
I noticed that gradle-conjure doesn't seem to add any Java packages to the
publish
task within gradle, even though it adds the typescript one. I saw this discussion from 2018 but it's not clear to me why gradle-conjure wouldn't provide a means to add publishing.I attempted the following (file shortened for brevity)
This results in the packages being picked up by
publish
, but then mycompileJava
starts failing. From what I can tell, it seems like it's because the Undertow and Jersey projects are failing to take a dependency on the Objects project.What did you want to happen?
It would be amazing if gradle-conjure exposed a mechanism to allow me to pipe publishing through in a clean manner, so that I can publish my Java packages.
The text was updated successfully, but these errors were encountered: