Re: [PR] IVY-1662: collect updates by conf and check trans itive on old dependency [ant-ivy]
eric-milles (via GitHub) <[email protected]>
| Newsgroups | gmane.comp.jakarta.ant.devel |
|---|---|
| Message-ID | <PR_kwDOATT2Es6hld2T-67f7dd4b-4910-4e42-8a08-2eb4b5a60095@gitbox.apache.org> |
eric-milles commented on PR #108:
URL: https://github.com/apache/ant-ivy/pull/108#issuecomment-3254265667
I do not have a test that shows the behavior change. The scenario described above works like this:
```xml
<ivy-module>
<info organisation="foo" module="bar" />
<configurations>
<conf name="main" />
<conf name="build" visibility="private"
description="Artifacts necessary for Ant build" />
</configurations>
<dependencies defaultconf="main" defaultconfmapping="*->master,runtime()">
<dependency org="org.apache.commons" name="commons-lang3" rev="3.18.0" />
<dependency org="net.sourceforge.cobertura" name="cobertura" rev="2.1.1" conf="build" />
</dependencies>
</ivy-module>
```
**Before**
```
[ivy:checkdepsupdate] Dependencies updates available :
[ivy:checkdepsupdate] org.apache.commons#commons-lang3 3.3.2 -> 3.18.0
```
**After**
```
[ivy:checkdepsupdate] Dependencies updates available :
[ivy:checkdepsupdate] All dependencies are up to date
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]