Hi,
I'm trying to build RHQ from source, following the building guide from the rhq web site.
However, when I'm trying to start the server from <rhqCodeRoot>/ modules/enterprise/server/container/target/rhq-server-4.0.1-SNAPSHOT/bin or<rhqCodeRoot>/ dev-container/bin; I get the following error and the portal application never deploys:
2011-05-12 15:12:49,687 INFO [org.rhq.enterprise.server.core.CoreServer] Version=[4.0.1-SNAPSHOT], Build Number=[f9c0b15], Build Date=[12.may.2011 14.42.10 COT]
2011-05-12 15:12:50,477 INFO [org.jboss.ejb3.entity.PersistenceUnitDeployment] Starting persistence unit persistence.units:ear=rhq.ear,unitName=rhqpu
2011-05-12 15:12:50,497 INFO [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.1.GA
2011-05-12 15:12:52,113 WARN [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=rhq.ear,unitName=rhqpu
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: org.rhq.core.domain.content.RepoContentSource.contentSource in org.rhq.core.domain.content.ContentSource.repoContentSources
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:543)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:508)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
Any help, would be appreciated.
Some key points:
· The code is intact. I'm building RHQ from source because I was planning make some modifications.
· During building with maven, some required libraries must be added manually, using the maven:install command. One in particular was the rhq-core-domain:jar:4.0.0. The pom.xml from RHQ pattern Plugin was asking for the 4.0.0 version jar; Hovewer, the build creates the 4.0.1-Snapshot jar. I used the 4.0.1-Snapshot lib with maven install command in the following way:
mvn install:install-file -DgroupId=org.rhq -DartifactId=rhq-core-domain -Dversion=4.0.0 -Dpackaging=jar -Dfile=/rhq-core-domain-4.0.1-SNAPSHOT
Carlos Enrique Chacón Rodríguez
Software Engineer
Phone: Panamá :(+507) 831.2500 / Ext. 5542;
Venezuela: (+58 212) 706.2500 / Ext. 5542;
Mobile: Panamá: (+507) 640.75835;
Venezuela: (+58 412) 718.8686
the only time I could think where that would happen is your database has not been updated and has an old schema.
You can blow away your database and recreate it anew with the latest schema by doing this:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-P...
On 05/12/2011 04:32 PM, Carlos Enrique Chacon Rodriguez wrote:
Hi,
I’m trying to build RHQ from source, following the building guide from the rhq web site.
However, when I’m trying to start the server from <rhqCodeRoot>/ modules/enterprise/server/container/target/rhq-server-4.0.1-SNAPSHOT/bin or<rhqCodeRoot>/ dev-container/bin; I get the following error and the portal application never deploys:
2011-05-12 15:12:49,687 INFO [org.rhq.enterprise.server.core.CoreServer] Version=[4.0.1-SNAPSHOT], Build Number=[f9c0b15], Build Date=[12.may.2011 14.42.10 COT]
2011-05-12 15:12:50,477 INFO [org.jboss.ejb3.entity.PersistenceUnitDeployment] Starting persistence unit persistence.units:ear=rhq.ear,unitName=rhqpu
2011-05-12 15:12:50,497 INFO [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.1.GA
2011-05-12 15:12:52,113 WARN [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=rhq.ear,unitName=rhqpu
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: org.rhq.core.domain.content.RepoContentSource.contentSource in org.rhq.core.domain.content.ContentSource.repoContentSources
at
org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:543)
at
org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:508)
at
org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
Any help, would be appreciated.
Some key points:
· The code is intact. I’m building RHQ from source because I was planning make some modifications.
· During building with maven, some required libraries must be added manually, using the maven:install command. One in particular was the rhq-core-domain:jar:4.0.0. The pom.xml from RHQ pattern Plugin was asking for the 4.0.0 version jar; Hovewer, the build creates the 4.0.1-Snapshot jar. I used the 4.0.1-Snapshot lib with maven install command in the following way:
mvn install:install-file -DgroupId=org.rhq -DartifactId=rhq-core-domain -Dversion=4.0.0 -Dpackaging=jar -Dfile=/rhq-core-domain-4.0.1-SNAPSHOT
*smtt_mail*
*vineta Carlos Enrique Chacón Rodríguez*
Software Engineer
- Phone: Panamá :*(+507) 831.2500 / *Ext.* 5542;
*Venezuela: *(+58 212) 706.2500 / *Ext. *5542;**
- Mobile: Panamá:* (+507) 640.75835;
*Venezuela:* (+58 412) 718.8686
http://www.smartmatic.com http://www.smartmatic.com/
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
Thanks, Jonh.
I tried your suggestion, but it didn't work. I'm getting the same error with the new bd schema. Others thoughts?
Carlos Enrique Chacón Rodríguez Software Engineer Phone: Panamá :(+507) 831.2500 / Ext. 5542; Venezuela: (+58 212) 706.2500 / Ext. 5542; Mobile: Panamá: (+507) 640.75835; Venezuela: (+58 412) 718.8686 http://www.smartmatic.com
-----Original Message----- From: rhq-users-bounces@lists.fedorahosted.org [mailto:rhq-users-bounces@lists.fedorahosted.org] On Behalf Of John Mazzitelli Sent: jueves, 12 de mayo de 2011 03:38 p.m. To: rhq-users@lists.fedorahosted.org Subject: Re: Problems building and starting RHQ from source
the only time I could think where that would happen is your database has not been updated and has an old schema.
You can blow away your database and recreate it anew with the latest schema by doing this:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-P...
On 05/12/2011 04:32 PM, Carlos Enrique Chacon Rodriguez wrote:
Hi,
I'm trying to build RHQ from source, following the building guide from the rhq web site.
However, when I'm trying to start the server from <rhqCodeRoot>/ modules/enterprise/server/container/target/rhq-server-4.0.1-SNAPSHOT/bin or<rhqCodeRoot>/ dev-container/bin; I get the following error and the portal application never deploys:
2011-05-12 15:12:49,687 INFO [org.rhq.enterprise.server.core.CoreServer] Version=[4.0.1-SNAPSHOT], Build Number=[f9c0b15], Build Date=[12.may.2011 14.42.10 COT]
2011-05-12 15:12:50,477 INFO [org.jboss.ejb3.entity.PersistenceUnitDeployment] Starting persistence unit persistence.units:ear=rhq.ear,unitName=rhqpu
2011-05-12 15:12:50,497 INFO [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.1.GA
2011-05-12 15:12:52,113 WARN [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=rhq.ear,unitName=rhqpu
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: org.rhq.core.domain.content.RepoContentSource.contentSource in org.rhq.core.domain.content.ContentSource.repoContentSources
at
org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:543)
at
org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:508)
at
org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
Any help, would be appreciated.
Some key points:
· The code is intact. I'm building RHQ from source because I was planning make some modifications.
· During building with maven, some required libraries must be added manually, using the maven:install command. One in particular was the rhq-core-domain:jar:4.0.0. The pom.xml from RHQ pattern Plugin was asking for the 4.0.0 version jar; Hovewer, the build creates the 4.0.1-Snapshot jar. I used the 4.0.1-Snapshot lib with maven install command in the following way:
mvn install:install-file -DgroupId=org.rhq -DartifactId=rhq-core-domain -Dversion=4.0.0 -Dpackaging=jar -Dfile=/rhq-core-domain-4.0.1-SNAPSHOT
*smtt_mail*
*vineta Carlos Enrique Chacón Rodríguez*
Software Engineer
- Phone: Panamá :*(+507) 831.2500 / *Ext.* 5542;
*Venezuela: *(+58 212) 706.2500 / *Ext. *5542;**
- Mobile: Panamá:* (+507) 640.75835;
*Venezuela:* (+58 412) 718.8686
http://www.smartmatic.com http://www.smartmatic.com/
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
_______________________________________________ rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
Another thought - your server is pointing to the wrong DB that had an old schema?
Have you ever setup more than one DB for RHQ? Is it possible your development environment is pointing to one DB but your production server is pointing to another?
On 05/12/2011 05:26 PM, Carlos Enrique Chacon Rodriguez wrote:
Thanks, Jonh.
I tried your suggestion, but it didn't work. I'm getting the same error with the new bd schema. Others thoughts?
Carlos Enrique Chacón Rodríguez Software Engineer Phone: Panamá :(+507) 831.2500 / Ext. 5542; Venezuela: (+58 212) 706.2500 / Ext. 5542; Mobile: Panamá: (+507) 640.75835; Venezuela: (+58 412) 718.8686 http://www.smartmatic.com
-----Original Message----- From: rhq-users-bounces@lists.fedorahosted.org [mailto:rhq-users-bounces@lists.fedorahosted.org] On Behalf Of John Mazzitelli Sent: jueves, 12 de mayo de 2011 03:38 p.m. To: rhq-users@lists.fedorahosted.org Subject: Re: Problems building and starting RHQ from source
the only time I could think where that would happen is your database has not been updated and has an old schema.
You can blow away your database and recreate it anew with the latest schema by doing this:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-P...
On 05/12/2011 04:32 PM, Carlos Enrique Chacon Rodriguez wrote:
Hi,
I'm trying to build RHQ from source, following the building guide from the rhq web site.
However, when I'm trying to start the server from<rhqCodeRoot>/ modules/enterprise/server/container/target/rhq-server-4.0.1-SNAPSHOT/bin or<rhqCodeRoot>/ dev-container/bin; I get the following error and the portal application never deploys:
2011-05-12 15:12:49,687 INFO [org.rhq.enterprise.server.core.CoreServer] Version=[4.0.1-SNAPSHOT], Build Number=[f9c0b15], Build Date=[12.may.2011 14.42.10 COT]
2011-05-12 15:12:50,477 INFO [org.jboss.ejb3.entity.PersistenceUnitDeployment] Starting persistence unit persistence.units:ear=rhq.ear,unitName=rhqpu
2011-05-12 15:12:50,497 INFO [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.1.GA
2011-05-12 15:12:52,113 WARN [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=rhq.ear,unitName=rhqpu
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: org.rhq.core.domain.content.RepoContentSource.contentSource in org.rhq.core.domain.content.ContentSource.repoContentSources
at
org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:543)
at
org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:508)
at
org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
Any help, would be appreciated.
Some key points:
· The code is intact. I'm building RHQ from source because I was planning make some modifications.
· During building with maven, some required libraries must be added manually, using the maven:install command. One in particular was the rhq-core-domain:jar:4.0.0. The pom.xml from RHQ pattern Plugin was asking for the 4.0.0 version jar; Hovewer, the build creates the 4.0.1-Snapshot jar. I used the 4.0.1-Snapshot lib with maven install command in the following way:
mvn install:install-file -DgroupId=org.rhq -DartifactId=rhq-core-domain -Dversion=4.0.0 -Dpackaging=jar -Dfile=/rhq-core-domain-4.0.1-SNAPSHOT
*smtt_mail*
*vineta Carlos Enrique Chacón Rodríguez*
Software Engineer
- Phone: Panamá :*(+507) 831.2500 / *Ext.* 5542;
*Venezuela: *(+58 212) 706.2500 / *Ext. *5542;**
- Mobile: Panamá:* (+507) 640.75835;
*Venezuela:* (+58 412) 718.8686
http://www.smartmatic.comhttp://www.smartmatic.com/
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users _______________________________________________ rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
Not really. I only have two databases in a local postgres Server: rhq and rhqdev (I created this one, following a note in the building guide). However, no matter what profile I used in maven, the rhqdev database is never used. Another thing, if I used the purging command from the dbutils module, I get the following error:
[DEBUG] {TypeMap.loaded-typemaps}Type mappings have been loaded: [FOO={oracle=ORACLEFOO, postgresql8=POSTGRES8FOO, java=JAVAFOO, postgresql7=POSTGRES7FOO}] Tests run: 18, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.867 sec <<< FAILURE! testPostgres8(org.rhq.core.db.DatabaseTest) Time elapsed: 0.024 sec <<< FAILURE! java.lang.AssertionError: postgresql9.0(postgresql:9.0) at org.rhq.core.db.DatabaseTest.testPostgres8(DatabaseTest.java:344) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.testng.internal.MethodHelper.invokeMethod(MethodHelper.java:640) at org.testng.internal.Invoker.invokeMethod(Invoker.java:627) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:798) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1102) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:137) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:121) at org.testng.TestRunner.runWorkers(TestRunner.java:1009) at org.testng.TestRunner.privateRun(TestRunner.java:683) at org.testng.TestRunner.run(TestRunner.java:553) at org.testng.SuiteRunner.runTest(SuiteRunner.java:311) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:306) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:268) at org.testng.SuiteRunner.run(SuiteRunner.java:217) at org.testng.TestNG.runSuite(TestNG.java:1062) at org.testng.TestNG.runSuitesLocally(TestNG.java:956) at org.testng.TestNG.run(TestNG.java:874) at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:61) at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:144) at org.apache.maven.surefire.Surefire.run(Surefire.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021)
Results :
Failed tests: testPostgres8(org.rhq.core.db.DatabaseTest)
Tests run: 18, Failures: 1, Errors: 0, Skipped: 0
In order to build the db schema, I need to pass the -DskipTests flag...
Carlos Enrique Chacón Rodríguez Software Engineer Phone: Panamá :(+507) 831.2500 / Ext. 5542; Venezuela: (+58 212) 706.2500 / Ext. 5542; Mobile: Panamá: (+507) 640.75835; Venezuela: (+58 412) 718.8686 http://www.smartmatic.com
-----Original Message----- From: rhq-users-bounces@lists.fedorahosted.org [mailto:rhq-users-bounces@lists.fedorahosted.org] On Behalf Of John Mazzitelli Sent: jueves, 12 de mayo de 2011 04:31 p.m. To: rhq-users@lists.fedorahosted.org Subject: Re: Problems building and starting RHQ from source
Another thought - your server is pointing to the wrong DB that had an old schema?
Have you ever setup more than one DB for RHQ? Is it possible your development environment is pointing to one DB but your production server is pointing to another?
On 05/12/2011 05:26 PM, Carlos Enrique Chacon Rodriguez wrote:
Thanks, Jonh.
I tried your suggestion, but it didn't work. I'm getting the same error with the new bd schema. Others thoughts?
Carlos Enrique Chacón Rodríguez Software Engineer Phone: Panamá :(+507) 831.2500 / Ext. 5542; Venezuela: (+58 212) 706.2500 / Ext. 5542; Mobile: Panamá: (+507) 640.75835; Venezuela: (+58 412) 718.8686 http://www.smartmatic.com
-----Original Message----- From: rhq-users-bounces@lists.fedorahosted.org [mailto:rhq-users-bounces@lists.fedorahosted.org] On Behalf Of John Mazzitelli Sent: jueves, 12 de mayo de 2011 03:38 p.m. To: rhq-users@lists.fedorahosted.org Subject: Re: Problems building and starting RHQ from source
the only time I could think where that would happen is your database has not been updated and has an old schema.
You can blow away your database and recreate it anew with the latest schema by doing this:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-P...
On 05/12/2011 04:32 PM, Carlos Enrique Chacon Rodriguez wrote:
Hi,
I'm trying to build RHQ from source, following the building guide from the rhq web site.
However, when I'm trying to start the server from<rhqCodeRoot>/ modules/enterprise/server/container/target/rhq-server-4.0.1-SNAPSHOT/bin or<rhqCodeRoot>/ dev-container/bin; I get the following error and the portal application never deploys:
2011-05-12 15:12:49,687 INFO [org.rhq.enterprise.server.core.CoreServer] Version=[4.0.1-SNAPSHOT], Build Number=[f9c0b15], Build Date=[12.may.2011 14.42.10 COT]
2011-05-12 15:12:50,477 INFO [org.jboss.ejb3.entity.PersistenceUnitDeployment] Starting persistence unit persistence.units:ear=rhq.ear,unitName=rhqpu
2011-05-12 15:12:50,497 INFO [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.1.GA
2011-05-12 15:12:52,113 WARN [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=rhq.ear,unitName=rhqpu
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: org.rhq.core.domain.content.RepoContentSource.contentSource in org.rhq.core.domain.content.ContentSource.repoContentSources
at
org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:543)
at
org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:508)
at
org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
Any help, would be appreciated.
Some key points:
· The code is intact. I'm building RHQ from source because I was planning make some modifications.
· During building with maven, some required libraries must be added manually, using the maven:install command. One in particular was the rhq-core-domain:jar:4.0.0. The pom.xml from RHQ pattern Plugin was asking for the 4.0.0 version jar; Hovewer, the build creates the 4.0.1-Snapshot jar. I used the 4.0.1-Snapshot lib with maven install command in the following way:
mvn install:install-file -DgroupId=org.rhq -DartifactId=rhq-core-domain -Dversion=4.0.0 -Dpackaging=jar -Dfile=/rhq-core-domain-4.0.1-SNAPSHOT
*smtt_mail*
*vineta Carlos Enrique Chacón Rodríguez*
Software Engineer
- Phone: Panamá :*(+507) 831.2500 / *Ext.* 5542;
*Venezuela: *(+58 212) 706.2500 / *Ext. *5542;**
- Mobile: Panamá:* (+507) 640.75835;
*Venezuela:* (+58 412) 718.8686
http://www.smartmatic.comhttp://www.smartmatic.com/
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users _______________________________________________ rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
_______________________________________________ rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
On 05/12/2011 05:48 PM, Carlos Enrique Chacon Rodriguez wrote:
Not really. I only have two databases in a local postgres Server: rhq and rhqdev (I created this one, following a note in the building guide). However, no matter what profile I used in maven, the rhqdev database is never used.
As I understand it, if you build with -Pdev, the rhqdev database would automatically be used.
This section talks about how to set this stuff up:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-T...
Another thing, if I used the purging command from the dbutils module, I get the following error:
Put this in your ~/.m2/settings.xml (this is documented in our sample /etc/m2/settings.xml file):
<!-- tells the dbutils tests not to fail --> <DatabaseTest.nofail>true</DatabaseTest.nofail>
That should skip those specific DB test failures.
John, thanks for your help.
At the end, the problem was the hibernate libs in my maven repository. I Just drop the hibernate libs that came with RHQ 4.0.0 release at my dev-container, and the error disappeared.
Carlos Enrique Chacón Rodríguez Software Engineer Phone: Panamá :(+507) 831.2500 / Ext. 5542; Venezuela: (+58 212) 706.2500 / Ext. 5542; Mobile: Panamá: (+507) 640.75835; Venezuela: (+58 412) 718.8686 http://www.smartmatic.com
-----Original Message----- From: rhq-users-bounces@lists.fedorahosted.org [mailto:rhq-users-bounces@lists.fedorahosted.org] On Behalf Of John Mazzitelli Sent: jueves, 12 de mayo de 2011 04:57 p.m. To: rhq-users@lists.fedorahosted.org Subject: Re: Problems building and starting RHQ from source
On 05/12/2011 05:48 PM, Carlos Enrique Chacon Rodriguez wrote:
Not really. I only have two databases in a local postgres Server: rhq and rhqdev (I created this one, following a note in the building guide). However, no matter what profile I used in maven, the rhqdev database is never used.
As I understand it, if you build with -Pdev, the rhqdev database would automatically be used.
This section talks about how to set this stuff up:
http://rhq-project.org/display/RHQ/Advanced+Build+Notes#AdvancedBuildNotes-T...
Another thing, if I used the purging command from the dbutils module, I get the following error:
Put this in your ~/.m2/settings.xml (this is documented in our sample /etc/m2/settings.xml file):
<!-- tells the dbutils tests not to fail --> <DatabaseTest.nofail>true</DatabaseTest.nofail>
That should skip those specific DB test failures. _______________________________________________ rhq-users mailing list rhq-users@lists.fedorahosted.org https://fedorahosted.org/mailman/listinfo/rhq-users
rhq-users@lists.stg.fedorahosted.org