Update provisio-maven-plugin to 1.0.20#16191
Conversation
|
Seems to have hit a case where we don't have all dependencies downloaded but we're running maven with |
hashhar
left a comment
There was a problem hiding this comment.
LGTM % confirming CI indeed works
|
I think we should remove the I see there are multiple versions of |
|
Retry does not help. |
b0d7764 to
f1de430
Compare
|
@nineinchnick I have rebased and the issue is still there. Is this related to this PR or is it that highly flaky? |
|
This PR introduces a new version of a dependency that doesn't get downloaded by the commands we execute in download-maven-dependencies.sh. You either have to add it as an exception there (download it explicitly) or remove |
How? |
./mvnw dependency:get -Dartifact=org.codehaus.plexus:plexus-java:1.1.1:jar -Dtransitive=false |
92756c9 to
6bb56e2
Compare
I have tried with the other option and so far no luck. I am now more inclined to remove the |
|
I saw you tried explicitly downloading provisio, not that transitive dependency the ci is complaining about, as I was suggesting. I'm ok with removing --offline but let's wait for @findepi. |
|
@nineinchnick i don't understand yet what we're blocked on. If I understand how What are we gaining? Why is this new provisio version special? |
We can't figure out how to download all required dependencies. I have the same problem in #12929 now. |
|
@kokosing can you try adding it explicitly in the configuration for the diff --git a/pom.xml b/pom.xml
index 5887dfdc09..922d798cf8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2148,6 +2148,12 @@
<version>${dep.drift.version}</version>
<repositoryType>PLUGIN</repositoryType>
</DynamicDependency>
+ <DynamicDependency>
+ <groupId>ca.vanzyl.provisio.maven.plugins</groupId>
+ <artifactId>provisio-maven-plugin</artifactId>
+ <version>1.0.20</version>
+ <repositoryType>PLUGIN</repositoryType>
+ </DynamicDependency>
<DynamicDependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId> |
|
@nineinchnick how did we come up with this list Lines 2132 to 2226 in a400eaf why can't we refresh it now? |
6bb56e2 to
aba9414
Compare
|
This caused a new error when downloading dependencies: I wonder if this is caused by how |
aba9414 to
03031aa
Compare
03031aa to
2248c39
Compare
2248c39 to
ffdd4d3
Compare
Update provisio-maven-plugin to 1.0.20