You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by "jaikiran pai (Jira)" <ji...@apache.org> on 2019/09/07 12:30:00 UTC

[jira] [Commented] (IVY-1584) 'ivy:resolve' fails on spring-boot-starter

    [ https://issues.apache.org/jira/browse/IVY-1584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16924847#comment-16924847 ] 

jaikiran pai commented on IVY-1584:
-----------------------------------

This looks like an issue with Spring dependencies itself. 1.5.9.RELEASE of org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE pom.xml has this:
```
...
<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
```
So it requires a tests-jar org.springframework.boot:spring-boot:1.5.9.RELEASE, but there isn't any here http://repo1.maven.org/maven2/org/springframework/boot/spring-boot-test/1.5.9.RELEASE/


> 'ivy:resolve' fails on spring-boot-starter
> ------------------------------------------
>
>                 Key: IVY-1584
>                 URL: https://issues.apache.org/jira/browse/IVY-1584
>             Project: Ivy
>          Issue Type: Bug
>    Affects Versions: 2.5.0-rc1
>            Reporter: Nicholas Lenzi
>            Priority: Major
>
> When we attempt to resolve spring-boot-starter, we get an error indicating org.springframework.boot tests-jar cannot be resolved.  We do not see this issue with IVY 2.4.0.
> We were able to work around this issue by changing the ivy.xml.  Seems like a bug.
> Before:
> {noformat}
> <dependencies>
> <dependency org="org.springframework.boot" name="spring-boot-starter" rev="1.5.9.RELEASE" conf="compile->default">
> </dependency>
> </dependencies>
> {noformat}
> After:
> {noformat}
> <dependencies>
> <dependency org="org.springframework.boot" name="spring-boot" rev="1.5.9.RELEASE" force="true" conf="compile->default"/>
> <dependency org="org.springframework.boot" name="spring-boot-starter-web" rev="1.5.9.RELEASE" conf="compile->default">
> <exclude org="org.springframework.boot" module="spring-boot" />
> </dependency>
> </dependencies>
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)