This message was deleted.
# community-support
s
This message was deleted.
m
I think you're missing the repo:
url = uri("https://<redacted>/artifactory/my-awesome-repo")
m
It's there, sorry I removed it for clarity. The URL for the POM checks.
m
Do you see the pom in the gradle cache? After clearing out that directory?
Or maybe try another approach: see if it works if you manually set the URL of a public repo. If that works, something is off in your repo
m
Yeah, so it downloads the POM from the right location but it doesn't place the POM in gradle cache.
I could try your trick with another repo just to chek, but that plugin is not on maven central
m
If it's a plugin, then there might be some gradle support files involved, could those be missing?
m
Wel I would have thought that the first directory I mentioned are the support files you are talking of
👍 1
Take a look here
Unless there is anything else I need, but I don't think so, as DEBUG log doesn't show Gradle trying any other URLs
m
We also only have the pom, jar, and sources.jar, so that should work
m
And how do you apply the plugin? Could be the issue I think
m
We use the "traditional" method, though I cannot rule out that there might be instances where we use a plugins block
m
@Markus Maier yeah, so I switched to the traditional method and it works now!!
m
Great! Then you're probably only missing the "extra" files for gradle plugins that translate from plugin id to maven coordinates
l
I do not see anything obvious that you missed. If the legacy application method works, then everything under
com/github/node-gradle/gradle-node-plugin/3.2.1/
is OK and what is problematic is the part under
com/github/node-gradle/node/com.github.node-gradle.node.gradle.plugin/3.2.1/
I would double check that you copied the right thing and preserved its name.
1