[jboss-jira] [JBoss JIRA] Commented: (JBAS-6988) versions for jboss-ejb3-proxy-spi and jboss-ejb3-proxy-impl jars are not declared in the jboss-as-parent pom's dependency management
Ian Springer (JIRA)
jira-events at lists.jboss.org
Thu May 28 20:45:56 EDT 2009
[ https://jira.jboss.org/jira/browse/JBAS-6988?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12469572#action_12469572 ]
Ian Springer commented on JBAS-6988:
------------------------------------
Ah, ok.
So what I was trying to do to pull all the versions for AS modules as well as external components into the jboss-as-5 plugin's pom was:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-parent</artifactId>
<version>${jbossas.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
I would have thought this would also pull in jboss-as-parent's ancestor pom's, but it looks like the import is not transitive in that sense. Changing to:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-parent</artifactId>
<version>${jbossas.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-component-matrix</artifactId>
<version>${jbossas.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
did the trick (i.e. I was able to declare the two ejb3-proxy deps without specifying versions).
Thanks,
Ian
> versions for jboss-ejb3-proxy-spi and jboss-ejb3-proxy-impl jars are not declared in the jboss-as-parent pom's dependency management
> ------------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBAS-6988
> URL: https://jira.jboss.org/jira/browse/JBAS-6988
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Build System
> Affects Versions: JBossAS-5.1.0.GA
> Reporter: Ian Springer
> Assignee: Paul Gier
> Fix For: JBossAS-5.2.0.Beta1
>
>
> Versions for the following two deps are not declared in the jboss-as-parent pom's dependency management:
> <dependency>
> <groupId>org.jboss.ejb3</groupId>
> <artifactId>jboss-ejb3-proxy-spi</artifactId>
> <version>1.0.1-SNAPSHOT</version>
> <classifier>client</classifier>
> </dependency>
> <dependency>
> <groupId>org.jboss.ejb3</groupId>
> <artifactId>jboss-ejb3-proxy-impl</artifactId>
> <version>1.0.3-SNAPSHOT</version>
> <classifier>client</classifier>
> </dependency>
> Note, this needs to be fixed in both the 5.1.x branch and the EAP5 branch (and possibly in trunk).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list