Bug 993951 - Incorrect version of jackson-core-asl dependency
Summary: Incorrect version of jackson-core-asl dependency
Keywords:
Status: VERIFIED
Alias: None
Product: JBoss Fuse Service Works 6
Classification: JBoss
Component: Maven Repository
Version: 6.0.0
Hardware: Unspecified
OS: Unspecified
unspecified
high
Target Milestone: ER3
: 6.0.0
Assignee: Julian Coleman
QA Contact: Matej Melko
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-08-06 13:25 UTC by Jiri Pechanec
Modified: 2023-05-15 19:52 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed:
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Jiri Pechanec 2013-08-06 13:25:08 UTC
switchyard-transform depends on jackson-mapper-asl in version 1.9.9-redhat-2 depends on jackson-core-asl in version 1.9.9-redhat-1 - this is not present

Comment 2 Julian Coleman 2013-09-13 13:26:30 UTC
See also 1005793.

Worked around by adding:

  codehaus-jackson-1.9.9-1.redhat_1.ep6.el6

to the IP tag.

Comment 3 Jiri Pechanec 2013-09-24 07:15:14 UTC
Verified in ER3

Comment 4 Julian Coleman 2013-09-24 15:18:47 UTC
It should be possible to run a build and have maven resolve the correct dependencies, by using a POM similar to the following (which imports the IP
BOM via the parent and dependencyManagement sections), and the incorrect artifacts can be removed from our repository.

<?xml version="1.0" encoding="UTF-8"?>

<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>

    <name>MVN test</name>
    <groupId>org.jboss.ip</groupId>
    <artifactId>test</artifactId>
    <version>0.0.1</version>
    <packaging>pom</packaging>

    <parent>
        <!-- IP/EAP versions (parent) -->
        <groupId>org.jboss.ip.component.management</groupId>
        <artifactId>ip-parent</artifactId>
        <version>1.0-redhat-5</version>
    </parent>

    <dependencyManagement>
        <dependencies>
            <!-- IP/EAP versions (BOM) -->
            <dependency>
                <groupId>org.jboss.ip.component.management</groupId>
                <artifactId>ip-version-master</artifactId>
                <version>1.0-redhat-5</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.component.management</groupId>
                <artifactId>jboss-dependency-management-all</artifactId>
                <version>6.1.0-redhat-2</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxb-provider</artifactId>
            <version>2.3.6.Final-redhat-1</version>
        </dependency>
    </dependencies>
</project>

Comment 5 Jiri Pechanec 2013-10-08 07:46:39 UTC
Verified in ER4 04-Oct-2013 04:44


Note You need to log in before you can comment on or make changes to this bug.