From iheim at redhat.com Thu Oct 27 21:51:24 2011 From: iheim at redhat.com (Itamar Heim) Date: Thu, 27 Oct 2011 23:51:24 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! Message-ID: <4EA9D25C.4050804@redhat.com> Here we go... - gerrit is up. - ovirt-engine git repo is there. - will upload the other repositories soon. below you can find the steps on how to get the code (yes, coming to you in wiki soon). a link to the wiki on how to build oVirt will be sent soon by Livnat. It's exciting to see everyone coming together to build a community, and I'm looking forward to working together on oVirt. Welcome everyone, Itamar How to use: 1. registering as a user: - you can use any OpenID provider for now[1] - login page shows google and yahoo - any fedora FAS account can login as well via https://admin.fedoraproject.org/accounts/openid/id/ 2. set ssh keys in gerrit settings - on your local machine, create a set of ssh keys if you don't have one via 'ssh-keygen -t rsa' - update via gerrit settings the ssh public key to allow ssh to gerrit 3. define gerrit in ~/.ssh/config Host gerrit.ovirt.org HostName gerrit.ovirt.org Port 29418 User 4. check ssh works correctly, verify and ack the host fingerprint: ssh gerrit.ovirt.org if you get this, it is fine: *** Welcome to Gerrit Code Review **** 5. cloning the repo git clone gerrit.ovirt.org:ovirt-engine this can be done without registering to gerrit using: git clone git://gerrit.ovirt.org/ovirt-engine 6. install the change-Id hook - you must do this before you commit anything: scp -p gerrit.ovirt.org:hooks/commit-msg .git/hooks/ 7. do some work/commit/etc. wiki link on how to build/run ovirt will be sent by Livnat soon. 8. rebase: git fetch gerrit.ovirt.org:ovirt-engine master 9. push your patch for review: git push gerrit.ovirt.org:ovirt-engine HEAD:refs/for/master 10. track patch review process the review process is comprised of: - anyone can send a patch - anyone can code review and comment on the patch and +1/-1. This helps maintainers in reviewing the patches. - a maintainer can code review it with +2 it, which is required to commit (submit) it. - someone (anyone) needs to confirm they checked the patch works and flag it as verified +1 - a maintainer can submit (commit) the patch when it has: Code Review: +2 Verified: +1 - nacked (-1) patches should not be submitted - a submitted patch is merged to the git TODOs: - emails to mailing list on patches/commits[2] - upload repos of more projects - have gerrit add acked-by/verified-by based on the gerrit reviewes? - mirror to github [1] if anyone provides a reason to limit to specific OpenID providers that's an option as well. [2] basic emails until we merge the gerrit patches sending them inline - we are working on sending them to upstream gerrit. From lpeer at redhat.com Fri Oct 28 00:09:41 2011 From: lpeer at redhat.com (Livnat Peer) Date: Fri, 28 Oct 2011 02:09:41 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EA9D25C.4050804@redhat.com> References: <4EA9D25C.4050804@redhat.com> Message-ID: <4EA9F2C5.2010508@redhat.com> On 10/27/2011 11:51 PM, Itamar Heim wrote: > Here we go... > > - gerrit is up. > - ovirt-engine git repo is there. > - will upload the other repositories soon. > > below you can find the steps on how to get the code (yes, coming to you > in wiki soon). > a link to the wiki on how to build oVirt will be sent soon by Livnat. > > It's exciting to see everyone coming together to build a community, and > I'm looking forward to working together on oVirt. > > Welcome everyone, > Itamar > Welcome indeed, A link to a wiki with info for setting development environment - http://www.ovirt.org/wiki/Building_Ovirt_Engine Livnat > How to use: > 1. registering as a user: > - you can use any OpenID provider for now[1] > - login page shows google and yahoo > - any fedora FAS account can login as well via > https://admin.fedoraproject.org/accounts/openid/id/ > > 2. set ssh keys in gerrit settings > - on your local machine, create a set of ssh keys if you don't have one > via 'ssh-keygen -t rsa' > - update via gerrit settings the ssh public key to allow ssh to gerrit > > 3. define gerrit in ~/.ssh/config > Host gerrit.ovirt.org > HostName gerrit.ovirt.org > Port 29418 > User > > 4. check ssh works correctly, verify and ack the host fingerprint: > ssh gerrit.ovirt.org > if you get this, it is fine: > *** Welcome to Gerrit Code Review **** > > 5. cloning the repo > git clone gerrit.ovirt.org:ovirt-engine > this can be done without registering to gerrit using: > git clone git://gerrit.ovirt.org/ovirt-engine > > 6. install the change-Id hook - you must do this before you commit > anything: > scp -p gerrit.ovirt.org:hooks/commit-msg .git/hooks/ > > 7. do some work/commit/etc. > wiki link on how to build/run ovirt will be sent by Livnat soon. > > 8. rebase: > git fetch gerrit.ovirt.org:ovirt-engine master > > 9. push your patch for review: > git push gerrit.ovirt.org:ovirt-engine HEAD:refs/for/master > > 10. track patch review process > the review process is comprised of: > - anyone can send a patch > - anyone can code review and comment on the patch and +1/-1. This helps > maintainers in reviewing the patches. > - a maintainer can code review it with +2 it, which is required to > commit (submit) it. > - someone (anyone) needs to confirm they checked the patch works and > flag it as verified +1 > - a maintainer can submit (commit) the patch when it has: > Code Review: +2 > Verified: +1 > - nacked (-1) patches should not be submitted > - a submitted patch is merged to the git > > TODOs: > - emails to mailing list on patches/commits[2] > - upload repos of more projects > - have gerrit add acked-by/verified-by based on the gerrit reviewes? > - mirror to github > > > [1] if anyone provides a reason to limit to specific OpenID providers > that's an option as well. > [2] basic emails until we merge the gerrit patches sending them inline - > we are working on sending them to upstream gerrit. > _______________________________________________ > Board mailing list > Board at ovirt.org > http://lists.ovirt.org/mailman/listinfo/board From mburns at redhat.com Fri Oct 28 01:12:30 2011 From: mburns at redhat.com (Mike Burns) Date: Thu, 27 Oct 2011 21:12:30 -0400 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EA9D25C.4050804@redhat.com> References: <4EA9D25C.4050804@redhat.com> Message-ID: <1319764350.4299.0.camel@beelzebub.mburnsfire.net> On Thu, 2011-10-27 at 23:51 +0200, Itamar Heim wrote: > Here we go... > > - gerrit is up. > - ovirt-engine git repo is there. > - will upload the other repositories soon. This is terrific. Any pointers on setting up additional projects? I'd love to get ovirt-node uploaded. Thanks Mike > > below you can find the steps on how to get the code (yes, coming to you > in wiki soon). > a link to the wiki on how to build oVirt will be sent soon by Livnat. > > It's exciting to see everyone coming together to build a community, and > I'm looking forward to working together on oVirt. > > Welcome everyone, > Itamar > > How to use: > 1. registering as a user: > - you can use any OpenID provider for now[1] > - login page shows google and yahoo > - any fedora FAS account can login as well via > https://admin.fedoraproject.org/accounts/openid/id/ > > 2. set ssh keys in gerrit settings > - on your local machine, create a set of ssh keys if you don't have one > via 'ssh-keygen -t rsa' > - update via gerrit settings the ssh public key to allow ssh to gerrit > > 3. define gerrit in ~/.ssh/config > Host gerrit.ovirt.org > HostName gerrit.ovirt.org > Port 29418 > User > > 4. check ssh works correctly, verify and ack the host fingerprint: > ssh gerrit.ovirt.org > if you get this, it is fine: > *** Welcome to Gerrit Code Review **** > > 5. cloning the repo > git clone gerrit.ovirt.org:ovirt-engine > this can be done without registering to gerrit using: > git clone git://gerrit.ovirt.org/ovirt-engine > > 6. install the change-Id hook - you must do this before you commit anything: > scp -p gerrit.ovirt.org:hooks/commit-msg .git/hooks/ > > 7. do some work/commit/etc. > wiki link on how to build/run ovirt will be sent by Livnat soon. > > 8. rebase: > git fetch gerrit.ovirt.org:ovirt-engine master > > 9. push your patch for review: > git push gerrit.ovirt.org:ovirt-engine HEAD:refs/for/master > > 10. track patch review process > the review process is comprised of: > - anyone can send a patch > - anyone can code review and comment on the patch and +1/-1. This helps > maintainers in reviewing the patches. > - a maintainer can code review it with +2 it, which is required to > commit (submit) it. > - someone (anyone) needs to confirm they checked the patch works and > flag it as verified +1 > - a maintainer can submit (commit) the patch when it has: > Code Review: +2 > Verified: +1 > - nacked (-1) patches should not be submitted > - a submitted patch is merged to the git > > TODOs: > - emails to mailing list on patches/commits[2] > - upload repos of more projects > - have gerrit add acked-by/verified-by based on the gerrit reviewes? > - mirror to github > > > [1] if anyone provides a reason to limit to specific OpenID providers > that's an option as well. > [2] basic emails until we merge the gerrit patches sending them inline - > we are working on sending them to upstream gerrit. > _______________________________________________ > Board mailing list > Board at ovirt.org > http://lists.ovirt.org/mailman/listinfo/board From cctrieloff at redhat.com Fri Oct 28 13:33:13 2011 From: cctrieloff at redhat.com (Carl Trieloff) Date: Fri, 28 Oct 2011 09:33:13 -0400 Subject: [Engine-devel] Issue with gerrit In-Reply-To: <4EA9D25C.4050804@redhat.com> References: <4EA9D25C.4050804@redhat.com> Message-ID: <4EAAAF19.2040204@redhat.com> on some of the links gerrit is doing this: Application Error Server Error org.eclipse.jgit.errors.MissingObjectException: Missing unknown 2444e06de5139c2205849ff6a1ff903b12535321 -------------- next part -------------- An HTML attachment was scrubbed... URL: From iheim at redhat.com Fri Oct 28 13:45:44 2011 From: iheim at redhat.com (Itamar Heim) Date: Fri, 28 Oct 2011 09:45:44 -0400 (EDT) Subject: [Engine-devel] Issue with gerrit In-Reply-To: <4EAAAF19.2040204@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EAAAF19.2040204@redhat.com> Message-ID: <1eee01cc9577$8f8ef7a0$aeace6e0$@com> > -----Original Message----- > From: Carl Trieloff [mailto:cctrieloff at redhat.com] > Sent: Friday, October 28, 2011 15:33 PM > To: Itamar Heim > Cc: engine-devel at ovirt.org; infra at ovirt.org; board at ovirt.org > Subject: Issue with gerrit > > > on some of the links gerrit is doing this: What's the link / how you got to it? If this is the commit by Oved - it is a merge from a test removed later - it is only in the UI. I'll clean it later. > > > Application Error > Server Error > org.eclipse.jgit.errors.MissingObjectException: Missing unknown 2444e06de5139c2205849ff6a1ff903b12535321 From cctrieloff at redhat.com Fri Oct 28 13:45:28 2011 From: cctrieloff at redhat.com (Carl Trieloff) Date: Fri, 28 Oct 2011 09:45:28 -0400 Subject: [Engine-devel] Issue with gerrit In-Reply-To: <1eee01cc9577$8f8ef7a0$aeace6e0$@com> References: <4EA9D25C.4050804@redhat.com> <4EAAAF19.2040204@redhat.com> <1eee01cc9577$8f8ef7a0$aeace6e0$@com> Message-ID: <4EAAB1F8.7000403@redhat.com> On 10/28/2011 09:45 AM, Itamar Heim wrote: > What's the link / how you got to it? > If this is the commit by Oved - it is a merge from a test removed later - > it is only in the UI. > I'll clean it later. http://gerrit.ovirt.org/3 From iheim at redhat.com Fri Oct 28 14:10:56 2011 From: iheim at redhat.com (Itamar Heim) Date: Fri, 28 Oct 2011 10:10:56 -0400 (EDT) Subject: [Engine-devel] Issue with gerrit In-Reply-To: <4EAAB1F8.7000403@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EAAAF19.2040204@redhat.com> <1eee01cc9577$8f8ef7a0$aeace6e0$@com> <4EAAB1F8.7000403@redhat.com> Message-ID: <1f0801cc957b$15a0d680$40e28380$@com> > -----Original Message----- > From: Carl Trieloff [mailto:cctrieloff at redhat.com] > Sent: Friday, October 28, 2011 15:45 PM > To: Itamar Heim > Cc: engine-devel at ovirt.org; infra at ovirt.org; board at ovirt.org > Subject: Re: Issue with gerrit > > On 10/28/2011 09:45 AM, Itamar Heim wrote: > > What's the link / how you got to it? > > If this is the commit by Oved - it is a merge from a test removed later - > > it is only in the UI. > > I'll clean it later. > http://gerrit.ovirt.org/3 Yes - that's the known one from the test ovirt-engine-git From cctrieloff at redhat.com Fri Oct 28 14:12:09 2011 From: cctrieloff at redhat.com (Carl Trieloff) Date: Fri, 28 Oct 2011 10:12:09 -0400 Subject: [Engine-devel] Issue with gerrit In-Reply-To: <1f0801cc957b$15a0d680$40e28380$@com> References: <4EA9D25C.4050804@redhat.com> <4EAAAF19.2040204@redhat.com> <1eee01cc9577$8f8ef7a0$aeace6e0$@com> <4EAAB1F8.7000403@redhat.com> <1f0801cc957b$15a0d680$40e28380$@com> Message-ID: <4EAAB839.9050904@redhat.com> On 10/28/2011 10:10 AM, Itamar Heim wrote: > >> -----Original Message----- >> From: Carl Trieloff [mailto:cctrieloff at redhat.com] >> Sent: Friday, October 28, 2011 15:45 PM >> To: Itamar Heim >> Cc: engine-devel at ovirt.org; infra at ovirt.org; board at ovirt.org >> Subject: Re: Issue with gerrit >> >> On 10/28/2011 09:45 AM, Itamar Heim wrote: >>> What's the link / how you got to it? >>> If this is the commit by Oved - it is a merge from a test removed > later - >>> it is only in the UI. >>> I'll clean it later. >> http://gerrit.ovirt.org/3 > Yes - that's the known one from the test ovirt-engine-git > ok, good. The last one seemed fine. Carl. From bazulay at redhat.com Fri Oct 28 16:41:20 2011 From: bazulay at redhat.com (Barak Azulay) Date: Fri, 28 Oct 2011 18:41:20 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EA9F2C5.2010508@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> Message-ID: <201110281841.21429.bazulay@redhat.com> On Friday 28 October 2011 02:09:41 Livnat Peer wrote: > On 10/27/2011 11:51 PM, Itamar Heim wrote: > > Here we go... > > > > - gerrit is up. > > - ovirt-engine git repo is there. > > - will upload the other repositories soon. > > > > below you can find the steps on how to get the code (yes, coming to you > > in wiki soon). > > a link to the wiki on how to build oVirt will be sent soon by Livnat. > > > > It's exciting to see everyone coming together to build a community, and > > I'm looking forward to working together on oVirt. > > > > Welcome everyone, > > > > Itamar > > Welcome indeed, > > A link to a wiki with info for setting development environment - > http://www.ovirt.org/wiki/Building_Ovirt_Engine refering to the wiki above, what about the ovirt-jboss rpm, we need a repo to pulish it (somewhere in ovirt.org) and update the above wiki. I assume much more rpms will follow since none are Fedora packages yet. Barak > > Livnat > > > How to use: > > 1. registering as a user: > > - you can use any OpenID provider for now[1] > > - login page shows google and yahoo > > - any fedora FAS account can login as well via > > https://admin.fedoraproject.org/accounts/openid/id/ > > > > 2. set ssh keys in gerrit settings > > - on your local machine, create a set of ssh keys if you don't have one > > via 'ssh-keygen -t rsa' > > - update via gerrit settings the ssh public key to allow ssh to gerrit > > > > 3. define gerrit in ~/.ssh/config > > Host gerrit.ovirt.org > > > > HostName gerrit.ovirt.org > > Port 29418 > > User > > > > 4. check ssh works correctly, verify and ack the host fingerprint: > > ssh gerrit.ovirt.org > > if you get this, it is fine: > > *** Welcome to Gerrit Code Review **** > > > > 5. cloning the repo > > git clone gerrit.ovirt.org:ovirt-engine > > this can be done without registering to gerrit using: > > git clone git://gerrit.ovirt.org/ovirt-engine > > > > 6. install the change-Id hook - you must do this before you commit > > anything: > > scp -p gerrit.ovirt.org:hooks/commit-msg .git/hooks/ > > > > 7. do some work/commit/etc. > > wiki link on how to build/run ovirt will be sent by Livnat soon. > > > > 8. rebase: > > git fetch gerrit.ovirt.org:ovirt-engine master > > > > 9. push your patch for review: > > git push gerrit.ovirt.org:ovirt-engine HEAD:refs/for/master > > > > 10. track patch review process > > the review process is comprised of: > > - anyone can send a patch > > - anyone can code review and comment on the patch and +1/-1. This helps > > maintainers in reviewing the patches. > > - a maintainer can code review it with +2 it, which is required to > > commit (submit) it. > > - someone (anyone) needs to confirm they checked the patch works and > > flag it as verified +1 > > > > - a maintainer can submit (commit) the patch when it has: > > Code Review: +2 > > Verified: +1 > > > > - nacked (-1) patches should not be submitted > > - a submitted patch is merged to the git > > > > TODOs: > > - emails to mailing list on patches/commits[2] > > - upload repos of more projects > > - have gerrit add acked-by/verified-by based on the gerrit reviewes? > > - mirror to github > > > > > > [1] if anyone provides a reason to limit to specific OpenID providers > > that's an option as well. > > [2] basic emails until we merge the gerrit patches sending them inline - > > we are working on sending them to upstream gerrit. > > _______________________________________________ > > Board mailing list > > Board at ovirt.org > > http://lists.ovirt.org/mailman/listinfo/board > > _______________________________________________ > Board mailing list > Board at ovirt.org > http://lists.ovirt.org/mailman/listinfo/board -------------- next part -------------- An HTML attachment was scrubbed... URL: From kwade at redhat.com Fri Oct 28 22:27:19 2011 From: kwade at redhat.com (Karsten Wade) Date: Fri, 28 Oct 2011 15:27:19 -0700 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <201110281841.21429.bazulay@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <201110281841.21429.bazulay@redhat.com> Message-ID: <20111028222719.GF27628@terpsichore.fairy-talefarm.com> On Fri, Oct 28, 2011 at 06:41:20PM +0200, Barak Azulay wrote: > > refering to the wiki above, what about the ovirt-jboss rpm, we need a repo to > pulish it (somewhere in ovirt.org) and update the above wiki. > > I assume much more rpms will follow since none are Fedora packages yet. Mike Burns just started a thread about that on the Infrastructure mailing list: http://lists.ovirt.org/pipermail/infra/2011-October/000062.html IMO, we need to post source and whatever builds are done under all the usual formats, preferably using automagic, but we must get it done somehow. - Karsten -- name: Karsten 'quaid' Wade, Sr. Community Gardener team: Red Hat Community Architecture & Leadership uri: http://communityleadershipteam.org http://TheOpenSourceWay.org gpg: AD0E0C41 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 190 bytes Desc: not available URL: From dennisml at conversis.de Sat Oct 29 15:48:58 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Sat, 29 Oct 2011 17:48:58 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EA9F2C5.2010508@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> Message-ID: <4EAC206A.7050406@conversis.de> On 10/28/2011 02:09 AM, Livnat Peer wrote: > On 10/27/2011 11:51 PM, Itamar Heim wrote: >> Here we go... >> >> - gerrit is up. >> - ovirt-engine git repo is there. >> - will upload the other repositories soon. >> >> below you can find the steps on how to get the code (yes, coming to you >> in wiki soon). >> a link to the wiki on how to build oVirt will be sent soon by Livnat. >> >> It's exciting to see everyone coming together to build a community, and >> I'm looking forward to working together on oVirt. >> >> Welcome everyone, >> Itamar >> > > Welcome indeed, > > A link to a wiki with info for setting development environment - > http://www.ovirt.org/wiki/Building_Ovirt_Engine I tried building with these instructions but get "9 required artifacts are missing." Also I get a *lot* of "unable to fine resource" info/warning messages. I've attached the output of the maven run. Regards, Dennis -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: maven-errors.txt URL: From lpeer at redhat.com Sat Oct 29 17:15:26 2011 From: lpeer at redhat.com (Livnat Peer) Date: Sat, 29 Oct 2011 19:15:26 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAC206A.7050406@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> Message-ID: <4EAC34AE.7060404@redhat.com> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: > On 10/28/2011 02:09 AM, Livnat Peer wrote: >> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>> Here we go... >>> >>> - gerrit is up. >>> - ovirt-engine git repo is there. >>> - will upload the other repositories soon. >>> >>> below you can find the steps on how to get the code (yes, coming to you >>> in wiki soon). >>> a link to the wiki on how to build oVirt will be sent soon by Livnat. >>> >>> It's exciting to see everyone coming together to build a community, and >>> I'm looking forward to working together on oVirt. >>> >>> Welcome everyone, >>> Itamar >>> >> >> Welcome indeed, >> >> A link to a wiki with info for setting development environment - >> http://www.ovirt.org/wiki/Building_Ovirt_Engine > > I tried building with these instructions but get "9 required artifacts > are missing." Also I get a *lot* of "unable to fine resource" > info/warning messages. I've attached the output of the maven run. > > Regards, > Dennis > Hi Dennis, Maven tries to download dependencies that are required by your project, in this case oVirt. For each dependency maven iterates over all the repositories defined in the pom.xml and stops when it finds the required dependency, if it does not find the Jar in a repository it issues info message and looks in the next repsitory. The info message looks like "[INFO] Unable to find resource XXX in repository YYY" and does not indicate on a problem. For the errors you get - I looked into the first missing jar commons-httpclient-2.0.2, it can be found in - http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ but it looks like you get - Authorization failed: Access denied to: http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar Any idea why you got authorization error? I can access it locally. Can you try again? maybe a temporary problem. Livnat > > > _______________________________________________ > Engine-devel mailing list > Engine-devel at ovirt.org > http://lists.ovirt.org/mailman/listinfo/engine-devel From dennisml at conversis.de Sat Oct 29 20:08:53 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Sat, 29 Oct 2011 22:08:53 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAC34AE.7060404@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> Message-ID: <4EAC5D55.40405@conversis.de> On 10/29/2011 07:15 PM, Livnat Peer wrote: > On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>> Here we go... >>>> >>>> - gerrit is up. >>>> - ovirt-engine git repo is there. >>>> - will upload the other repositories soon. >>>> >>>> below you can find the steps on how to get the code (yes, coming to you >>>> in wiki soon). >>>> a link to the wiki on how to build oVirt will be sent soon by Livnat. >>>> >>>> It's exciting to see everyone coming together to build a community, and >>>> I'm looking forward to working together on oVirt. >>>> >>>> Welcome everyone, >>>> Itamar >>>> >>> >>> Welcome indeed, >>> >>> A link to a wiki with info for setting development environment - >>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >> >> I tried building with these instructions but get "9 required artifacts >> are missing." Also I get a *lot* of "unable to fine resource" >> info/warning messages. I've attached the output of the maven run. >> >> Regards, >> Dennis >> > > Hi Dennis, > Maven tries to download dependencies that are required by your project, > in this case oVirt. > For each dependency maven iterates over all the repositories defined in > the pom.xml and stops when it finds the required dependency, if it does > not find the Jar in a repository it issues info message and looks in the > next repsitory. The info message looks like "[INFO] Unable to find > resource XXX in repository YYY" and does not indicate on a problem. > > For the errors you get - > > I looked into the first missing jar commons-httpclient-2.0.2, it can be > found in - > http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ > > but it looks like you get - > > Authorization failed: Access denied to: > http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar > > Any idea why you got authorization error? I can access it locally. > Can you try again? maybe a temporary problem. When I access that URL in a browser I still get a 403 Forbidden response. I can access http://repository.jboss.org/ but not http://repository.jboss.org/maven2/. In fact the maven2 directory doesn't show up in the directory listing when requesting http://repository.jboss.org/ which could potentially be an SELinux issue on the server. Has this directory perhaps been manually copied to the server without the correct SELinux labels? Regards, Dennis From lpeer at redhat.com Sat Oct 29 20:39:07 2011 From: lpeer at redhat.com (Livnat Peer) Date: Sat, 29 Oct 2011 22:39:07 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAC5D55.40405@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> Message-ID: <4EAC646B.8030301@redhat.com> On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: > On 10/29/2011 07:15 PM, Livnat Peer wrote: >> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>> Here we go... >>>>> >>>>> - gerrit is up. >>>>> - ovirt-engine git repo is there. >>>>> - will upload the other repositories soon. >>>>> >>>>> below you can find the steps on how to get the code (yes, coming to >>>>> you >>>>> in wiki soon). >>>>> a link to the wiki on how to build oVirt will be sent soon by Livnat. >>>>> >>>>> It's exciting to see everyone coming together to build a community, >>>>> and >>>>> I'm looking forward to working together on oVirt. >>>>> >>>>> Welcome everyone, >>>>> Itamar >>>>> >>>> >>>> Welcome indeed, >>>> >>>> A link to a wiki with info for setting development environment - >>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>> >>> I tried building with these instructions but get "9 required artifacts >>> are missing." Also I get a *lot* of "unable to fine resource" >>> info/warning messages. I've attached the output of the maven run. >>> >>> Regards, >>> Dennis >>> >> >> Hi Dennis, >> Maven tries to download dependencies that are required by your project, >> in this case oVirt. >> For each dependency maven iterates over all the repositories defined in >> the pom.xml and stops when it finds the required dependency, if it does >> not find the Jar in a repository it issues info message and looks in the >> next repsitory. The info message looks like "[INFO] Unable to find >> resource XXX in repository YYY" and does not indicate on a problem. >> >> For the errors you get - >> >> I looked into the first missing jar commons-httpclient-2.0.2, it can be >> found in - >> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >> >> >> but it looks like you get - >> >> Authorization failed: Access denied to: >> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >> >> >> Any idea why you got authorization error? I can access it locally. >> Can you try again? maybe a temporary problem. > > When I access that URL in a browser I still get a 403 Forbidden response. > I can access http://repository.jboss.org/ but not > http://repository.jboss.org/maven2/. > > In fact the maven2 directory doesn't show up in the directory listing > when requesting http://repository.jboss.org/ which could potentially be > an SELinux issue on the server. Has this directory perhaps been manually > copied to the server without the correct SELinux labels? > > Regards, > Dennis Can you access this - https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ Livnat From dennisml at conversis.de Sat Oct 29 23:36:23 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Sun, 30 Oct 2011 01:36:23 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAC646B.8030301@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> Message-ID: <4EAC8DF7.1020600@conversis.de> On 10/29/2011 10:39 PM, Livnat Peer wrote: > On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: >> On 10/29/2011 07:15 PM, Livnat Peer wrote: >>> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>>> Here we go... >>>>>> >>>>>> - gerrit is up. >>>>>> - ovirt-engine git repo is there. >>>>>> - will upload the other repositories soon. >>>>>> >>>>>> below you can find the steps on how to get the code (yes, coming to >>>>>> you >>>>>> in wiki soon). >>>>>> a link to the wiki on how to build oVirt will be sent soon by Livnat. >>>>>> >>>>>> It's exciting to see everyone coming together to build a community, >>>>>> and >>>>>> I'm looking forward to working together on oVirt. >>>>>> >>>>>> Welcome everyone, >>>>>> Itamar >>>>>> >>>>> >>>>> Welcome indeed, >>>>> >>>>> A link to a wiki with info for setting development environment - >>>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>>> >>>> I tried building with these instructions but get "9 required artifacts >>>> are missing." Also I get a *lot* of "unable to fine resource" >>>> info/warning messages. I've attached the output of the maven run. >>>> >>>> Regards, >>>> Dennis >>>> >>> >>> Hi Dennis, >>> Maven tries to download dependencies that are required by your project, >>> in this case oVirt. >>> For each dependency maven iterates over all the repositories defined in >>> the pom.xml and stops when it finds the required dependency, if it does >>> not find the Jar in a repository it issues info message and looks in the >>> next repsitory. The info message looks like "[INFO] Unable to find >>> resource XXX in repository YYY" and does not indicate on a problem. >>> >>> For the errors you get - >>> >>> I looked into the first missing jar commons-httpclient-2.0.2, it can be >>> found in - >>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >>> >>> >>> but it looks like you get - >>> >>> Authorization failed: Access denied to: >>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >>> >>> >>> Any idea why you got authorization error? I can access it locally. >>> Can you try again? maybe a temporary problem. >> >> When I access that URL in a browser I still get a 403 Forbidden response. >> I can access http://repository.jboss.org/ but not >> http://repository.jboss.org/maven2/. >> >> In fact the maven2 directory doesn't show up in the directory listing >> when requesting http://repository.jboss.org/ which could potentially be >> an SELinux issue on the server. Has this directory perhaps been manually >> copied to the server without the correct SELinux labels? >> >> Regards, >> Dennis > > Can you access this - > https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ Yes, this URL works fine. Regards, Dennis From lpeer at redhat.com Sun Oct 30 05:09:15 2011 From: lpeer at redhat.com (Livnat Peer) Date: Sun, 30 Oct 2011 07:09:15 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAC8DF7.1020600@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> Message-ID: <4EACDBFB.1020606@redhat.com> On 10/30/2011 01:36 AM, Dennis Jacobfeuerborn wrote: > On 10/29/2011 10:39 PM, Livnat Peer wrote: >> On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: >>> On 10/29/2011 07:15 PM, Livnat Peer wrote: >>>> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>>>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>>>> Here we go... >>>>>>> >>>>>>> - gerrit is up. >>>>>>> - ovirt-engine git repo is there. >>>>>>> - will upload the other repositories soon. >>>>>>> >>>>>>> below you can find the steps on how to get the code (yes, coming to >>>>>>> you >>>>>>> in wiki soon). >>>>>>> a link to the wiki on how to build oVirt will be sent soon by >>>>>>> Livnat. >>>>>>> >>>>>>> It's exciting to see everyone coming together to build a community, >>>>>>> and >>>>>>> I'm looking forward to working together on oVirt. >>>>>>> >>>>>>> Welcome everyone, >>>>>>> Itamar >>>>>>> >>>>>> >>>>>> Welcome indeed, >>>>>> >>>>>> A link to a wiki with info for setting development environment - >>>>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>>>> >>>>> I tried building with these instructions but get "9 required artifacts >>>>> are missing." Also I get a *lot* of "unable to fine resource" >>>>> info/warning messages. I've attached the output of the maven run. >>>>> >>>>> Regards, >>>>> Dennis >>>>> >>>> >>>> Hi Dennis, >>>> Maven tries to download dependencies that are required by your project, >>>> in this case oVirt. >>>> For each dependency maven iterates over all the repositories defined in >>>> the pom.xml and stops when it finds the required dependency, if it does >>>> not find the Jar in a repository it issues info message and looks in >>>> the >>>> next repsitory. The info message looks like "[INFO] Unable to find >>>> resource XXX in repository YYY" and does not indicate on a problem. >>>> >>>> For the errors you get - >>>> >>>> I looked into the first missing jar commons-httpclient-2.0.2, it can be >>>> found in - >>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >>>> >>>> >>>> >>>> but it looks like you get - >>>> >>>> Authorization failed: Access denied to: >>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >>>> >>>> >>>> >>>> Any idea why you got authorization error? I can access it locally. >>>> Can you try again? maybe a temporary problem. >>> >>> When I access that URL in a browser I still get a 403 Forbidden >>> response. >>> I can access http://repository.jboss.org/ but not >>> http://repository.jboss.org/maven2/. >>> >>> In fact the maven2 directory doesn't show up in the directory listing >>> when requesting http://repository.jboss.org/ which could potentially be >>> an SELinux issue on the server. Has this directory perhaps been manually >>> copied to the server without the correct SELinux labels? >>> >>> Regards, >>> Dennis >> >> Can you access this - >> https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ >> > > Yes, this URL works fine. > > Regards, > Dennis > Hi Dennis, It looks like repo - http://repository.jboss.org/maven2/ is deprecated and can only be accessed within RedHat Network, probably for JBoss engineers. I have attached a temporary patch with another URL for this repo. The new URL is accessible from outside of RedHat but we should replace it with the new repositories in Nexus. As i have to catch a flight in a few hours i have no time to test it so i hope it will do the work. Livnat -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: 0001-Changing-the-jboss-repo-URL-as-it-is-deprecated-and-.patch URL: From dennisml at conversis.de Sun Oct 30 12:24:53 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Sun, 30 Oct 2011 13:24:53 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EACDBFB.1020606@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> Message-ID: <4EAD4215.3040300@conversis.de> On 10/30/2011 06:09 AM, Livnat Peer wrote: > On 10/30/2011 01:36 AM, Dennis Jacobfeuerborn wrote: >> On 10/29/2011 10:39 PM, Livnat Peer wrote: >>> On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: >>>> On 10/29/2011 07:15 PM, Livnat Peer wrote: >>>>> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>>>>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>>>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>>>>> Here we go... >>>>>>>> >>>>>>>> - gerrit is up. >>>>>>>> - ovirt-engine git repo is there. >>>>>>>> - will upload the other repositories soon. >>>>>>>> >>>>>>>> below you can find the steps on how to get the code (yes, coming to >>>>>>>> you >>>>>>>> in wiki soon). >>>>>>>> a link to the wiki on how to build oVirt will be sent soon by >>>>>>>> Livnat. >>>>>>>> >>>>>>>> It's exciting to see everyone coming together to build a community, >>>>>>>> and >>>>>>>> I'm looking forward to working together on oVirt. >>>>>>>> >>>>>>>> Welcome everyone, >>>>>>>> Itamar >>>>>>>> >>>>>>> >>>>>>> Welcome indeed, >>>>>>> >>>>>>> A link to a wiki with info for setting development environment - >>>>>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>>>>> >>>>>> I tried building with these instructions but get "9 required artifacts >>>>>> are missing." Also I get a *lot* of "unable to fine resource" >>>>>> info/warning messages. I've attached the output of the maven run. >>>>>> >>>>>> Regards, >>>>>> Dennis >>>>>> >>>>> >>>>> Hi Dennis, >>>>> Maven tries to download dependencies that are required by your project, >>>>> in this case oVirt. >>>>> For each dependency maven iterates over all the repositories defined in >>>>> the pom.xml and stops when it finds the required dependency, if it does >>>>> not find the Jar in a repository it issues info message and looks in >>>>> the >>>>> next repsitory. The info message looks like "[INFO] Unable to find >>>>> resource XXX in repository YYY" and does not indicate on a problem. >>>>> >>>>> For the errors you get - >>>>> >>>>> I looked into the first missing jar commons-httpclient-2.0.2, it can be >>>>> found in - >>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >>>>> >>>>> >>>>> >>>>> but it looks like you get - >>>>> >>>>> Authorization failed: Access denied to: >>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >>>>> >>>>> >>>>> >>>>> Any idea why you got authorization error? I can access it locally. >>>>> Can you try again? maybe a temporary problem. >>>> >>>> When I access that URL in a browser I still get a 403 Forbidden >>>> response. >>>> I can access http://repository.jboss.org/ but not >>>> http://repository.jboss.org/maven2/. >>>> >>>> In fact the maven2 directory doesn't show up in the directory listing >>>> when requesting http://repository.jboss.org/ which could potentially be >>>> an SELinux issue on the server. Has this directory perhaps been manually >>>> copied to the server without the correct SELinux labels? >>>> >>>> Regards, >>>> Dennis >>> >>> Can you access this - >>> https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ >>> >> >> Yes, this URL works fine. >> >> Regards, >> Dennis >> > > Hi Dennis, > It looks like repo - http://repository.jboss.org/maven2/ is deprecated > and can only be accessed within RedHat Network, probably for JBoss > engineers. > > I have attached a temporary patch with another URL for this repo. > The new URL is accessible from outside of RedHat but we should replace > it with the new repositories in Nexus. > > As i have to catch a flight in a few hours i have no time to test it so > i hope it will do the work. This improved the situation but there are still two missing artifacts: 1) sun-jaxb:jaxb-api:jar:2.1.9 2) oswego-concurrent:concurrent:jar:1.3.4 jaxb-api seems to be present in the new repository but only version 2.0.5 and concurrent seems to be missing completely. Regards, Dennis From dennisml at conversis.de Sun Oct 30 14:32:49 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Sun, 30 Oct 2011 15:32:49 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAD4729.1070803@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> Message-ID: <4EAD6011.6000402@conversis.de> Hi Yair, I managed to install the two missing dependencies from the web and now the build seem to run ok but apparently 8gb of RAM are not sufficient to build ovirt-engine so I'll have to give it a pass for now and wait for binary releases. Regards, Dennis On 10/30/2011 01:46 PM, Yair Zaslavsky wrote: > Hi Dennis, > Do you still need assistance with this? > > Kind regards, > Yair > > > On 10/30/2011 02:24 PM, Dennis Jacobfeuerborn wrote: >> On 10/30/2011 06:09 AM, Livnat Peer wrote: >>> On 10/30/2011 01:36 AM, Dennis Jacobfeuerborn wrote: >>>> On 10/29/2011 10:39 PM, Livnat Peer wrote: >>>>> On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: >>>>>> On 10/29/2011 07:15 PM, Livnat Peer wrote: >>>>>>> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>>>>>>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>>>>>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>>>>>>> Here we go... >>>>>>>>>> >>>>>>>>>> - gerrit is up. >>>>>>>>>> - ovirt-engine git repo is there. >>>>>>>>>> - will upload the other repositories soon. >>>>>>>>>> >>>>>>>>>> below you can find the steps on how to get the code (yes, >>>>>>>>>> coming to >>>>>>>>>> you >>>>>>>>>> in wiki soon). >>>>>>>>>> a link to the wiki on how to build oVirt will be sent soon by >>>>>>>>>> Livnat. >>>>>>>>>> >>>>>>>>>> It's exciting to see everyone coming together to build a >>>>>>>>>> community, >>>>>>>>>> and >>>>>>>>>> I'm looking forward to working together on oVirt. >>>>>>>>>> >>>>>>>>>> Welcome everyone, >>>>>>>>>> Itamar >>>>>>>>>> >>>>>>>>> >>>>>>>>> Welcome indeed, >>>>>>>>> >>>>>>>>> A link to a wiki with info for setting development environment - >>>>>>>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>>>>>>> >>>>>>>> I tried building with these instructions but get "9 required >>>>>>>> artifacts >>>>>>>> are missing." Also I get a *lot* of "unable to fine resource" >>>>>>>> info/warning messages. I've attached the output of the maven run. >>>>>>>> >>>>>>>> Regards, >>>>>>>> Dennis >>>>>>>> >>>>>>> >>>>>>> Hi Dennis, >>>>>>> Maven tries to download dependencies that are required by your >>>>>>> project, >>>>>>> in this case oVirt. >>>>>>> For each dependency maven iterates over all the repositories >>>>>>> defined in >>>>>>> the pom.xml and stops when it finds the required dependency, if it >>>>>>> does >>>>>>> not find the Jar in a repository it issues info message and looks in >>>>>>> the >>>>>>> next repsitory. The info message looks like "[INFO] Unable to find >>>>>>> resource XXX in repository YYY" and does not indicate on a problem. >>>>>>> >>>>>>> For the errors you get - >>>>>>> >>>>>>> I looked into the first missing jar commons-httpclient-2.0.2, it >>>>>>> can be >>>>>>> found in - >>>>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> but it looks like you get - >>>>>>> >>>>>>> Authorization failed: Access denied to: >>>>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> Any idea why you got authorization error? I can access it locally. >>>>>>> Can you try again? maybe a temporary problem. >>>>>> >>>>>> When I access that URL in a browser I still get a 403 Forbidden >>>>>> response. >>>>>> I can access http://repository.jboss.org/ but not >>>>>> http://repository.jboss.org/maven2/. >>>>>> >>>>>> In fact the maven2 directory doesn't show up in the directory listing >>>>>> when requesting http://repository.jboss.org/ which could >>>>>> potentially be >>>>>> an SELinux issue on the server. Has this directory perhaps been >>>>>> manually >>>>>> copied to the server without the correct SELinux labels? >>>>>> >>>>>> Regards, >>>>>> Dennis >>>>> >>>>> Can you access this - >>>>> https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ >>>>> >>>>> >>>> >>>> Yes, this URL works fine. >>>> >>>> Regards, >>>> Dennis >>>> >>> >>> Hi Dennis, >>> It looks like repo - http://repository.jboss.org/maven2/ is deprecated >>> and can only be accessed within RedHat Network, probably for JBoss >>> engineers. >>> >>> I have attached a temporary patch with another URL for this repo. >>> The new URL is accessible from outside of RedHat but we should replace >>> it with the new repositories in Nexus. >>> >>> As i have to catch a flight in a few hours i have no time to test it so >>> i hope it will do the work. >> >> This improved the situation but there are still two missing artifacts: >> >> 1) sun-jaxb:jaxb-api:jar:2.1.9 >> 2) oswego-concurrent:concurrent:jar:1.3.4 >> >> jaxb-api seems to be present in the new repository but only version >> 2.0.5 and concurrent seems to be missing completely. >> >> Regards, >> Dennis >> >> _______________________________________________ >> Engine-devel mailing list >> Engine-devel at ovirt.org >> http://lists.ovirt.org/mailman/listinfo/engine-devel > From iheim at redhat.com Mon Oct 31 02:27:31 2011 From: iheim at redhat.com (Itamar Heim) Date: Mon, 31 Oct 2011 04:27:31 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAD6011.6000402@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> Message-ID: <4EAE0793.5020904@redhat.com> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: > Hi Yair, > I managed to install the two missing dependencies from the web and now > the build seem to run ok but apparently 8gb of RAM are not sufficient to > build ovirt-engine so I'll have to give it a pass for now and wait for > binary releases. 8GB are more than enough. probably some config for the JVM. what's the error you are getting? did you set the JAVA_OPTS? > > Regards, > Dennis > > On 10/30/2011 01:46 PM, Yair Zaslavsky wrote: >> Hi Dennis, >> Do you still need assistance with this? >> >> Kind regards, >> Yair >> >> >> On 10/30/2011 02:24 PM, Dennis Jacobfeuerborn wrote: >>> On 10/30/2011 06:09 AM, Livnat Peer wrote: >>>> On 10/30/2011 01:36 AM, Dennis Jacobfeuerborn wrote: >>>>> On 10/29/2011 10:39 PM, Livnat Peer wrote: >>>>>> On 10/29/2011 10:08 PM, Dennis Jacobfeuerborn wrote: >>>>>>> On 10/29/2011 07:15 PM, Livnat Peer wrote: >>>>>>>> On 10/29/2011 05:48 PM, Dennis Jacobfeuerborn wrote: >>>>>>>>> On 10/28/2011 02:09 AM, Livnat Peer wrote: >>>>>>>>>> On 10/27/2011 11:51 PM, Itamar Heim wrote: >>>>>>>>>>> Here we go... >>>>>>>>>>> >>>>>>>>>>> - gerrit is up. >>>>>>>>>>> - ovirt-engine git repo is there. >>>>>>>>>>> - will upload the other repositories soon. >>>>>>>>>>> >>>>>>>>>>> below you can find the steps on how to get the code (yes, >>>>>>>>>>> coming to >>>>>>>>>>> you >>>>>>>>>>> in wiki soon). >>>>>>>>>>> a link to the wiki on how to build oVirt will be sent soon by >>>>>>>>>>> Livnat. >>>>>>>>>>> >>>>>>>>>>> It's exciting to see everyone coming together to build a >>>>>>>>>>> community, >>>>>>>>>>> and >>>>>>>>>>> I'm looking forward to working together on oVirt. >>>>>>>>>>> >>>>>>>>>>> Welcome everyone, >>>>>>>>>>> Itamar >>>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Welcome indeed, >>>>>>>>>> >>>>>>>>>> A link to a wiki with info for setting development environment - >>>>>>>>>> http://www.ovirt.org/wiki/Building_Ovirt_Engine >>>>>>>>> >>>>>>>>> I tried building with these instructions but get "9 required >>>>>>>>> artifacts >>>>>>>>> are missing." Also I get a *lot* of "unable to fine resource" >>>>>>>>> info/warning messages. I've attached the output of the maven run. >>>>>>>>> >>>>>>>>> Regards, >>>>>>>>> Dennis >>>>>>>>> >>>>>>>> >>>>>>>> Hi Dennis, >>>>>>>> Maven tries to download dependencies that are required by your >>>>>>>> project, >>>>>>>> in this case oVirt. >>>>>>>> For each dependency maven iterates over all the repositories >>>>>>>> defined in >>>>>>>> the pom.xml and stops when it finds the required dependency, if it >>>>>>>> does >>>>>>>> not find the Jar in a repository it issues info message and >>>>>>>> looks in >>>>>>>> the >>>>>>>> next repsitory. The info message looks like "[INFO] Unable to find >>>>>>>> resource XXX in repository YYY" and does not indicate on a problem. >>>>>>>> >>>>>>>> For the errors you get - >>>>>>>> >>>>>>>> I looked into the first missing jar commons-httpclient-2.0.2, it >>>>>>>> can be >>>>>>>> found in - >>>>>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/ >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> but it looks like you get - >>>>>>>> >>>>>>>> Authorization failed: Access denied to: >>>>>>>> http://repository.jboss.org/maven2/apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2.jar >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Any idea why you got authorization error? I can access it locally. >>>>>>>> Can you try again? maybe a temporary problem. >>>>>>> >>>>>>> When I access that URL in a browser I still get a 403 Forbidden >>>>>>> response. >>>>>>> I can access http://repository.jboss.org/ but not >>>>>>> http://repository.jboss.org/maven2/. >>>>>>> >>>>>>> In fact the maven2 directory doesn't show up in the directory >>>>>>> listing >>>>>>> when requesting http://repository.jboss.org/ which could >>>>>>> potentially be >>>>>>> an SELinux issue on the server. Has this directory perhaps been >>>>>>> manually >>>>>>> copied to the server without the correct SELinux labels? >>>>>>> >>>>>>> Regards, >>>>>>> Dennis >>>>>> >>>>>> Can you access this - >>>>>> https://repository.jboss.org/nexus/content/repositories/central/commons-httpclient/commons-httpclient/2.0.2/ >>>>>> >>>>>> >>>>>> >>>>> >>>>> Yes, this URL works fine. >>>>> >>>>> Regards, >>>>> Dennis >>>>> >>>> >>>> Hi Dennis, >>>> It looks like repo - http://repository.jboss.org/maven2/ is deprecated >>>> and can only be accessed within RedHat Network, probably for JBoss >>>> engineers. >>>> >>>> I have attached a temporary patch with another URL for this repo. >>>> The new URL is accessible from outside of RedHat but we should replace >>>> it with the new repositories in Nexus. >>>> >>>> As i have to catch a flight in a few hours i have no time to test it so >>>> i hope it will do the work. >>> >>> This improved the situation but there are still two missing artifacts: >>> >>> 1) sun-jaxb:jaxb-api:jar:2.1.9 >>> 2) oswego-concurrent:concurrent:jar:1.3.4 >>> >>> jaxb-api seems to be present in the new repository but only version >>> 2.0.5 and concurrent seems to be missing completely. >>> >>> Regards, >>> Dennis >>> >>> _______________________________________________ >>> Engine-devel mailing list >>> Engine-devel at ovirt.org >>> http://lists.ovirt.org/mailman/listinfo/engine-devel >> > > _______________________________________________ > Engine-devel mailing list > Engine-devel at ovirt.org > http://lists.ovirt.org/mailman/listinfo/engine-devel From dennisml at conversis.de Mon Oct 31 02:52:09 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Mon, 31 Oct 2011 03:52:09 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE0793.5020904@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> Message-ID: <4EAE0D59.4060303@conversis.de> On 10/31/2011 03:27 AM, Itamar Heim wrote: > On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >> Hi Yair, >> I managed to install the two missing dependencies from the web and now >> the build seem to run ok but apparently 8gb of RAM are not sufficient to >> build ovirt-engine so I'll have to give it a pass for now and wait for >> binary releases. > > 8GB are more than enough. probably some config for the JVM. > what's the error you are getting? > did you set the JAVA_OPTS? I don't get an error. The build process simply uses up all memory and the desktop becomes unusable. If I don't switch to another virtual terminal and issue a "killall java" then the system would probably die in the end and require a reboot (or the OOM Killer would step in an kill some processes before that happens). This is a plain Fedora 15 System and I'm following the build instructions from the wiki so right now there are no custom settings applied. Regards, Dennis From iheim at redhat.com Mon Oct 31 04:55:18 2011 From: iheim at redhat.com (Itamar Heim) Date: Mon, 31 Oct 2011 06:55:18 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE0D59.4060303@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> Message-ID: <4EAE2A36.1010205@redhat.com> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: > On 10/31/2011 03:27 AM, Itamar Heim wrote: >> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>> Hi Yair, >>> I managed to install the two missing dependencies from the web and now >>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>> build ovirt-engine so I'll have to give it a pass for now and wait for >>> binary releases. >> >> 8GB are more than enough. probably some config for the JVM. >> what's the error you are getting? >> did you set the JAVA_OPTS? > > I don't get an error. The build process simply uses up all memory and > the desktop becomes unusable. If I don't switch to another virtual > terminal and issue a "killall java" then the system would probably die > in the end and require a reboot (or the OOM Killer would step in an kill > some processes before that happens). > > This is a plain Fedora 15 System and I'm following the build > instructions from the wiki so right now there are no custom settings > applied. we are all building on F15, and with less than 8GB as well. which command are you running causing the hang? what does top shows when it hangs? what does maven output show when it hangs (i.e., which part of the project is causing the hang). Thanks, Itamar > > Regards, > Dennis From juan.hernandez at redhat.com Mon Oct 31 08:34:33 2011 From: juan.hernandez at redhat.com (Juan Hernandez) Date: Mon, 31 Oct 2011 09:34:33 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE2A36.1010205@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> Message-ID: <4EAE5D99.5090104@redhat.com> On 10/31/2011 05:55 AM, Itamar Heim wrote: > On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>> Hi Yair, >>>> I managed to install the two missing dependencies from the web and now >>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>> binary releases. >>> >>> 8GB are more than enough. probably some config for the JVM. >>> what's the error you are getting? >>> did you set the JAVA_OPTS? >> >> I don't get an error. The build process simply uses up all memory and >> the desktop becomes unusable. If I don't switch to another virtual >> terminal and issue a "killall java" then the system would probably die >> in the end and require a reboot (or the OOM Killer would step in an kill >> some processes before that happens). >> >> This is a plain Fedora 15 System and I'm following the build >> instructions from the wiki so right now there are no custom settings >> applied. > > we are all building on F15, and with less than 8GB as well. > which command are you running causing the hang? > what does top shows when it hangs? > what does maven output show when it hangs (i.e., which part of the > project is causing the hang). The compilation of the GWT applications can take very long (more than 10 minutes in a core i5 with 8GB) with intensive use of all the CPUs. This could be what you are observing. Can try to build without the "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. -- Direcci?n Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta 3?D, 28016 Madrid, Spain Inscrita en el Reg. Mercantil de Madrid ? C.I.F. B82657941 - Red Hat S.L. From dennisml at conversis.de Mon Oct 31 11:04:20 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Mon, 31 Oct 2011 12:04:20 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE5D99.5090104@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> Message-ID: <4EAE80B4.6030601@conversis.de> On 10/31/2011 09:34 AM, Juan Hernandez wrote: > On 10/31/2011 05:55 AM, Itamar Heim wrote: >> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>> Hi Yair, >>>>> I managed to install the two missing dependencies from the web and now >>>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>>> binary releases. >>>> >>>> 8GB are more than enough. probably some config for the JVM. >>>> what's the error you are getting? >>>> did you set the JAVA_OPTS? >>> >>> I don't get an error. The build process simply uses up all memory and >>> the desktop becomes unusable. If I don't switch to another virtual >>> terminal and issue a "killall java" then the system would probably die >>> in the end and require a reboot (or the OOM Killer would step in an kill >>> some processes before that happens). >>> >>> This is a plain Fedora 15 System and I'm following the build >>> instructions from the wiki so right now there are no custom settings >>> applied. >> >> we are all building on F15, and with less than 8GB as well. >> which command are you running causing the hang? >> what does top shows when it hangs? >> what does maven output show when it hangs (i.e., which part of the >> project is causing the hang). > > The compilation of the GWT applications can take very long (more than 10 > minutes in a core i5 with 8GB) with intensive use of all the CPUs. This > could be what you are observing. Can try to build without the > "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. > This seems to be the problem. I already sent the information to Yair Zaslavsky (and Daniel Erez) who contacted me off-list about this (though I think this really belongs on the list so everybody can chime in). I attached the output I get. At the end I had to kill the process because memory usage was at about 99%. The command I'm running is: mvn install -Pgwt-admin,gwt-user The system monitor shows cpu usage very low (up to the problematic point the build seems to spend 90% of its time trying to download jar files from bogus sources) and memory usage increasing slightly as expected until the build reaches that last problematic part where all cpu cores go to 100% and memory usage increases until all memory is consumed. Regards, Dennis -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: ovirt-error.txt URL: From juan.hernandez at redhat.com Mon Oct 31 11:29:15 2011 From: juan.hernandez at redhat.com (Juan Hernandez) Date: Mon, 31 Oct 2011 12:29:15 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE80B4.6030601@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> <4EAE80B4.6030601@conversis.de> Message-ID: <4EAE868B.9070403@redhat.com> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: > On 10/31/2011 09:34 AM, Juan Hernandez wrote: >> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>> Hi Yair, >>>>>> I managed to install the two missing dependencies from the web and now >>>>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>>>> binary releases. >>>>> >>>>> 8GB are more than enough. probably some config for the JVM. >>>>> what's the error you are getting? >>>>> did you set the JAVA_OPTS? >>>> >>>> I don't get an error. The build process simply uses up all memory and >>>> the desktop becomes unusable. If I don't switch to another virtual >>>> terminal and issue a "killall java" then the system would probably die >>>> in the end and require a reboot (or the OOM Killer would step in an kill >>>> some processes before that happens). >>>> >>>> This is a plain Fedora 15 System and I'm following the build >>>> instructions from the wiki so right now there are no custom settings >>>> applied. >>> >>> we are all building on F15, and with less than 8GB as well. >>> which command are you running causing the hang? >>> what does top shows when it hangs? >>> what does maven output show when it hangs (i.e., which part of the >>> project is causing the hang). >> >> The compilation of the GWT applications can take very long (more than 10 >> minutes in a core i5 with 8GB) with intensive use of all the CPUs. This >> could be what you are observing. Can try to build without the >> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. >> > > This seems to be the problem. I already sent the information to Yair > Zaslavsky (and Daniel Erez) who contacted me off-list about this (though I > think this really belongs on the list so everybody can chime in). > I attached the output I get. At the end I had to kill the process because > memory usage was at about 99%. > > The command I'm running is: mvn install -Pgwt-admin,gwt-user > The system monitor shows cpu usage very low (up to the problematic point > the build seems to spend 90% of its time trying to download jar files from > bogus sources) and memory usage increasing slightly as expected until the > build reaches that last problematic part where all cpu cores go to 100% and > memory usage increases until all memory is consumed. All those messages are expected, except the "Destroying process ..." at the end. I assume that you get that when you kill the Java processes. How long did you wait before killing them? I would suggest that you try again and give it time to complete. GWT compiling is extremelly Also you can reduce the number of permutations generated by the GWT compiler and that will reduce the time it takes to compile. For example, if you are going to use Firefox only as the client you can apply the following patch to reduce the number of permutations to just one: --- a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml +++ b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml @@ -19,6 +19,9 @@ + + + Then compile with "-Pgwt-admin" only. That will generate the GUI but only for Firefox. In my environment (Intel Core i5 8GB) this reduces the GWT compilation to 4 minutes: [INFO] WebAdmin ... SUCCESS [4:22.581s] From iheim at redhat.com Mon Oct 31 12:11:00 2011 From: iheim at redhat.com (Itamar Heim) Date: Mon, 31 Oct 2011 14:11:00 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE868B.9070403@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> <4EAE80B4.6030601@conversis.de> <4EAE868B.9070403@redhat.com> Message-ID: <4EAE9054.3040208@redhat.com> On 10/31/2011 01:29 PM, Juan Hernandez wrote: > On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>> Hi Yair, >>>>>>> I managed to install the two missing dependencies from the web and now >>>>>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>>>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>>>>> binary releases. >>>>>> >>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>> what's the error you are getting? >>>>>> did you set the JAVA_OPTS? >>>>> >>>>> I don't get an error. The build process simply uses up all memory and >>>>> the desktop becomes unusable. If I don't switch to another virtual >>>>> terminal and issue a "killall java" then the system would probably die >>>>> in the end and require a reboot (or the OOM Killer would step in an kill >>>>> some processes before that happens). >>>>> >>>>> This is a plain Fedora 15 System and I'm following the build >>>>> instructions from the wiki so right now there are no custom settings >>>>> applied. >>>> >>>> we are all building on F15, and with less than 8GB as well. >>>> which command are you running causing the hang? >>>> what does top shows when it hangs? >>>> what does maven output show when it hangs (i.e., which part of the >>>> project is causing the hang). >>> >>> The compilation of the GWT applications can take very long (more than 10 >>> minutes in a core i5 with 8GB) with intensive use of all the CPUs. This >>> could be what you are observing. Can try to build without the >>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. >>> >> >> This seems to be the problem. I already sent the information to Yair >> Zaslavsky (and Daniel Erez) who contacted me off-list about this (though I >> think this really belongs on the list so everybody can chime in). >> I attached the output I get. At the end I had to kill the process because >> memory usage was at about 99%. >> >> The command I'm running is: mvn install -Pgwt-admin,gwt-user >> The system monitor shows cpu usage very low (up to the problematic point >> the build seems to spend 90% of its time trying to download jar files from >> bogus sources) and memory usage increasing slightly as expected until the >> build reaches that last problematic part where all cpu cores go to 100% and >> memory usage increases until all memory is consumed. > > All those messages are expected, except the "Destroying process ..." at > the end. I assume that you get that when you kill the Java processes. > How long did you wait before killing them? I would suggest that you try > again and give it time to complete. GWT compiling is extremelly > > Also you can reduce the number of permutations generated by the GWT > compiler and that will reduce the time it takes to compile. For example, > if you are going to use Firefox only as the client you can apply the > following patch to reduce the number of permutations to just one: maybe worth to create target profiles of web admin limited to a single browser then? or allow to set this as an evnironment property so gwt_user.agent=gecko1_8 mvn clean install -Pgwt-admin can be used for this during devel? > > --- > a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > +++ > b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > @@ -19,6 +19,9 @@ > > > > + > + > + > > > > > Then compile with "-Pgwt-admin" only. That will generate the GUI but > only for Firefox. In my environment (Intel Core i5 8GB) this reduces the > GWT compilation to 4 minutes: > > [INFO] WebAdmin ... SUCCESS [4:22.581s] From dennisml at conversis.de Mon Oct 31 13:17:59 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Mon, 31 Oct 2011 14:17:59 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE868B.9070403@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> <4EAE80B4.6030601@conversis.de> <4EAE868B.9070403@redhat.com> Message-ID: <4EAEA007.90902@conversis.de> On 10/31/2011 12:29 PM, Juan Hernandez wrote: > On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>> Hi Yair, >>>>>>> I managed to install the two missing dependencies from the web and now >>>>>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>>>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>>>>> binary releases. >>>>>> >>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>> what's the error you are getting? >>>>>> did you set the JAVA_OPTS? >>>>> >>>>> I don't get an error. The build process simply uses up all memory and >>>>> the desktop becomes unusable. If I don't switch to another virtual >>>>> terminal and issue a "killall java" then the system would probably die >>>>> in the end and require a reboot (or the OOM Killer would step in an kill >>>>> some processes before that happens). >>>>> >>>>> This is a plain Fedora 15 System and I'm following the build >>>>> instructions from the wiki so right now there are no custom settings >>>>> applied. >>>> >>>> we are all building on F15, and with less than 8GB as well. >>>> which command are you running causing the hang? >>>> what does top shows when it hangs? >>>> what does maven output show when it hangs (i.e., which part of the >>>> project is causing the hang). >>> >>> The compilation of the GWT applications can take very long (more than 10 >>> minutes in a core i5 with 8GB) with intensive use of all the CPUs. This >>> could be what you are observing. Can try to build without the >>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. >>> >> >> This seems to be the problem. I already sent the information to Yair >> Zaslavsky (and Daniel Erez) who contacted me off-list about this (though I >> think this really belongs on the list so everybody can chime in). >> I attached the output I get. At the end I had to kill the process because >> memory usage was at about 99%. >> >> The command I'm running is: mvn install -Pgwt-admin,gwt-user >> The system monitor shows cpu usage very low (up to the problematic point >> the build seems to spend 90% of its time trying to download jar files from >> bogus sources) and memory usage increasing slightly as expected until the >> build reaches that last problematic part where all cpu cores go to 100% and >> memory usage increases until all memory is consumed. > > All those messages are expected, except the "Destroying process ..." at > the end. I assume that you get that when you kill the Java processes. > How long did you wait before killing them? I would suggest that you try > again and give it time to complete. GWT compiling is extremelly > > Also you can reduce the number of permutations generated by the GWT > compiler and that will reduce the time it takes to compile. For example, > if you are going to use Firefox only as the client you can apply the > following patch to reduce the number of permutations to just one: > > --- > a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > +++ > b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > @@ -19,6 +19,9 @@ > > > > + > + > + > > > > > Then compile with "-Pgwt-admin" only. That will generate the GUI but > only for Firefox. In my environment (Intel Core i5 8GB) this reduces the > GWT compilation to 4 minutes: > > [INFO] WebAdmin ... SUCCESS [4:22.581s] With the patch the build was successfull. I then went ahead and freed up some memory by stopping some applications and with that even the fill build tops out at about 90% memory usage so it seems that 8gb is enough after all but only barely. With the patch memory usage topped out at 40% so this would definitely make a difference for people with smaller build systems. The deployment works as well but when I start jboss I get the attached errors. Also the build instructions talk about ":" to access the deployed services. I presume is localhost but what port do I use to access the services? Regards, Dennis -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: ovirt-error.txt URL: From ovedo at redhat.com Mon Oct 31 13:24:37 2011 From: ovedo at redhat.com (Oved Ourfalli) Date: Mon, 31 Oct 2011 09:24:37 -0400 (EDT) Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAEA007.90902@conversis.de> Message-ID: <2cf12ee9-c144-417e-85bc-398000cf8be5@zmail02.collab.prod.int.phx2.redhat.com> Can you check if the file quartz-1.8.3.jar is in the folder: JBOSS_HOME/common/lib ? According to the error there are quartz classes that are missing. ----- Original Message ----- > From: "Dennis Jacobfeuerborn" > To: "Juan Hernandez" > Cc: engine-devel at ovirt.org > Sent: Monday, October 31, 2011 3:17:59 PM > Subject: Re: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! > > On 10/31/2011 12:29 PM, Juan Hernandez wrote: > > On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: > >> On 10/31/2011 09:34 AM, Juan Hernandez wrote: > >>> On 10/31/2011 05:55 AM, Itamar Heim wrote: > >>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: > >>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: > >>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: > >>>>>>> Hi Yair, > >>>>>>> I managed to install the two missing dependencies from the > >>>>>>> web and now > >>>>>>> the build seem to run ok but apparently 8gb of RAM are not > >>>>>>> sufficient to > >>>>>>> build ovirt-engine so I'll have to give it a pass for now and > >>>>>>> wait for > >>>>>>> binary releases. > >>>>>> > >>>>>> 8GB are more than enough. probably some config for the JVM. > >>>>>> what's the error you are getting? > >>>>>> did you set the JAVA_OPTS? > >>>>> > >>>>> I don't get an error. The build process simply uses up all > >>>>> memory and > >>>>> the desktop becomes unusable. If I don't switch to another > >>>>> virtual > >>>>> terminal and issue a "killall java" then the system would > >>>>> probably die > >>>>> in the end and require a reboot (or the OOM Killer would step > >>>>> in an kill > >>>>> some processes before that happens). > >>>>> > >>>>> This is a plain Fedora 15 System and I'm following the build > >>>>> instructions from the wiki so right now there are no custom > >>>>> settings > >>>>> applied. > >>>> > >>>> we are all building on F15, and with less than 8GB as well. > >>>> which command are you running causing the hang? > >>>> what does top shows when it hangs? > >>>> what does maven output show when it hangs (i.e., which part of > >>>> the > >>>> project is causing the hang). > >>> > >>> The compilation of the GWT applications can take very long (more > >>> than 10 > >>> minutes in a core i5 with 8GB) with intensive use of all the > >>> CPUs. This > >>> could be what you are observing. Can try to build without the > >>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is > >>> your issue. > >>> > >> > >> This seems to be the problem. I already sent the information to > >> Yair > >> Zaslavsky (and Daniel Erez) who contacted me off-list about this > >> (though I > >> think this really belongs on the list so everybody can chime in). > >> I attached the output I get. At the end I had to kill the process > >> because > >> memory usage was at about 99%. > >> > >> The command I'm running is: mvn install -Pgwt-admin,gwt-user > >> The system monitor shows cpu usage very low (up to the problematic > >> point > >> the build seems to spend 90% of its time trying to download jar > >> files from > >> bogus sources) and memory usage increasing slightly as expected > >> until the > >> build reaches that last problematic part where all cpu cores go to > >> 100% and > >> memory usage increases until all memory is consumed. > > > > All those messages are expected, except the "Destroying process > > ..." at > > the end. I assume that you get that when you kill the Java > > processes. > > How long did you wait before killing them? I would suggest that you > > try > > again and give it time to complete. GWT compiling is extremelly > > > > Also you can reduce the number of permutations generated by the GWT > > compiler and that will reduce the time it takes to compile. For > > example, > > if you are going to use Firefox only as the client you can apply > > the > > following patch to reduce the number of permutations to just one: > > > > --- > > a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > > +++ > > b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > > @@ -19,6 +19,9 @@ > > > > > value="DISABLED" /> > > > > + > > + > > + > > > > > > > > > > Then compile with "-Pgwt-admin" only. That will generate the GUI > > but > > only for Firefox. In my environment (Intel Core i5 8GB) this > > reduces the > > GWT compilation to 4 minutes: > > > > [INFO] WebAdmin ... SUCCESS [4:22.581s] > > With the patch the build was successfull. I then went ahead and freed > up > some memory by stopping some applications and with that even the fill > build > tops out at about 90% memory usage so it seems that 8gb is enough > after all > but only barely. > With the patch memory usage topped out at 40% so this would > definitely make > a difference for people with smaller build systems. > > The deployment works as well but when I start jboss I get the > attached errors. > > Also the build instructions talk about ":" to access > the > deployed services. I presume is localhost but what port do I > use > to access the services? > > Regards, > Dennis > > _______________________________________________ > Engine-devel mailing list > Engine-devel at ovirt.org > http://lists.ovirt.org/mailman/listinfo/engine-devel > From iheim at redhat.com Mon Oct 31 13:29:43 2011 From: iheim at redhat.com (Itamar Heim) Date: Mon, 31 Oct 2011 15:29:43 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAEA007.90902@conversis.de> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> <4EAE80B4.6030601@conversis.de> <4EAE868B.9070403@redhat.com> <4EAEA007.90902@conversis.de> Message-ID: <4EAEA2C7.6070502@redhat.com> On 10/31/2011 03:17 PM, Dennis Jacobfeuerborn wrote: > On 10/31/2011 12:29 PM, Juan Hernandez wrote: >> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >>> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>>> Hi Yair, >>>>>>>> I managed to install the two missing dependencies from the web >>>>>>>> and now >>>>>>>> the build seem to run ok but apparently 8gb of RAM are not >>>>>>>> sufficient to >>>>>>>> build ovirt-engine so I'll have to give it a pass for now and >>>>>>>> wait for >>>>>>>> binary releases. >>>>>>> >>>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>>> what's the error you are getting? >>>>>>> did you set the JAVA_OPTS? >>>>>> >>>>>> I don't get an error. The build process simply uses up all memory and >>>>>> the desktop becomes unusable. If I don't switch to another virtual >>>>>> terminal and issue a "killall java" then the system would probably >>>>>> die >>>>>> in the end and require a reboot (or the OOM Killer would step in >>>>>> an kill >>>>>> some processes before that happens). >>>>>> >>>>>> This is a plain Fedora 15 System and I'm following the build >>>>>> instructions from the wiki so right now there are no custom settings >>>>>> applied. >>>>> >>>>> we are all building on F15, and with less than 8GB as well. >>>>> which command are you running causing the hang? >>>>> what does top shows when it hangs? >>>>> what does maven output show when it hangs (i.e., which part of the >>>>> project is causing the hang). >>>> >>>> The compilation of the GWT applications can take very long (more >>>> than 10 >>>> minutes in a core i5 with 8GB) with intensive use of all the CPUs. This >>>> could be what you are observing. Can try to build without the >>>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is >>>> your issue. >>>> >>> >>> This seems to be the problem. I already sent the information to Yair >>> Zaslavsky (and Daniel Erez) who contacted me off-list about this >>> (though I >>> think this really belongs on the list so everybody can chime in). >>> I attached the output I get. At the end I had to kill the process >>> because >>> memory usage was at about 99%. >>> >>> The command I'm running is: mvn install -Pgwt-admin,gwt-user >>> The system monitor shows cpu usage very low (up to the problematic point >>> the build seems to spend 90% of its time trying to download jar files >>> from >>> bogus sources) and memory usage increasing slightly as expected until >>> the >>> build reaches that last problematic part where all cpu cores go to >>> 100% and >>> memory usage increases until all memory is consumed. >> >> All those messages are expected, except the "Destroying process ..." at >> the end. I assume that you get that when you kill the Java processes. >> How long did you wait before killing them? I would suggest that you try >> again and give it time to complete. GWT compiling is extremelly >> >> Also you can reduce the number of permutations generated by the GWT >> compiler and that will reduce the time it takes to compile. For example, >> if you are going to use Firefox only as the client you can apply the >> following patch to reduce the number of permutations to just one: >> >> --- >> a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >> >> +++ >> b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >> >> @@ -19,6 +19,9 @@ >> >> >> >> + >> + >> + >> >> >> >> >> Then compile with "-Pgwt-admin" only. That will generate the GUI but >> only for Firefox. In my environment (Intel Core i5 8GB) this reduces the >> GWT compilation to 4 minutes: >> >> [INFO] WebAdmin ... SUCCESS [4:22.581s] > > With the patch the build was successfull. I then went ahead and freed up > some memory by stopping some applications and with that even the fill > build tops out at about 90% memory usage so it seems that 8gb is enough > after all but only barely. > With the patch memory usage topped out at 40% so this would definitely > make a difference for people with smaller build systems. > > The deployment works as well but when I start jboss I get the attached > errors. > > Also the build instructions talk about ":" to access the > deployed services. I presume is localhost but what port do I > use to access the services? assuming by deployment you mean (cd ear; mvn clean install -Pdep) port is :8080 url is: 8080/api 8080/webadmin 8080/userportal (you need to build with -Pgwt-admin,gwt-user) > > Regards, > Dennis From dennisml at conversis.de Mon Oct 31 14:07:45 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Mon, 31 Oct 2011 15:07:45 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <2cf12ee9-c144-417e-85bc-398000cf8be5@zmail02.collab.prod.int.phx2.redhat.com> References: <2cf12ee9-c144-417e-85bc-398000cf8be5@zmail02.collab.prod.int.phx2.redhat.com> Message-ID: <4EAEABB1.6060908@conversis.de> No, this file doesn't seem to be a part of the http://sourceforge.net/projects/jboss/files/JBoss/JBoss-5.1.0.GA/jboss-5.1.0.GA-jdk6.zip package referenced on the build page. I tried downloading the file and putting it there manually but when I run jboss I just an endless flood of exceptions and after a ctrl-c jboss hangs and needs to be terminated with a kill -9. I deleted the file again as that apparently doesn't make things better. Regards, Dennis On 10/31/2011 02:24 PM, Oved Ourfalli wrote: > Can you check if the file quartz-1.8.3.jar is in the folder: > JBOSS_HOME/common/lib > > ? > > According to the error there are quartz classes that are missing. > > ----- Original Message ----- >> From: "Dennis Jacobfeuerborn" >> To: "Juan Hernandez" >> Cc: engine-devel at ovirt.org >> Sent: Monday, October 31, 2011 3:17:59 PM >> Subject: Re: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! >> >> On 10/31/2011 12:29 PM, Juan Hernandez wrote: >>> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >>>> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>>>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>>>> Hi Yair, >>>>>>>>> I managed to install the two missing dependencies from the >>>>>>>>> web and now >>>>>>>>> the build seem to run ok but apparently 8gb of RAM are not >>>>>>>>> sufficient to >>>>>>>>> build ovirt-engine so I'll have to give it a pass for now and >>>>>>>>> wait for >>>>>>>>> binary releases. >>>>>>>> >>>>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>>>> what's the error you are getting? >>>>>>>> did you set the JAVA_OPTS? >>>>>>> >>>>>>> I don't get an error. The build process simply uses up all >>>>>>> memory and >>>>>>> the desktop becomes unusable. If I don't switch to another >>>>>>> virtual >>>>>>> terminal and issue a "killall java" then the system would >>>>>>> probably die >>>>>>> in the end and require a reboot (or the OOM Killer would step >>>>>>> in an kill >>>>>>> some processes before that happens). >>>>>>> >>>>>>> This is a plain Fedora 15 System and I'm following the build >>>>>>> instructions from the wiki so right now there are no custom >>>>>>> settings >>>>>>> applied. >>>>>> >>>>>> we are all building on F15, and with less than 8GB as well. >>>>>> which command are you running causing the hang? >>>>>> what does top shows when it hangs? >>>>>> what does maven output show when it hangs (i.e., which part of >>>>>> the >>>>>> project is causing the hang). >>>>> >>>>> The compilation of the GWT applications can take very long (more >>>>> than 10 >>>>> minutes in a core i5 with 8GB) with intensive use of all the >>>>> CPUs. This >>>>> could be what you are observing. Can try to build without the >>>>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is >>>>> your issue. >>>>> >>>> >>>> This seems to be the problem. I already sent the information to >>>> Yair >>>> Zaslavsky (and Daniel Erez) who contacted me off-list about this >>>> (though I >>>> think this really belongs on the list so everybody can chime in). >>>> I attached the output I get. At the end I had to kill the process >>>> because >>>> memory usage was at about 99%. >>>> >>>> The command I'm running is: mvn install -Pgwt-admin,gwt-user >>>> The system monitor shows cpu usage very low (up to the problematic >>>> point >>>> the build seems to spend 90% of its time trying to download jar >>>> files from >>>> bogus sources) and memory usage increasing slightly as expected >>>> until the >>>> build reaches that last problematic part where all cpu cores go to >>>> 100% and >>>> memory usage increases until all memory is consumed. >>> >>> All those messages are expected, except the "Destroying process >>> ..." at >>> the end. I assume that you get that when you kill the Java >>> processes. >>> How long did you wait before killing them? I would suggest that you >>> try >>> again and give it time to complete. GWT compiling is extremelly >>> >>> Also you can reduce the number of permutations generated by the GWT >>> compiler and that will reduce the time it takes to compile. For >>> example, >>> if you are going to use Firefox only as the client you can apply >>> the >>> following patch to reduce the number of permutations to just one: >>> >>> --- >>> a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >>> +++ >>> b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >>> @@ -19,6 +19,9 @@ >>> >>> >> value="DISABLED" /> >>> >>> + >>> + >>> + >>> >>> >>> >>> >>> Then compile with "-Pgwt-admin" only. That will generate the GUI >>> but >>> only for Firefox. In my environment (Intel Core i5 8GB) this >>> reduces the >>> GWT compilation to 4 minutes: >>> >>> [INFO] WebAdmin ... SUCCESS [4:22.581s] >> >> With the patch the build was successfull. I then went ahead and freed >> up >> some memory by stopping some applications and with that even the fill >> build >> tops out at about 90% memory usage so it seems that 8gb is enough >> after all >> but only barely. >> With the patch memory usage topped out at 40% so this would >> definitely make >> a difference for people with smaller build systems. >> >> The deployment works as well but when I start jboss I get the >> attached errors. >> >> Also the build instructions talk about ":" to access >> the >> deployed services. I presume is localhost but what port do I >> use >> to access the services? >> >> Regards, >> Dennis >> >> _______________________________________________ >> Engine-devel mailing list >> Engine-devel at ovirt.org >> http://lists.ovirt.org/mailman/listinfo/engine-devel >> From ovedo at redhat.com Mon Oct 31 14:11:35 2011 From: ovedo at redhat.com (Oved Ourfalli) Date: Mon, 31 Oct 2011 10:11:35 -0400 (EDT) Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAEABB1.6060908@conversis.de> Message-ID: <77dcce26-b599-44f6-bd75-11a8e5d64c0d@zmail02.collab.prod.int.phx2.redhat.com> It doesn't come with jboss, but it is copied there when deploying the oVirt engine (maven "dep" profile: "-Pdep"). Did you build the engine with this profile as well? ----- Original Message ----- > From: "Dennis Jacobfeuerborn" > To: "Oved Ourfalli" > Cc: engine-devel at ovirt.org, "Juan Hernandez" > Sent: Monday, October 31, 2011 4:07:45 PM > Subject: Re: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! > > No, this file doesn't seem to be a part of the > http://sourceforge.net/projects/jboss/files/JBoss/JBoss-5.1.0.GA/jboss-5.1.0.GA-jdk6.zip > package referenced on the build page. > > I tried downloading the file and putting it there manually but when I > run > jboss I just an endless flood of exceptions and after a ctrl-c jboss > hangs > and needs to be terminated with a kill -9. I deleted the file again > as that > apparently doesn't make things better. > > Regards, > Dennis > > On 10/31/2011 02:24 PM, Oved Ourfalli wrote: > > Can you check if the file quartz-1.8.3.jar is in the folder: > > JBOSS_HOME/common/lib > > > > ? > > > > According to the error there are quartz classes that are missing. > > > > ----- Original Message ----- > >> From: "Dennis Jacobfeuerborn" > >> To: "Juan Hernandez" > >> Cc: engine-devel at ovirt.org > >> Sent: Monday, October 31, 2011 3:17:59 PM > >> Subject: Re: [Engine-devel] ovirt-engine repo up in > >> gerrit.ovirt.org! > >> > >> On 10/31/2011 12:29 PM, Juan Hernandez wrote: > >>> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: > >>>> On 10/31/2011 09:34 AM, Juan Hernandez wrote: > >>>>> On 10/31/2011 05:55 AM, Itamar Heim wrote: > >>>>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: > >>>>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: > >>>>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: > >>>>>>>>> Hi Yair, > >>>>>>>>> I managed to install the two missing dependencies from the > >>>>>>>>> web and now > >>>>>>>>> the build seem to run ok but apparently 8gb of RAM are not > >>>>>>>>> sufficient to > >>>>>>>>> build ovirt-engine so I'll have to give it a pass for now > >>>>>>>>> and > >>>>>>>>> wait for > >>>>>>>>> binary releases. > >>>>>>>> > >>>>>>>> 8GB are more than enough. probably some config for the JVM. > >>>>>>>> what's the error you are getting? > >>>>>>>> did you set the JAVA_OPTS? > >>>>>>> > >>>>>>> I don't get an error. The build process simply uses up all > >>>>>>> memory and > >>>>>>> the desktop becomes unusable. If I don't switch to another > >>>>>>> virtual > >>>>>>> terminal and issue a "killall java" then the system would > >>>>>>> probably die > >>>>>>> in the end and require a reboot (or the OOM Killer would step > >>>>>>> in an kill > >>>>>>> some processes before that happens). > >>>>>>> > >>>>>>> This is a plain Fedora 15 System and I'm following the build > >>>>>>> instructions from the wiki so right now there are no custom > >>>>>>> settings > >>>>>>> applied. > >>>>>> > >>>>>> we are all building on F15, and with less than 8GB as well. > >>>>>> which command are you running causing the hang? > >>>>>> what does top shows when it hangs? > >>>>>> what does maven output show when it hangs (i.e., which part of > >>>>>> the > >>>>>> project is causing the hang). > >>>>> > >>>>> The compilation of the GWT applications can take very long > >>>>> (more > >>>>> than 10 > >>>>> minutes in a core i5 with 8GB) with intensive use of all the > >>>>> CPUs. This > >>>>> could be what you are observing. Can try to build without the > >>>>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this > >>>>> is > >>>>> your issue. > >>>>> > >>>> > >>>> This seems to be the problem. I already sent the information to > >>>> Yair > >>>> Zaslavsky (and Daniel Erez) who contacted me off-list about this > >>>> (though I > >>>> think this really belongs on the list so everybody can chime > >>>> in). > >>>> I attached the output I get. At the end I had to kill the > >>>> process > >>>> because > >>>> memory usage was at about 99%. > >>>> > >>>> The command I'm running is: mvn install -Pgwt-admin,gwt-user > >>>> The system monitor shows cpu usage very low (up to the > >>>> problematic > >>>> point > >>>> the build seems to spend 90% of its time trying to download jar > >>>> files from > >>>> bogus sources) and memory usage increasing slightly as expected > >>>> until the > >>>> build reaches that last problematic part where all cpu cores go > >>>> to > >>>> 100% and > >>>> memory usage increases until all memory is consumed. > >>> > >>> All those messages are expected, except the "Destroying process > >>> ..." at > >>> the end. I assume that you get that when you kill the Java > >>> processes. > >>> How long did you wait before killing them? I would suggest that > >>> you > >>> try > >>> again and give it time to complete. GWT compiling is extremelly > >>> > >>> Also you can reduce the number of permutations generated by the > >>> GWT > >>> compiler and that will reduce the time it takes to compile. For > >>> example, > >>> if you are going to use Firefox only as the client you can apply > >>> the > >>> following patch to reduce the number of permutations to just one: > >>> > >>> --- > >>> a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > >>> +++ > >>> b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml > >>> @@ -19,6 +19,9 @@ > >>> >>> /> > >>> >>> value="DISABLED" /> > >>> > >>> + > >>> + > >>> + > >>> > >>> > >>> > >>> > >>> Then compile with "-Pgwt-admin" only. That will generate the GUI > >>> but > >>> only for Firefox. In my environment (Intel Core i5 8GB) this > >>> reduces the > >>> GWT compilation to 4 minutes: > >>> > >>> [INFO] WebAdmin ... SUCCESS [4:22.581s] > >> > >> With the patch the build was successfull. I then went ahead and > >> freed > >> up > >> some memory by stopping some applications and with that even the > >> fill > >> build > >> tops out at about 90% memory usage so it seems that 8gb is enough > >> after all > >> but only barely. > >> With the patch memory usage topped out at 40% so this would > >> definitely make > >> a difference for people with smaller build systems. > >> > >> The deployment works as well but when I start jboss I get the > >> attached errors. > >> > >> Also the build instructions talk about ":" to access > >> the > >> deployed services. I presume is localhost but what port > >> do I > >> use > >> to access the services? > >> > >> Regards, > >> Dennis > >> > >> _______________________________________________ > >> Engine-devel mailing list > >> Engine-devel at ovirt.org > >> http://lists.ovirt.org/mailman/listinfo/engine-devel > >> > > From masayag at redhat.com Mon Oct 31 14:34:45 2011 From: masayag at redhat.com (Moti Asayag) Date: Mon, 31 Oct 2011 16:34:45 +0200 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <77dcce26-b599-44f6-bd75-11a8e5d64c0d@zmail02.collab.prod.int.phx2.redhat.com> References: <77dcce26-b599-44f6-bd75-11a8e5d64c0d@zmail02.collab.prod.int.phx2.redhat.com> Message-ID: <4EAEB205.10302@redhat.com> On 10/31/2011 04:11 PM, Oved Ourfalli wrote: > It doesn't come with jboss, but it is copied there when deploying the oVirt engine (maven "dep" profile: "-Pdep"). > Did you build the engine with this profile as well? Actually for the first time, it's better to use: mvn clean install -Pdep,gwt-admin,setup_postgres setup_postgres - will copy postgresql datasource file and additional configuration files to jboss. setup_postgres won't be required until specific changes to those configuration files is made. dep - will copy the ear and quartz to jboss deploy folder. > > ----- Original Message ----- >> From: "Dennis Jacobfeuerborn" >> To: "Oved Ourfalli" >> Cc: engine-devel at ovirt.org, "Juan Hernandez" >> Sent: Monday, October 31, 2011 4:07:45 PM >> Subject: Re: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! >> >> No, this file doesn't seem to be a part of the >> http://sourceforge.net/projects/jboss/files/JBoss/JBoss-5.1.0.GA/jboss-5.1.0.GA-jdk6.zip >> package referenced on the build page. >> >> I tried downloading the file and putting it there manually but when I >> run >> jboss I just an endless flood of exceptions and after a ctrl-c jboss >> hangs >> and needs to be terminated with a kill -9. I deleted the file again >> as that >> apparently doesn't make things better. >> >> Regards, >> Dennis >> >> On 10/31/2011 02:24 PM, Oved Ourfalli wrote: >>> Can you check if the file quartz-1.8.3.jar is in the folder: >>> JBOSS_HOME/common/lib >>> >>> ? >>> >>> According to the error there are quartz classes that are missing. >>> >>> ----- Original Message ----- >>>> From: "Dennis Jacobfeuerborn" >>>> To: "Juan Hernandez" >>>> Cc: engine-devel at ovirt.org >>>> Sent: Monday, October 31, 2011 3:17:59 PM >>>> Subject: Re: [Engine-devel] ovirt-engine repo up in >>>> gerrit.ovirt.org! >>>> >>>> On 10/31/2011 12:29 PM, Juan Hernandez wrote: >>>>> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >>>>>> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>>>>>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>>>>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>>>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>>>>>> Hi Yair, >>>>>>>>>>> I managed to install the two missing dependencies from the >>>>>>>>>>> web and now >>>>>>>>>>> the build seem to run ok but apparently 8gb of RAM are not >>>>>>>>>>> sufficient to >>>>>>>>>>> build ovirt-engine so I'll have to give it a pass for now >>>>>>>>>>> and >>>>>>>>>>> wait for >>>>>>>>>>> binary releases. >>>>>>>>>> >>>>>>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>>>>>> what's the error you are getting? >>>>>>>>>> did you set the JAVA_OPTS? >>>>>>>>> >>>>>>>>> I don't get an error. The build process simply uses up all >>>>>>>>> memory and >>>>>>>>> the desktop becomes unusable. If I don't switch to another >>>>>>>>> virtual >>>>>>>>> terminal and issue a "killall java" then the system would >>>>>>>>> probably die >>>>>>>>> in the end and require a reboot (or the OOM Killer would step >>>>>>>>> in an kill >>>>>>>>> some processes before that happens). >>>>>>>>> >>>>>>>>> This is a plain Fedora 15 System and I'm following the build >>>>>>>>> instructions from the wiki so right now there are no custom >>>>>>>>> settings >>>>>>>>> applied. >>>>>>>> >>>>>>>> we are all building on F15, and with less than 8GB as well. >>>>>>>> which command are you running causing the hang? >>>>>>>> what does top shows when it hangs? >>>>>>>> what does maven output show when it hangs (i.e., which part of >>>>>>>> the >>>>>>>> project is causing the hang). >>>>>>> >>>>>>> The compilation of the GWT applications can take very long >>>>>>> (more >>>>>>> than 10 >>>>>>> minutes in a core i5 with 8GB) with intensive use of all the >>>>>>> CPUs. This >>>>>>> could be what you are observing. Can try to build without the >>>>>>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this >>>>>>> is >>>>>>> your issue. >>>>>>> >>>>>> >>>>>> This seems to be the problem. I already sent the information to >>>>>> Yair >>>>>> Zaslavsky (and Daniel Erez) who contacted me off-list about this >>>>>> (though I >>>>>> think this really belongs on the list so everybody can chime >>>>>> in). >>>>>> I attached the output I get. At the end I had to kill the >>>>>> process >>>>>> because >>>>>> memory usage was at about 99%. >>>>>> >>>>>> The command I'm running is: mvn install -Pgwt-admin,gwt-user >>>>>> The system monitor shows cpu usage very low (up to the >>>>>> problematic >>>>>> point >>>>>> the build seems to spend 90% of its time trying to download jar >>>>>> files from >>>>>> bogus sources) and memory usage increasing slightly as expected >>>>>> until the >>>>>> build reaches that last problematic part where all cpu cores go >>>>>> to >>>>>> 100% and >>>>>> memory usage increases until all memory is consumed. >>>>> >>>>> All those messages are expected, except the "Destroying process >>>>> ..." at >>>>> the end. I assume that you get that when you kill the Java >>>>> processes. >>>>> How long did you wait before killing them? I would suggest that >>>>> you >>>>> try >>>>> again and give it time to complete. GWT compiling is extremelly >>>>> >>>>> Also you can reduce the number of permutations generated by the >>>>> GWT >>>>> compiler and that will reduce the time it takes to compile. For >>>>> example, >>>>> if you are going to use Firefox only as the client you can apply >>>>> the >>>>> following patch to reduce the number of permutations to just one: >>>>> >>>>> --- >>>>> a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >>>>> +++ >>>>> b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml >>>>> @@ -19,6 +19,9 @@ >>>>> >>>> /> >>>>> >>>> value="DISABLED" /> >>>>> >>>>> + >>>>> + >>>>> + >>>>> >>>>> >>>>> >>>>> >>>>> Then compile with "-Pgwt-admin" only. That will generate the GUI >>>>> but >>>>> only for Firefox. In my environment (Intel Core i5 8GB) this >>>>> reduces the >>>>> GWT compilation to 4 minutes: >>>>> >>>>> [INFO] WebAdmin ... SUCCESS [4:22.581s] >>>> >>>> With the patch the build was successfull. I then went ahead and >>>> freed >>>> up >>>> some memory by stopping some applications and with that even the >>>> fill >>>> build >>>> tops out at about 90% memory usage so it seems that 8gb is enough >>>> after all >>>> but only barely. >>>> With the patch memory usage topped out at 40% so this would >>>> definitely make >>>> a difference for people with smaller build systems. >>>> >>>> The deployment works as well but when I start jboss I get the >>>> attached errors. >>>> >>>> Also the build instructions talk about ":" to access >>>> the >>>> deployed services. I presume is localhost but what port >>>> do I >>>> use >>>> to access the services? >>>> >>>> Regards, >>>> Dennis >>>> >>>> _______________________________________________ >>>> Engine-devel mailing list >>>> Engine-devel at ovirt.org >>>> http://lists.ovirt.org/mailman/listinfo/engine-devel >>>> >> >> > _______________________________________________ > Engine-devel mailing list > Engine-devel at ovirt.org > http://lists.ovirt.org/mailman/listinfo/engine-devel From dennisml at conversis.de Mon Oct 31 16:56:49 2011 From: dennisml at conversis.de (Dennis Jacobfeuerborn) Date: Mon, 31 Oct 2011 17:56:49 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAEB205.10302@redhat.com> References: <77dcce26-b599-44f6-bd75-11a8e5d64c0d@zmail02.collab.prod.int.phx2.redhat.com> <4EAEB205.10302@redhat.com> Message-ID: <4EAED351.7060705@conversis.de> On 10/31/2011 03:34 PM, Moti Asayag wrote: > On 10/31/2011 04:11 PM, Oved Ourfalli wrote: >> It doesn't come with jboss, but it is copied there when deploying the oVirt engine (maven "dep" profile: "-Pdep"). >> Did you build the engine with this profile as well? > Actually for the first time, it's better to use: > mvn clean install -Pdep,gwt-admin,setup_postgres > > setup_postgres - will copy postgresql datasource file and additional > configuration files to jboss. setup_postgres won't be required until > specific changes to those configuration files is made. > > dep - will copy the ear and quartz to jboss deploy folder. Hm, initially I used "mvn clean install -Pdep,setup_postgres" as the build page suggests but apparently that didn't copy the quartz file? I just did a "mvn install -Pdep" again and this time the quartz jar was copied. Also the exception flood was apparently caused because postgresql was not running. After I started it things look great now. I did a test api call and browsed both webadmin and userportal and things seem to work as they should for the moment. Regards, Dennis From juan.hernandez at redhat.com Mon Oct 31 17:01:33 2011 From: juan.hernandez at redhat.com (Juan Hernandez) Date: Mon, 31 Oct 2011 18:01:33 +0100 Subject: [Engine-devel] ovirt-engine repo up in gerrit.ovirt.org! In-Reply-To: <4EAE9054.3040208@redhat.com> References: <4EA9D25C.4050804@redhat.com> <4EA9F2C5.2010508@redhat.com> <4EAC206A.7050406@conversis.de> <4EAC34AE.7060404@redhat.com> <4EAC5D55.40405@conversis.de> <4EAC646B.8030301@redhat.com> <4EAC8DF7.1020600@conversis.de> <4EACDBFB.1020606@redhat.com> <4EAD4215.3040300@conversis.de> <4EAD4729.1070803@redhat.com> <4EAD6011.6000402@conversis.de> <4EAE0793.5020904@redhat.com> <4EAE0D59.4060303@conversis.de> <4EAE2A36.1010205@redhat.com> <4EAE5D99.5090104@redhat.com> <4EAE80B4.6030601@conversis.de> <4EAE868B.9070403@redhat.com> <4EAE9054.3040208@redhat.com> Message-ID: <4EAED46D.2010704@redhat.com> On 10/31/2011 01:11 PM, Itamar Heim wrote: > On 10/31/2011 01:29 PM, Juan Hernandez wrote: >> On 10/31/2011 12:04 PM, Dennis Jacobfeuerborn wrote: >>> On 10/31/2011 09:34 AM, Juan Hernandez wrote: >>>> On 10/31/2011 05:55 AM, Itamar Heim wrote: >>>>> On 10/31/2011 04:52 AM, Dennis Jacobfeuerborn wrote: >>>>>> On 10/31/2011 03:27 AM, Itamar Heim wrote: >>>>>>> On 10/30/2011 04:32 PM, Dennis Jacobfeuerborn wrote: >>>>>>>> Hi Yair, >>>>>>>> I managed to install the two missing dependencies from the web and now >>>>>>>> the build seem to run ok but apparently 8gb of RAM are not sufficient to >>>>>>>> build ovirt-engine so I'll have to give it a pass for now and wait for >>>>>>>> binary releases. >>>>>>> >>>>>>> 8GB are more than enough. probably some config for the JVM. >>>>>>> what's the error you are getting? >>>>>>> did you set the JAVA_OPTS? >>>>>> >>>>>> I don't get an error. The build process simply uses up all memory and >>>>>> the desktop becomes unusable. If I don't switch to another virtual >>>>>> terminal and issue a "killall java" then the system would probably die >>>>>> in the end and require a reboot (or the OOM Killer would step in an kill >>>>>> some processes before that happens). >>>>>> >>>>>> This is a plain Fedora 15 System and I'm following the build >>>>>> instructions from the wiki so right now there are no custom settings >>>>>> applied. >>>>> >>>>> we are all building on F15, and with less than 8GB as well. >>>>> which command are you running causing the hang? >>>>> what does top shows when it hangs? >>>>> what does maven output show when it hangs (i.e., which part of the >>>>> project is causing the hang). >>>> >>>> The compilation of the GWT applications can take very long (more than 10 >>>> minutes in a core i5 with 8GB) with intensive use of all the CPUs. This >>>> could be what you are observing. Can try to build without the >>>> "-Pgwt-user" and "-Pgwt-admin" options? Just to check if this is your issue. >>>> >>> >>> This seems to be the problem. I already sent the information to Yair >>> Zaslavsky (and Daniel Erez) who contacted me off-list about this (though I >>> think this really belongs on the list so everybody can chime in). >>> I attached the output I get. At the end I had to kill the process because >>> memory usage was at about 99%. >>> >>> The command I'm running is: mvn install -Pgwt-admin,gwt-user >>> The system monitor shows cpu usage very low (up to the problematic point >>> the build seems to spend 90% of its time trying to download jar files from >>> bogus sources) and memory usage increasing slightly as expected until the >>> build reaches that last problematic part where all cpu cores go to 100% and >>> memory usage increases until all memory is consumed. >> >> All those messages are expected, except the "Destroying process ..." at >> the end. I assume that you get that when you kill the Java processes. >> How long did you wait before killing them? I would suggest that you try >> again and give it time to complete. GWT compiling is extremelly >> >> Also you can reduce the number of permutations generated by the GWT >> compiler and that will reduce the time it takes to compile. For example, >> if you are going to use Firefox only as the client you can apply the >> following patch to reduce the number of permutations to just one: > > maybe worth to create target profiles of web admin limited to a single > browser then? or allow to set this as an evnironment property so > gwt_user.agent=gecko1_8 mvn clean install -Pgwt-admin > can be used for this during devel? Maybe. What I use for quick and dirty builds is a "build.sh" script with the following content: #!/bin/bash cd repository # Patch the GWT descriptors to use only one permutation: patch -N -p1 <<'.' diff --git a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml index d0d2fd7..172bff0 100644 --- a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml +++ b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/WebAdmin.gwt.xml @@ -19,6 +19,9 @@ + + + . # Call maven to perform the build: mvn -Dmaven.test.skip=true -Pgwt-admin install