[JBoss Portal] - Re: Two Questions: Does JPortal have an index.html? How are
by jbportaldeveloper28
Thanks for the advise. I did try modifying that default-object.xml already but didn't have any luck. Here is what I did:
| <?xml version="1.0" encoding="UTF-8"?>
| <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| ~ JBoss, a division of Red Hat ~
| ~ Copyright 2006, Red Hat Middleware, LLC, and individual ~
| ~ contributors as indicated by the @authors tag. See the ~
| ~ copyright.txt in the distribution for a full listing of ~
| ~ individual contributors. ~
| ~ ~
| ~ This is free software; you can redistribute it and/or modify it ~
| ~ under the terms of the GNU Lesser General Public License as ~
| ~ published by the Free Software Foundation; either version 2.1 of ~
| ~ the License, or (at your option) any later version. ~
| ~ ~
| ~ This software is distributed in the hope that it will be useful, ~
| ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~
| ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ~
| ~ Lesser General Public License for more details. ~
| ~ ~
| ~ You should have received a copy of the GNU Lesser General Public ~
| ~ License along with this software; if not, write to the Free ~
| ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ~
| ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. ~
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
|
| <!DOCTYPE deployments PUBLIC
| "-//JBoss Portal//DTD Portal Object 2.6//EN"
| "http://www.jboss.org/portal/dtd/portal-object_2_6.dtd">
|
| <deployments>
| <deployment>
| <context>
| <context-name/>
| <properties>
| <!--
| | Set the layout for the default portal, see also portal-layouts.xml.
| -->
| <property>
| <name>layout.id</name>
| <value>generic</value>
| </property>
| <!--
| | Set the theme for the default portal, see also portal-themes.xml.
| -->
| <property>
| <name>theme.id</name>
| <value>renewal</value>
| </property>
| <!--
| | Set the default render set name (used by the render tag in layouts), see also portal-renderSet.xml
| -->
| <property>
| <name>theme.renderSetId</name>
| <value>divRenderer</value>
| </property>
| <!--
| | The default portal name, if the property is not explicited then the default portal name is "default"
| -->
| <property>
| <name>portal.defaultObjectName</name>
| <value>default</value>
| </property>
|
| <!-- Control policy config -->
| <property>
| <name>control.portal.access_denied</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.unavailable</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.not_found</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.internal_error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.portal.error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.portal.resource_uri</name>
| <value>/WEB-INF/jsp/error/portal.jsp</value>
| </property>
| <property>
| <name>control.page.access_denied</name>
| <!--<value>hide</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.page.unavailable</name>
| <!--<value>hide</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.page.not_found</name>
| <!--<value>hide</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.page.internal_error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.page.error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.page.resource_uri</name>
| <value>/WEB-INF/jsp/error/page.jsp</value>
| </property>
| </properties>
| </context>
| </deployment>
| <deployment>
| <parent-ref/>
| <if-exists>keep</if-exists>
| <portal>
| <portal-name>default</portal-name>
| <supported-modes>
| <mode>view</mode>
| <mode>edit</mode>
| <mode>help</mode>
| </supported-modes>
| <supported-window-states>
| <window-state>normal</window-state>
| <window-state>minimized</window-state>
| <window-state>maximized</window-state>
| </supported-window-states>
| <security-constraint>
| <policy-permission>
| <action-name>viewrecursive</action-name>
| <action-name>personalizerecursive</action-name>
| <unchecked/>
| </policy-permission>
| </security-constraint>
| <coordination>
| <wirings>
| <implicit-mode>TRUE</implicit-mode>
| </wirings>
| <bindings>
| <implicit-mode>TRUE</implicit-mode>
| </bindings>
| </coordination>
| <page>
| <page-name>default</page-name>
| <display-name xml:lang="en">Home</display-name>
| <display-name xml:lang="it">Home</display-name>
| <display-name xml:lang="es">Home</display-name>
| <display-name xml:lang="fr">Accueil</display-name>
| <display-name xml:lang="ru">ÃÂþüþù</display-name>
| <properties>
| <property>
| <name>order</name>
| <value>1</value>
| </property>
| </properties>
| <window>
| <window-name>JSPPortletWindow</window-name>
| <instance-ref>JSPPortletInstance</instance-ref>
| <region>left</region>
| <height>0</height>
| </window>
| <window>
| <window-name>CMSWindow</window-name>
| <content>
| <content-type>cms</content-type>
| <content-uri>/default/index.html</content-uri>
| </content>
| <region>center</region>
| <height>1</height>
| </window>
| <window>
| <window-name>IdentityUserPortletWindow</window-name>
| <instance-ref>IdentityUserPortletInstance</instance-ref>
| <region>left</region>
| <height>1</height>
| </window>
| <window>
| <window-name>CurrentUsersPortletWindow</window-name>
| <instance-ref>CurrentUsersPortletInstance</instance-ref>
| <region>left</region>
| <height>2</height>
| </window>
| </page>
| </portal>
| </deployment>
| <deployment>
| <if-exists>keep</if-exists>
| <context>
| <context-name>dashboard</context-name>
| <properties>
|
| <!--
| | Set the layout for the default portal, see also portal-layouts.xml.
| -->
| <property>
| <name>layout.id</name>
| <value>generic</value>
| </property>
|
| <!--
| | Set the theme for the default portal, see also portal-themes.xml.
| -->
| <property>
| <name>theme.id</name>
| <value>renewal</value>
| </property>
|
| <!--
| | Set the default render set name (used by the render tag in layouts), see also portal-renderSet.xml
| -->
| <property>
| <name>theme.renderSetId</name>
| <value>divRenderer</value>
| </property>
|
| <!--
| | Set the dnd property
| -->
| <property>
| <name>theme.dyna.dnd_enabled</name>
| <value>true</value>
| </property>
|
| <!--
| | Set the partial refresh property
| -->
| <property>
| <name>theme.dyna.partial_refresh_enabled</name>
| <value>false</value>
| </property>
|
| <!-- Control policy config -->
| <property>
| <name>control.portal.access_denied</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.unavailable</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.not_found</name>
| <!--<value>ignore</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.portal.internal_error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.portal.error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.portal.resource_uri</name>
| <value>/WEB-INF/jsp/error/portal.jsp</value>
| </property>
| <property>
| <name>control.page.access_denied</name>
| <value>hide</value>
| </property>
| <property>
| <name>control.page.unavailable</name>
| <!--<value>hide</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.page.not_found</name>
| <!--<value>hide</value>-->
| <value>show</value>
| </property>
| <property>
| <name>control.page.internal_error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.page.error</name>
| <value>jsp</value>
| </property>
| <property>
| <name>control.page.resource_uri</name>
| <value>/WEB-INF/jsp/error/page.jsp</value>
| </property>
| </properties>
| </context>
| </deployment>
| <deployment>
| <parent-ref/>
| <if-exists>keep</if-exists>
| <portal>
| <portal-name>template</portal-name>
| <supported-modes>
| <mode>view</mode>
| <mode>edit</mode>
| <mode>help</mode>
| </supported-modes>
| <supported-window-states>
| <window-state>normal</window-state>
| <window-state>minimized</window-state>
| <window-state>maximized</window-state>
| </supported-window-states>
| <page>
| <page-name>default</page-name>
| <display-name xml:lang="en">Home</display-name>
| <display-name xml:lang="it">Home</display-name>
| <display-name xml:lang="es">Home</display-name>
| <display-name xml:lang="fr">Accueil</display-name>
| <display-name xml:lang="ru">ÃÂþüþù</display-name>
| <properties>
| <property>
| <name>order</name>
| <value>1</value>
| </property>
| </properties>
| <window>
| <window-name>JSPPortletWindow</window-name>
| <instance-ref>JSPPortletInstance</instance-ref>
| <region>left</region>
| <height>0</height>
| </window>
| <window>
| <window-name>CMSWindow</window-name>
| <content>
| <content-type>cms</content-type>
| <content-uri>/default/index.html</content-uri>
| </content>
| <region>center</region>
| <height>0</height>
| </window>
| <window>
| <window-name>IdentityUserPortletWindow</window-name>
| <instance-ref>IdentityUserPortletInstance</instance-ref>
| <region>left</region>
| <height>1</height>
| </window>
| </page>
| </portal>
| </deployment>
| <deployment>
| <parent-ref/>
| <if-exists>keep</if-exists>
| <portal>
| <portal-name>admin</portal-name>
| <supported-modes>
| <mode>view</mode>
| <mode>edit</mode>
| <mode>help</mode>
| <mode>admin</mode>
| </supported-modes>
| <supported-window-states>
| <window-state>normal</window-state>
| <window-state>minimized</window-state>
| <window-state>maximized</window-state>
| </supported-window-states>
| <security-constraint>
| <policy-permission>
| <action-name>viewrecursive</action-name>
| <role-name>Admin</role-name>
| </policy-permission>
| </security-constraint>
| <page>
| <page-name>default</page-name>
| <display-name xml:lang="en">Admin</display-name>
| <display-name xml:lang="it">Amministrazione</display-name>
| <display-name xml:lang="es">Administración</display-name>
| <display-name xml:lang="fr">Administration</display-name>
| <display-name xml:lang="ru">ÃÂôüøýøÃÂÃÂÃÂøÃÂþòðýøõ</display-name>
| <window>
| <window-name>AdminPortletWindow</window-name>
| <instance-ref>AdminPortletInstance</instance-ref>
| <region>center</region>
| <height>0</height>
| <properties>
| <property>
| <name>theme.renderSetId</name>
| <value>emptyRenderer</value>
| </property>
| </properties>
| </window>
| <properties>
| <property>
| <name>layout.id</name>
| <value>1column</value>
| </property>
| </properties>
| </page>
| <page>
| <page-name>Members</page-name>
| <display-name xml:lang="en">Members</display-name>
| <display-name xml:lang="it">Membri</display-name>
| <display-name xml:lang="fr">Utilisateurs</display-name>
| <window>
| <window-name>IdentityAdminPortletWindow</window-name>
| <instance-ref>IdentityAdminPortletInstance</instance-ref>
| <region>center</region>
| <height>0</height>
| <properties>
| <property>
| <name>theme.renderSetId</name>
| <value>emptyRenderer</value>
| </property>
| </properties>
| </window>
| <properties>
| <property>
| <name>layout.id</name>
| <value>1column</value>
| </property>
| </properties>
| </page>
| </portal>
| </deployment>
| </deployments>
|
|
I commented out the original parameter and updated it below it. Not sure if those were the correct values (ie. show vs display, etc)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186766#4186766
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4186766
17 years, 5 months
[EJB 3.0] - Re: EJB 3.1 Embeddable
by karltraunmueller
Carlo,
thanks for responding.
Yes, 2.0.9, maven output is:
D:\sandbox\projects\green\EmbeddedEjbTest>mvn -Dverbose=true dependency:tree
| [INFO] Scanning for projects...
| [INFO] Searching repository for plugin with prefix: 'dependency'.
| [INFO] ------------------------------------------------------------------------
| [INFO] Building Unnamed - com.hji:EmbeddedEjbTest:jar:0.1-SNAPSHOT
| [INFO] task-segment: [dependency:tree]
| [INFO] ------------------------------------------------------------------------
| [INFO] [dependency:tree]
| [INFO] com.hji:EmbeddedEjbTest:jar:0.1-SNAPSHOT
| [INFO] +- org.jboss.ejb3:jboss-ejb3-embedded:jar:1.0.0-SNAPSHOT:compile
| [INFO] | +- jboss.jbossts:jbossjta:jar:4.4.0.CR2:compile
| [INFO] | +- org.jboss:jboss-vfs:jar:2.0.0.CR1:compile
| [INFO] | | +- org.jboss:jboss-common-core:jar:2.2.8.GA:compile
| [INFO] | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile
| [INFO] | +- org.jboss.aop:jboss-aop-deployer-jdk50:jar:2.0.0.CR17:runtime
| [INFO] | +- org.jboss.ejb3:jboss-ejb3-api:jar:3.1.0-SNAPSHOT:compile
| [INFO] | | +- jboss.jbossws:jboss-jaxrpc:jar:1.0.4.GA:compile
| [INFO] | | \- org.jboss.javaee:jboss-transaction-api:jar:1.0.1.CR2:compile
| [INFO] | +- org.jboss.ejb3:jboss-ejb3-core:jar:1.0.0-Beta3:compile
| [INFO] | | +- javassist:javassist:jar:3.7.1.GA:compile
| [INFO] | | +- org.hibernate:hibernate:jar:3.2.6.ga:compile
| [INFO] | | | +- net.sf.ehcache:ehcache:jar:1.2.3:compile
| [INFO] | | | | +- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for duplicate)
| [INFO] | | | | \- (commons-collections:commons-collections:jar:2.1:compile - omitted for conflict with 2.1.1)
| [INFO] | | | +- javax.transaction:jta:jar:1.0.1B:compile
| [INFO] | | | +- commons-logging:commons-logging:jar:1.0.4:compile
| [INFO] | | | +- asm:asm-attrs:jar:1.5.3:compile
| [INFO] | | | +- dom4j:dom4j:jar:1.6.1:compile
| [INFO] | | | +- antlr:antlr:jar:2.7.6:compile
| [INFO] | | | +- cglib:cglib:jar:2.1_3:compile
| [INFO] | | | | \- (asm:asm:jar:1.5.3:compile - omitted for duplicate)
| [INFO] | | | +- asm:asm:jar:1.5.3:compile
| [INFO] | | | \- commons-collections:commons-collections:jar:2.1.1:compile
| [INFO] | | +- org.hibernate:hibernate-annotations:jar:3.3.1.GA:compile
| [INFO] | | | +- (org.hibernate:hibernate:jar:3.2.6.ga:compile - omitted for duplicate)
| [INFO] | | | +- org.hibernate:hibernate-commons-annotations:jar:3.0.0.ga:compile
| [INFO] | | | | \- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for duplicate)
| [INFO] | | | +- (org.hibernate:ejb3-persistence:jar:1.0.1.GA:compile - omitted for conflict with 1.0.2.GA)
| [INFO] | | | \- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for duplicate)
| [INFO] | | +- org.hibernate:hibernate-entitymanager:jar:3.3.2.GA:compile
| [INFO] | | | +- (org.hibernate:hibernate:jar:3.2.6.ga:compile - omitted for duplicate)
| [INFO] | | | +- (org.hibernate:hibernate-annotations:jar:3.3.1.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.hibernate:hibernate-commons-annotations:jar:3.0.0.ga:compile - omitted for duplicate)
| [INFO] | | | +- (org.hibernate:ejb3-persistence:jar:1.0.1.GA:compile - omitted for duplicate)
| [INFO] | | | +- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for duplicate)
| [INFO] | | | \- (javassist:javassist:jar:3.4.GA:compile - omitted for conflict with 3.7.1.GA)
| [INFO] | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | +- org.jboss:jboss-transaction-spi:jar:5.0.0.Beta4:compile
| [INFO] | | | +- jboss:jboss-common-logging-spi:jar:2.0.4.GA:compile
| [INFO] | | | +- (org.jboss.javaee:jboss-jca-api:jar:1.5.0.20070913080910:compile - omitted for conflict with 1.5.0.CR1)
| [INFO] | | | \- (org.jboss.javaee:jboss-transaction-api:jar:1.0.1.20070913080910:compile - omitted for conflict with 1.0.1.CR2)
| [INFO] | | +- org.jboss.aop:jboss-aop:jar:2.0.0.CR15:compile
| [INFO] | | | +- org.apache.ant:ant:jar:1.7.0:compile
| [INFO] | | | | \- org.apache.ant:ant-launcher:jar:1.7.0:compile
| [INFO] | | | +- (javassist:javassist:jar:3.8.0.GA:compile - omitted for conflict with 3.7.1.GA)
| [INFO] | | | +- (org.jboss:jboss-reflect:jar:2.0.0.Beta12:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | +- (org.jboss:jboss-mdr:jar:2.0.0.Beta15:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.7.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- qdox:qdox:jar:1.6:compile
| [INFO] | | | \- (trove:trove:jar:2.1.1:compile - omitted for conflict with 1.0.2)
| [INFO] | | +- org.jboss.aop:jboss-aop-aspects:jar:2.0.0.CR7:compile
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0-SNAPSHOT:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | +- jboss:jboss-test:jar:1.0.3.GA:compile
| [INFO] | | | | +- org.apache.ant:ant-junit:jar:1.7.0:compile
| [INFO] | | | | | +- (org.apache.ant:ant:jar:1.7.0:compile - omitted for duplicate)
| [INFO] | | | | | \- (junit:junit:jar:3.8.2:compile - omitted for conflict with 3.8.1)
| [INFO] | | | | +- (apache-xerces:xml-apis:jar:2.7.1:compile - omitted for conflict with 2.9.1)
| [INFO] | | | | +- apache-httpclient:commons-httpclient:jar:2.0.2:compile
| [INFO] | | | | +- (oswego-concurrent:concurrent:jar:1.3.4:compile - omitted for conflict with 1.3.4-jboss-update1)
| [INFO] | | | | +- jboss:jboss-logging-spi:jar:2.0.2.GA:compile
| [INFO] | | | | +- jboss.profiler.jvmti:jboss-profiler-jvmti:jar:1.0.0.CR5:compile
| [INFO] | | | | +- jboss:jboss-logging-log4j:jar:2.0.2.GA:compile
| [INFO] | | | | | +- (jboss:jboss-logging-spi:jar:2.0.2.GA:compile - omitted for duplicate)
| [INFO] | | | | | +- jboss:jboss-common-core:jar:2.0.2.GA:compile
| [INFO] | | | | | | +- (apache-xerces:xml-apis:jar:2.7.1:compile - omitted for duplicate)
| [INFO] | | | | | | +- (apache-httpclient:commons-httpclient:jar:2.0.2:compile - omitted for duplicate)
| [INFO] | | | | | | +- (oswego-concurrent:concurrent:jar:1.3.4:compile - omitted for duplicate)
| [INFO] | | | | | | +- apache-slide:webdavlib:jar:2.0:compile
| [INFO] | | | | | | \- (jboss:jboss-logging-spi:jar:2.0.2.GA:compile - omitted for duplicate)
| [INFO] | | | | | \- apache-log4j:log4j:jar:1.2.14:compile
| [INFO] | | | | +- junit:junit:jar:3.8.1:compile
| [INFO] | | | | \- (log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | +- (log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | +- bsh:bsh:jar:1.3.0:compile
| [INFO] | | | +- (org.jboss.javaee:jboss-jca-api:jar:1.5.0-SNAPSHOT:compile - omitted for conflict with 1.5.0.20070913080910)
| [INFO] | | | \- (org.jboss.javaee:jboss-servlet-api:jar:2.5.0-SNAPSHOT:compile - omitted for conflict with 2.5.0.CR1)
| [INFO] | | +- org.jboss.cache:jbosscache-core:jar:2.1.1.GA:compile
| [INFO] | | | +- jgroups:jgroups:jar:2.6.2:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.3.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | \- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.aspects:jboss-remoting-aspects:jar:1.0.1.CR4:compile
| [INFO] | | | +- jboss:jboss-serialization:jar:1.0.3.GA:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | +- (org.jboss.remoting:jboss-remoting:jar:2.4.0.CR2:compile - omitted for conflict with 2.5.0.GA)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR11:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | +- org.jboss.aspects:jboss-transaction-aspects:jar:1.0.0.Beta1:compile
| [INFO] | | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR8:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | | +- (org.jboss.javaee:jboss-transaction-api:jar:1.0.1.CR1:compile - omitted for conflict with 1.0.1.CR2)
| [INFO] | | | | \- (org.jboss:jboss-transaction-spi:jar:5.0.0.Beta4:compile - omitted for duplicate)
| [INFO] | | | \- org.jboss.aspects:jboss-security-aspects:jar:1.0.0.Beta1:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR8:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.Beta13:compile - omitted for conflict with 2.0.0.Beta14)
| [INFO] | | | +- (org.jboss.security:jboss-security-spi:jar:2.0.2.Beta5:compile - omitted for conflict with 2.0.2.CR3)
| [INFO] | | | +- (org.jboss.javaee:jboss-jaspi-api:jar:1.0.0.CR1:compile - omitted for conflict with 1.0.0.CR2)
| [INFO] | | | +- (org.jboss.security:jbosssx-client:jar:2.0.2.Beta5:compile - omitted for conflict with 2.0.2.CR6)
| [INFO] | | | \- javax.security:jacc:jar:1.0:compile
| [INFO] | | +- org.jboss.cluster:jboss-ha-client:jar:1.1.0.CR4:compile
| [INFO] | | | \- (org.jboss:jboss-common-core:jar:2.2.7.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | +- org.jboss.cluster:jboss-ha-server-api:jar:1.1.0.CR4:compile
| [INFO] | | | \- (org.jboss.cluster:jboss-ha-client:jar:1.1.0.CR4:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-async:jar:0.1.1:compile
| [INFO] | | | +- (org.jboss.aop:jboss-aop-aspects:jar:2.0.0.CR7:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR11:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | \- (org.jboss.aspects:jboss-remoting-aspects:jar:1.0.1.CR2:compile - omitted for conflict with 1.0.1.CR4)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-cache:jar:0.13.0:compile
| [INFO] | | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (trove:trove:jar:1.0.2:runtime - omitted for conflict with 2.1.1)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-log4j:jar:2.0.5.GA:compile - scope updated from runtime; omitted for duplicate)
| [INFO] | | | \- (jboss:jboss-serialization:jar:1.0.3.GA:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-common:jar:0.1.6:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.Beta14:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-security:jar:1.0.0-Beta1:compile
| [INFO] | | | +- org.jboss.aspects:jboss-current-invocation-aspects:jar:1.0.0.CR1:compile
| [INFO] | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.remoting:jboss-remoting:jar:2.4.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | \- (org.jboss.aop:jboss-aop:jar:2.0.0.CR11:compile - omitted for conflict with 2.0.0.CR15)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-interceptors:jar:0.13.5:compile - omitted for conflict with 1.0.0-Beta1)
| [INFO] | | | +- (org.jboss.security:jboss-security-spi:jar:2.0.2.CR3:compile - omitted for conflict with 2.0.2.CR5)
| [INFO] | | | +- (org.jboss.security:jbosssx:jar:2.0.2.CR3:compile - omitted for conflict with 2.0.2.CR5)
| [INFO] | | | +- (org.jboss.javaee:jboss-jacc-api:jar:1.1.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-ext-api:jar:0.3:compile - omitted for conflict with 0.4)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-ext-api-impl:jar:0.3:compile - omitted for conflict with 0.4.1)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR15:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-metadata:jar:0.13.0:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-ext-api:jar:0.4:compile
| [INFO] | | | \- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-ext-api-impl:jar:0.4.1:compile
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-ext-api:jar:0.4:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-interceptors:jar:1.0.0-Beta1:compile
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-metadata:jar:0.13.0:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-common:jar:0.1.4:compile - omitted for conflict with 0.1.6)
| [INFO] | | | +- (org.jboss:jboss-reflect:jar:2.0.0.Beta12:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aspects:jboss-current-invocation-aspects:jar:1.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR15:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-metadata:jar:0.13.0:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-mdr:jar:2.0.0.Beta17:compile - omitted for conflict with 2.0.0.Beta15)
| [INFO] | | | \- (org.jboss.aop:jboss-aop:jar:2.0.0.CR15:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-proxy:jar:0.1.5:compile
| [INFO] | | | +- (org.jboss.aspects:jboss-remoting-aspects:jar:1.0.1.CR3:compile - omitted for conflict with 1.0.1.CR4)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-common:jar:0.1.5:compile - omitted for conflict with 0.1.6)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-interceptors:jar:0.13.3:compile - omitted for conflict with 1.0.0-Beta1)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.naming:jnpserver:jar:5.0.0.CR1:compile - omitted for conflict with 5.0.0.CR1)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-proxy-clustered:jar:0.1.3:compile
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-proxy:jar:0.1.2:compile - omitted for conflict with 0.1.5)
| [INFO] | | | +- (org.jboss.cluster:jboss-ha-client:jar:1.1.0.CR4:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.cluster:jboss-ha-server-api:jar:1.1.0.CR4:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.ejb3:jboss-ejb3-transactions:jar:0.13.6:compile
| [INFO] | | | +- (org.jboss.aspects:jboss-current-invocation-aspects:jar:1.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-transaction-spi:jar:5.0.0.Beta4:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aop:jboss-aop:jar:2.0.0.CR15:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.aspects:jboss-transaction-aspects:jar:1.0.0.Beta1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.0.Beta14:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-ext-api-impl:jar:0.3:compile - omitted for conflict with 0.4.1)
| [INFO] | | | +- (org.jboss.ejb3:jboss-ejb3-interceptors:jar:0.13.5:compile - omitted for conflict with 1.0.0-Beta1)
| [INFO] | | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | \- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR1:compile
| [INFO] | | | +- (org.jboss.javaee:jboss-transaction-api:jar:1.0.1.CR1:compile - omitted for conflict with 1.0.1.CR2)
| [INFO] | | | \- (jboss.jbossws:jboss-jaxrpc:jar:1.0.4.GA:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.javaee:jboss-jacc-api:jar:1.1.0.CR1:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | \- (org.jboss.javaee:jboss-servlet-api:jar:2.5.0.CR1:compile - omitted for conflict with 2.5.0-SNAPSHOT)
| [INFO] | | +- org.jboss.javaee:jboss-jca-api:jar:1.5.0.CR1:compile
| [INFO] | | | \- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | +- org.jboss.javaee:jboss-jms-api:jar:1.1.0.CR1:compile
| [INFO] | | +- org.jboss.javaee:jboss-servlet-api:jar:2.5.0.CR1:compile
| [INFO] | | +- org.jboss.jpa:jboss-jpa-deployers:jar:0.1.1:compile
| [INFO] | | | +- (org.hibernate:hibernate-entitymanager:jar:3.3.2.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-transaction-spi:jar:5.0.0.Beta4:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs:jar:2.0.0.Beta18:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | \- (org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.0.Beta18:compile - omitted for conflict with 2.0.0.Beta14)
| [INFO] | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.security:jboss-security-spi:jar:2.0.2.CR5:compile
| [INFO] | | +- org.jboss.security:jbosssx:jar:2.0.2.CR5:compile
| [INFO] | | +- org.jboss.ws:jbossws-spi:jar:1.0.3.GA:compile
| [INFO] | | +- quartz:quartz:jar:1.6.0:compile
| [INFO] | | \- trove:trove:jar:1.0.2:compile
| [INFO] | +- org.jboss.deployers:jboss-deployers-core-spi:jar:2.0.0.CR1:compile
| [INFO] | | \- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | +- org.jboss.deployers:jboss-deployers-impl:jar:2.0.0.CR1:compile
| [INFO] | | +- org.jboss.deployers:jboss-deployers-spi:jar:2.0.0.CR1:compile
| [INFO] | | | \- (org.jboss.deployers:jboss-deployers-structure-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.cl:jboss-classloading:jar:2.0.0.CR2:compile
| [INFO] | | | \- org.jboss.cl:jboss-classloader:jar:2.0.0.CR2:compile
| [INFO] | | | \- (org.jboss.integration:jboss-classloading-spi:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | +- org.jboss:jboss-mdr:jar:2.0.0.CR1:compile
| [INFO] | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | \- (javassist:javassist:jar:3.8.1.GA:compile - omitted for conflict with 3.7.1.GA)
| [INFO] | +- org.jboss.deployers:jboss-deployers-vfs:jar:2.0.0.CR1:compile
| [INFO] | | +- org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.0.CR1:compile
| [INFO] | | | +- (org.jboss:jboss-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.cl:jboss-classloading:jar:2.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jbossxb:jar:2.0.0.CR14:compile - omitted for conflict with 2.0.0.CR12)
| [INFO] | | | \- stax:stax-api:jar:1.0:compile
| [INFO] | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | +- org.jboss.cl:jboss-classloading-vfs:jar:2.0.0.CR2:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.deployers:jboss-deployers-core:jar:2.0.0.CR1:compile
| [INFO] | | +- org.jboss.deployers:jboss-deployers-client:jar:2.0.0.CR1:compile
| [INFO] | | \- (org.jboss.deployers:jboss-deployers-impl:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | +- org.jboss.deployers:jboss-deployers-structure-spi:jar:2.0.0.CR1:compile
| [INFO] | | +- org.jboss.deployers:jboss-deployers-client-spi:jar:2.0.0.CR1:compile
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-core-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | \- org.jboss.man:jboss-managed:jar:2.0.0.CR1:compile
| [INFO] | | | \- (org.jboss.man:jboss-metatype:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | +- org.jboss.jbossas:jboss-as-server:jar:5.0.0.CR2:compile
| [INFO] | | +- sun-jaxb:jaxb-api:jar:2.1.4:compile
| [INFO] | | +- org.jboss.jbossas:jboss-as-deployment:jar:5.0.0.CR2:compile
| [INFO] | | | +- (javax.security:jaas:jar:1.0.01:compile - omitted for duplicate)
| [INFO] | | | +- (sun-jaxb:jaxb-api:jar:2.1.4:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.javaee:jboss-jad-api:jar:1.2.0.CR2:compile
| [INFO] | | | | +- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.remoting:jboss-remoting:jar:2.5.0.GA:compile - omitted for conflict with 2.4.0.CR2)
| [INFO] | | | +- (org.jboss.security:jboss-security-spi:jar:2.0.2.CR6:compile - omitted for conflict with 2.0.2.CR5)
| [INFO] | | | +- (org.jboss.security:jbosssx-client:jar:2.0.2.CR6:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.ws.native:jbossws-native-saaj:jar:3.0.3.GA:compile - omitted for duplicate)
| [INFO] | | | +- (jpl-pattern:jpl-pattern:jar:1.0:compile - omitted for duplicate)
| [INFO] | | | +- (jpl-util:jpl-util:jar:1.0:compile - omitted for duplicate)
| [INFO] | | | +- (log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.metadata:jboss-metadata:jar:1.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.integration:jboss-transaction-spi:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR2:compile - omitted for conflict with 3.0.0.CR1)
| [INFO] | | | +- (org.jboss.javaee:jboss-jacc-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | | +- (org.jboss.javaee:jboss-jca-api:jar:1.5.0.CR2:compile - omitted for conflict with 1.5.0.CR1)
| [INFO] | | | +- (org.jboss.javaee:jboss-jms-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | | +- (org.hibernate:ejb3-persistence:jar:1.0.2.GA:compile - omitted for conflict with 1.0.1.GA)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.naming:jnp-client:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-security:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-system:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-system-jmx:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | \- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.integration:jboss-deployment-spi:jar:5.0.0.CR2:compile
| [INFO] | | +- (org.jboss.jpa:jboss-jpa-deployers:jar:0.1.2:compile - omitted for conflict with 0.1.1)
| [INFO] | | +- (org.jboss.security:jbosssx:jar:2.0.2.CR6:compile - omitted for conflict with 2.0.2.CR5)
| [INFO] | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.metadata:jboss-metadata:jar:1.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- log4j:log4j:jar:1.2.14:compile
| [INFO] | | +- org.jboss.jbossas:jboss-as-system-jmx:jar:5.0.0.CR2:compile
| [INFO] | | | +- (apache-xerces:xml-apis:jar:2.9.1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-core-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-impl:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-structure-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.jbossas:jboss-as-main:jar:5.0.0.CR2:compile
| [INFO] | | | | +- urbanophile:java-getopt:jar:1.0.9:compile
| [INFO] | | | | \- (log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-system:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.jbossas:jboss-as-jmx:jar:5.0.0.CR2:compile
| [INFO] | | | | +- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.integration:jboss-classloading-spi:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | +- org.jboss.jbossas:jboss-as-j2se:test-jar:tests:5.0.0.CR2:compile
| [INFO] | | | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | | | +- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - omitted for duplicate)
| [INFO] | | | | | +- (dom4j:dom4j:jar:1.6.1:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss.integration:jboss-classloading-spi:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss:jboss-reflect:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.Beta12)
| [INFO] | | | | | +- (org.jboss.cl:jboss-classloader:jar:2.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | | \- (apache-xerces:xml-apis:jar:2.9.1:compile - omitted for duplicate)
| [INFO] | | | | +- org.jboss.jbossas:jboss-as-mbeans:jar:5.0.0.CR2:compile
| [INFO] | | | | | +- (apache-xerces:xml-apis:jar:2.9.1:compile - omitted for duplicate)
| [INFO] | | | | | +- (dom4j:dom4j:jar:1.6.1:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | | +- (bcel:bcel:jar:5.1:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | | \- org.jboss.test:jboss-test:jar:1.1.1.GA:compile
| [INFO] | | | | | +- (org.apache.ant:ant:jar:1.7.0:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.apache.ant:ant-junit:jar:1.7.0:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | | +- org.jboss.logging:jboss-logging-log4j:jar:2.0.5.GA:compile
| [INFO] | | | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | | | \- (apache-log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | | | +- (org.jboss:jboss-common-core:jar:2.2.7.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | | | +- (jboss.profiler.jvmti:jboss-profiler-jvmti:jar:1.0.0.CR5:compile - omitted for duplicate)
| [INFO] | | | | | +- (junit:junit:jar:3.8.1:compile - omitted for duplicate)
| [INFO] | | | | | +- (apache-log4j:log4j:jar:1.2.14:compile - omitted for duplicate)
| [INFO] | | | | | \- org.jboss.jbossas:jboss-server-manager:jar:0.1.1.GA:compile
| [INFO] | | | | | \- (junit:junit:jar:4.4:compile - omitted for conflict with 3.8.1)
| [INFO] | | | | \- (junit:junit:jar:3.8.1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | +- org.jboss.jbossas:jboss-as-system:jar:5.0.0.CR2:compile
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.aop:jboss-aop-jdk50:jar:2.0.0.CR17:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.man:jboss-managed:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.man:jboss-metatype:jar:2.0.0.CR1:compile
| [INFO] | | | | +- (org.jboss:jboss-reflect:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.Beta12)
| [INFO] | | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | | \- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-client-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-core-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-structure-spi:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | +- (org.jboss.deployers:jboss-deployers-impl:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.microcontainer:jboss-aop-mc-int:jar:2.0.0.CR1:compile
| [INFO] | | | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | | \- (javassist:javassist:jar:3.8.1.GA:compile - omitted for conflict with 3.7.1.GA)
| [INFO] | | | +- org.jboss.jbossas:jboss-as-bootstrap:jar:5.0.0.CR2:compile
| [INFO] | | | | +- (org.jboss.jbossas:jboss-as-main:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.man:jboss-managed:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | | +- (org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.CR1)
| [INFO] | | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-main:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR2:compile - omitted for conflict with 3.0.0.CR1)
| [INFO] | | +- org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - omitted for duplicate)
| [INFO] | | | +- (dom4j:dom4j:jar:1.6.1:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.integration:jboss-classloading-spi:jar:5.0.0.CR2:compile
| [INFO] | | | | \- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | +- (org.jboss:jboss-reflect:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.Beta12)
| [INFO] | | | +- (org.jboss.cl:jboss-classloader:jar:2.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | \- (apache-xerces:xml-apis:jar:2.9.1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.jbossas:jboss-as-security:jar:5.0.0.CR2:compile
| [INFO] | | | +- (javassist:javassist:jar:3.8.1.GA:compile - omitted for conflict with 3.7.1.GA)
| [INFO] | | | +- (org.jboss.security:jboss-security-spi:jar:2.0.2.CR6:compile - omitted for conflict with 2.0.2.CR5)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-system-jmx:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR2:compile - omitted for conflict with 3.0.0.CR1)
| [INFO] | | | +- (org.jboss.javaee:jboss-jacc-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | | +- (org.jboss.jbossas:jboss-as-j2se:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.naming:jnp-client:jar:5.0.0.CR2:compile - omitted for duplicate)
| [INFO] | | | +- (javax.security:jaas:jar:1.0.01:compile - omitted for duplicate)
| [INFO] | | | +- org.jboss.javaee:jboss-jaspi-api:jar:1.0.0.CR2:compile
| [INFO] | | | \- (org.jboss.security:jbosssx-client:jar:2.0.2.CR6:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.integration:jboss-transaction-spi:jar:5.0.0.CR2:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss.javaee:jboss-jca-api:jar:1.5.0.CR1:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss.javaee:jboss-transaction-api:jar:1.0.1.CR1:compile - omitted for conflict with 1.0.1.CR2)
| [INFO] | | +- (org.jboss.javaee:jboss-jacc-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | +- org.hibernate:ejb3-persistence:jar:1.0.2.GA:compile
| [INFO] | | +- (org.jboss.javaee:jboss-jms-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | +- org.jboss.ws.native:jbossws-native-saaj:jar:3.0.3.GA:compile
| [INFO] | | | \- javax.activation:activation:jar:1.1:compile
| [INFO] | | +- org.jboss.ws.native:jbossws-native-jaxws:jar:3.0.3.GA:compile
| [INFO] | | | +- (org.jboss.ws.native:jbossws-native-saaj:jar:3.0.3.GA:compile - omitted for duplicate)
| [INFO] | | | \- javax.xml.bind:jaxb-api:jar:2.1:compile
| [INFO] | | | +- javax.xml.stream:stax-api:jar:1.0-2:compile
| [INFO] | | | \- (javax.activation:activation:jar:1.1:compile - omitted for duplicate)
| [INFO] | | +- org.jboss.naming:jnp-client:jar:5.0.0.CR2:compile
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.7.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | +- javax.security:jaas:jar:1.0.01:compile
| [INFO] | | +- (org.jboss.javaee:jboss-jca-api:jar:1.5.0.CR2:compile - omitted for conflict with 1.5.0.CR1)
| [INFO] | | +- org.jboss.security:jbosssx-client:jar:2.0.2.CR6:compile
| [INFO] | | +- bcel:bcel:jar:5.1:compile
| [INFO] | | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
| [INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.0.GA:compile
| [INFO] | | +- jpl-util:jpl-util:jar:1.0:compile
| [INFO] | | +- jpl-pattern:jpl-pattern:jar:1.0:compile
| [INFO] | | \- org.jboss.naming:jnpserver:jar:5.0.0.CR1:compile
| [INFO] | | +- (org.jboss:jboss-common-core:jar:2.2.7.GA:compile - omitted for conflict with 2.2.8.GA)
| [INFO] | | \- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | +- org.jboss.metadata:jboss-metadata:jar:1.0.0.CR1:compile
| [INFO] | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.metadata:jboss-metadata:jar:1.0.0.Beta15:compile - omitted for cycle)
| [INFO] | | +- (org.jboss.ejb3:jboss-ejb3-ext-api:jar:0.4:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.javaee:jboss-ejb-api:jar:3.0.0.CR2:compile - omitted for conflict with 3.0.0.CR1)
| [INFO] | | +- (org.jboss.javaee:jboss-jms-api:jar:1.1.0.CR2:compile - omitted for conflict with 1.1.0.CR1)
| [INFO] | | +- (org.hibernate:ejb3-persistence:jar:1.0.2.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.javaee:jboss-transaction-api:jar:1.0.1.CR2:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.ws:jbossws-spi:jar:1.0.5.GA:compile - omitted for conflict with 1.0.3.GA)
| [INFO] | | +- jboss.jbossws:jboss-jaxws:jar:3.0.1-native-2.0.4.GA:compile
| [INFO] | | +- org.jboss:jbossxb:jar:2.0.0.CR13:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | | +- (org.jboss:jboss-reflect:jar:2.0.0.CR1:compile - omitted for conflict with 2.0.0.Beta12)
| [INFO] | | | +- (apache-xerces:xml-apis:jar:2.9.1:compile - omitted for duplicate)
| [INFO] | | | +- apache-xerces:xercesImpl:jar:2.9.1:compile
| [INFO] | | | +- wutka-dtdparser:dtdparser121:jar:1.2.1:compile
| [INFO] | | | +- (javax.activation:activation:jar:1.0.2:compile - omitted for conflict with 1.1)
| [INFO] | | | \- (sun-jaxb:jaxb-api:jar:2.1.4:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss:jboss-vfs:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss:jboss-mdr:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- (sun-jaxb:jaxb-api:jar:2.1.4:compile - omitted for duplicate)
| [INFO] | | \- apache-xerces:xml-apis:jar:2.9.1:compile
| [INFO] | +- org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile
| [INFO] | | +- (org.jboss:jbossxb:jar:2.0.0.CR13:compile - omitted for duplicate)
| [INFO] | | +- org.jboss:jboss-reflect:jar:2.0.0.CR1:compile
| [INFO] | | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | | \- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss:jboss-mdr:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | +- (org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile - omitted for duplicate)
| [INFO] | | \- (org.jboss:jboss-common-core:jar:2.2.8.GA:compile - omitted for duplicate)
| [INFO] | +- org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile
| [INFO] | | +- (org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile - omitted for duplicate)
| [INFO] | | \- (org.jboss:jbossxb:jar:2.0.0.CR13:compile - omitted for duplicate)
| [INFO] | +- (org.jboss.naming:jnpserver:jar:5.0.0.CR1:compile - scope updated from runtime; omitted for duplicate)
| [INFO] | +- apache-logging:commons-logging:jar:1.1.0.jboss:runtime
| [INFO] | +- (oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile - scope updated from runtime; omitted for duplicate)
| [INFO] | \- jboss.jbossts:jbossts-common:jar:4.4.0.CR1:compile
| [INFO] \- org.testng:testng:jar:jdk15:5.8:test
| [INFO] \- (junit:junit:jar:3.8.1:compile - scope updated from test; omitted for duplicate)
| [INFO] ------------------------------------------------------------------------
| [INFO] BUILD SUCCESSFUL
| [INFO] ------------------------------------------------------------------------
| [INFO] Total time: 10 seconds
| [INFO] Finished at: Tue Nov 04 17:37:02 CET 2008
| [INFO] Final Memory: 27M/51M
| [INFO] ------------------------------------------------------------------------
many thanks,
Karl
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186757#4186757
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4186757
17 years, 5 months
[JBoss Tools (users)] - DB inheritance mapping
by ipazmino
Hi,
I have a table that holds general fields, representing a generalization, and two holding specific fields, as they are specializations.
Mapping these entitites I wish to have the following class hierarchy
abstract class Person {
| private String firstname;
| private String lastname;
| //getters & setters
| }
|
| class User extends Person {
| private String username;
| private String password;
| //getters & setters
| }
|
| class Visitor extends Person {
| private Date visitDate;
| //getters & setters
| }
To achieve this, I need to put the following directives in the mapping descriptor for hibernate.
<class name="Payment" table="PAYMENT">
| <id name="id" type="long" column="PAYMENT_ID">
| <generator class="native"/>
| </id>
| <property name="amount" column="AMOUNT"/>
| ...
| <joined-subclass name="CreditCardPayment" table="CREDIT_PAYMENT">
| <key column="PAYMENT_ID"/>
| <property name="creditCardType" column="CCTYPE"/>
| ...
| </joined-subclass>
| </class>
How can I modify the reveng.xml file, so that i can have this configuration done when I generate the entities with the Hibernate Code Generator from JBossTools?
Thanks in advance
IP
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186750#4186750
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4186750
17 years, 5 months