myGrid

Raven ignores exclusions

Details

  • Type: Bug Bug
  • Status: Resolved Resolved
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 1.5
  • Fix Version/s: 1.5
  • Component/s: Taverna Core
  • Labels:
    None

Description

It appears that Raven ignores exclusions when defined in the pom. This occurs in the pom for taverna-contrib :

<dependency>
      <groupId>dom4j</groupId>
      <artifactId>dom4j</artifactId>
      <version>1.5</version>
      <exclusions>
        <exclusion>
          <artifactId>jsr173</artifactId>
          <groupId>javax.xml</groupId>
        </exclusion>
        <exclusion>
          <artifactId>pull-parser</artifactId>
          <groupId>pull-parser</groupId>
        </exclusion>
      </exclusions>
</dependency>

discovered as when I try to use that module I get ArtifactNotFound exceptions for the artifact jsr173.

Activity

Hide
Stian Soiland-Reyes added a comment - 2006-10-25 17:17

org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom also does something like this

Show
Stian Soiland-Reyes added a comment - 2006-10-25 17:17 org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom also does something like this
Hide
Stian Soiland-Reyes added a comment - 2006-10-26 15:26

Now handles exclusions from pom-files.

Note that jsr173 is still attempted loaded (even with the example dom4j test) and a traceback will be outputted. This will have to be further investigated.

Show
Stian Soiland-Reyes added a comment - 2006-10-26 15:26 Now handles exclusions from pom-files. Note that jsr173 is still attempted loaded (even with the example dom4j test) and a traceback will be outputted. This will have to be further investigated.
Hide
Stian Soiland-Reyes added a comment - 2006-10-26 15:26

Not sure if it is fixed.. David?

Show
Stian Soiland-Reyes added a comment - 2006-10-26 15:26 Not sure if it is fixed.. David?
Hide
Stian Soiland-Reyes added a comment - 2006-10-26 15:41

I'm sorry.. Stuart

Show
Stian Soiland-Reyes added a comment - 2006-10-26 15:41 I'm sorry.. Stuart
Hide
Stian Soiland-Reyes added a comment - 2006-10-26 16:27

Fixed the stack trace thing, didn't inherit exclusions when addArtifact() made a new ArtifactImpl(old, repos).

Show
Stian Soiland-Reyes added a comment - 2006-10-26 16:27 Fixed the stack trace thing, didn't inherit exclusions when addArtifact() made a new ArtifactImpl(old, repos).

People

Vote (0)
Watch (0)

Dates

  • Created:
    2006-10-20 14:56
    Updated:
    2006-10-26 16:27
    Resolved:
    2006-10-26 15:26