Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 4.0
-
Fix Version/s: 4.1-milestone-2, 4.0.1
-
Component/s: Extension
-
Labels:None
-
Tests:Unit
-
Documentation:N/A
-
Documentation in Release Notes:N/A
-
Similar issues:
XCOMMONS-106Upgrade Maven Site plugin to version 3.0 XCOMMONS-97Upgrade Maven SSH Wagon to version 2.2 XCOMMONS-245Upgrade Maven Dependency plugin version to 2.5.1 XCOMMONS-102 Upgrade Maven Bundle plugin to version 2.3.6 XCOMMONS-349Upgrade to Maven Surefire plugin 2.13 XCOMMONS-248Upgrade Maven Surefire plugin to version 2.12.3 XCOMMONS-241Upgrade to Maven Dependency plugin v2.5 XCOMMONS-228Extension Manager resolution issue XCOMMONS-80Upgrade Maven Dependency Plugin to 2.4 XCOMMONS-193Upgrade to Maven Enforcer plugin 1.1
Description
Try to deploy org.openid4java:openid4java:0.9.5, it fails not founding any of its dependencies because it requests 1.0 version, while these dependencies are in 0.9.5 version. Here is the pom:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openid4java</groupId>
<artifactId>openid4java-parent</artifactId>
<version>0.9.5</version>
</parent>
<artifactId>openid4java</artifactId>
<packaging>jar</packaging>
<name>OpenID4Java</name>
<reporting>
<outputDirectory>../target/site/${artifactId}/</outputDirectory>
</reporting>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>openid4java-consumer</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>openid4java-server</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>openid4java-server-JdbcServerAssociationStore</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>openid4java-consumer-SampleConsumer</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>openid4java-server-SampleServer</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
</project>
Maybe inheriting from parent version cause an issue ?
I can't reproduce this. Tested with the XE jetty/hsqldb 4.1M1 and latest 4.1 snapshot.
The problem can't comes from the fact that you would already have thoses version in your setup since openid4java 1.0 does not exist yet as far as I can see do I don't understand from where you got that.
Do you have the same issue when you ask to install it ? i.e. does the install plan have the same bug ?