Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ under the License.
<goal>install</goal>
</goals>
<addTestClassPath>true</addTestClassPath>
<mavenOpts>-Dmaven.resolver.transport=wagon</mavenOpts>

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would be careful with such change .... it turn on old transport which is not used by default
In real use users use default transport so problem can be only hidden here and we test something different which is normally used

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is necessary to make the existing tests pass because they use file:// URLs the default transport doesn't support. Perhaps file an issue to fix those tests. However, in the meantime I think it is absolutely essential to get the tests passing. No progress on anything can be made until we do that, and this is the minimal and safest change I could contrive that accomplishes that. Once the CI is green, we can carefully move forward with other fixes without fear of accidentally breaking more things.

The alternative would be to roll everything back to the last known good commit.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I suggest to focus on the root cause (-> #310) to make CI green again and leave the transport fix (and clarification of #309 (comment)) for the time beyond merging #268 (which could be prepared nonetheless).

</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion src/it/reproducible/invoker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

invoker.goals=remote-resources:process source:jar deploy:deploy
invoker.goals=remote-resources:process jar:jar source:jar deploy:deploy
2 changes: 1 addition & 1 deletion src/it/reproducible/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<version>3.1.4</version>
<configuration>
<!-- Deployments will be written to ${basedir}/target -->
<altDeploymentRepository>mine::default::file://${basedir}/target/repo</altDeploymentRepository>
Expand Down
Loading