[seam-issues] [JBoss JIRA] Created: (SEAMSECURITY-48) mvn dep scope wrong with seam-security-external + seam-bom

Patrick McFarland (JIRA) jira-events at lists.jboss.org
Thu Mar 24 12:56:45 EDT 2011


mvn dep scope wrong with seam-security-external + seam-bom
----------------------------------------------------------

                 Key: SEAMSECURITY-48
                 URL: https://issues.jboss.org/browse/SEAMSECURITY-48
             Project: Seam Security
          Issue Type: Bug
            Reporter: Patrick McFarland


The following mvn pom snipet

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.jboss.seam</groupId>
        <artifactId>seam-bom</artifactId>
        <version>3.0.0-CR9</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>org.jboss.seam.security</groupId>
      <artifactId>seam-security-external</artifactId>
    </dependency>
  </dependencies>

Does not work the way it should, even though all the poms look fine.

It needs to be

    <dependency>
      <groupId>org.jboss.seam.security</groupId>
      <artifactId>seam-security</artifactId>
    </dependency>
    <dependency>
      <groupId>org.jboss.seam.security</groupId>
      <artifactId>seam-security-external</artifactId>
      <scope>compile</scope>
    </dependency>

which makes no sense, as seam-security-external deps seam-security, and I can't see in seam-bom where its screwing seam-security-external scope up

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the seam-issues mailing list