[Engine-devel] [engine-devel] frontend builders proposal
by Tomas Jelinek
Hi All,
as many of you may know, the way how the frontend and backend models are built on frontend (uicommonweb project) is not really ideal. Currently this logic is copy pasted over and over again to different places where it is needed with minor changes to fulfill the specific requirements. It is not only aesthetically problematic, but I recall tons of bugs caused by introducing a new field and forgetting to add it to every place it is used in GUI.
Now, as there will be big changes in the VM/Template models (http://www.ovirt.org/Features/Instance_Types), so the way how the VM, Template, Pool and also the newly created Instance Types models are being built has to be touched anyhow, it is a great opportunity to rethink the way how we do it.
I have created a simple infrastructure (http://gerrit.ovirt.org/#/c/10874/) which could be used for it, and a PoC patch which uses this infrastructure (http://gerrit.ovirt.org/#/c/11354/). Please note that the PoC is not really impressive in means of removing duplications, I wanted to start with the simplest possibility.
The principles behind the infrastructure:
- have small, well named, easy to understand and reuse builders
- this builders can be chained together or embedded to each other to build the full resulting object (composite pattern)
- this builders can be asynchronous, and the next builder in the chain has to be executed only when the current is completely done
The structure:
- the base is an interface called Builder which has a method build(source, destination, rest)
- the builder implementing this interface
+ will get the source and destination objects
+ copies whatever he wants from source to destination
+ when done, executes build on the first element of the rest
+ this may sound awkward, but this is the way how the async calls can be "linearized" in a general way, not embedding anonymous class into anonymous
class into anonymous class... as we do it today.
+ for synchronous builders, there is a BaseSyncBuilder which takes care of this boilerplate calling of next and exposes a simple method
build(S source, D destination)
+ to simplify the creating and running the chain of builders, there is a BuilderExecutor class (can be created as sync or async)
So, a simple example - even more simple than the PoC patch :)
//create the first builder
class FirstLetterBuilder extends BaseSyncBuilder<String, StringBuilder> {
@Override
protected void build(String source, StringBuilder destination) {
// copy the first letter to the destination
destination.append(source.charAt(0));
}
}
//create the second builder
class SecondLetterBuilder extends BaseSyncBuilder<String, StringBuilder> {
@Override
protected void build(String source, StringBuilder destination) {
// copy the second letter to the destination
destination.append(source.charAt(1));
}
}
// usage
...
// create the destination object
StringBuilder res = new StringBuilder();
// configure the executor with the two builders
BuilderExecutor<String, StringBuilder> executor = new BuilderExecutor<String, StringBuilder>(
new FirstLetterBuilder(),
new SecondLetterBuilder()
);
// execute the builder chain ("ab" is the source, res the destination)
executor.build("ab", res);
// use the result
...
That's it. And the nice part is, that this FirstLetterBuilder and SecondLetterBuilder can be reused anywhere or combined with any other builders.
Any comments on this will be more than welcome!
Thank you,
Tomas
11 years, 10 months
[Engine-devel] ovirt-engine-sdk-java 1.0.0.3-1 released
by Michael Pasternak
- added persistent authentication support
- added support for the methods overloads based on url/headers params
- added delete methods overloads with body as parameters holder
- to host added [display.address] property for overriding display address
- user can specify own ticket now in vm.ticket() via [action.ticket.value]
More details can be found at [1].
[1] http://www.ovirt.org/Java-sdk-changelog
--
Michael Pasternak
RedHat, ENG-Virtualization R&D
11 years, 10 months
Re: [Engine-devel] [engine-devel] frontend builders proposal
by Tomas Jelinek
Hi Tal,
> I was wondering, for entity such as VM, isn't it better to make a
> builder for the entity as a whole? Unless you know of a specific parts
> that are used in smaller units?
well, when you create a new VM or a Template, in both cases you need to build the VM entity from UnitVmModel.
But, not all the fields which are taken from the UnitVmModel in case of creating the new VM are used also for new Template.
So, in this case both can use CommonUnitToVmBuilder and QuotaUnitToVmBuilder, but the creating of the VM uses also others (e.g. UsbPolicyUntiToVmBuilder etc)
The situation will be even more complex when the Instance Types and the Images will be introduced which all will be basically VM and UnitVmModel subsets.
So, they will be able to use some of the common builders but not all and will have some custom.
Tomas
----- Original Message -----
From: "Tal Nisan" <tnisan(a)redhat.com>
To: "Tomas Jelinek" <tjelinek(a)redhat.com>
Sent: Monday, January 28, 2013 5:44:31 PM
Subject: Re: [Engine-devel] [engine-devel] frontend builders proposal
Hi Tomas,
I was wondering, for entity such as VM, isn't it better to make a
builder for the entity as a whole? Unless you know of a specific parts
that are used in smaller units?
Tal.
On 01/25/2013 11:55 AM, Tomas Jelinek wrote:
> Hi All,
>
> as many of you may know, the way how the frontend and backend models are built on frontend (uicommonweb project) is not really ideal. Currently this logic is copy pasted over and over again to different places where it is needed with minor changes to fulfill the specific requirements. It is not only aesthetically problematic, but I recall tons of bugs caused by introducing a new field and forgetting to add it to every place it is used in GUI.
>
> Now, as there will be big changes in the VM/Template models (http://www.ovirt.org/Features/Instance_Types), so the way how the VM, Template, Pool and also the newly created Instance Types models are being built has to be touched anyhow, it is a great opportunity to rethink the way how we do it.
>
> I have created a simple infrastructure (http://gerrit.ovirt.org/#/c/10874/) which could be used for it, and a PoC patch which uses this infrastructure (http://gerrit.ovirt.org/#/c/11354/). Please note that the PoC is not really impressive in means of removing duplications, I wanted to start with the simplest possibility.
>
> The principles behind the infrastructure:
> - have small, well named, easy to understand and reuse builders
> - this builders can be chained together or embedded to each other to build the full resulting object (composite pattern)
> - this builders can be asynchronous, and the next builder in the chain has to be executed only when the current is completely done
>
> The structure:
> - the base is an interface called Builder which has a method build(source, destination, rest)
> - the builder implementing this interface
> + will get the source and destination objects
> + copies whatever he wants from source to destination
> + when done, executes build on the first element of the rest
> + this may sound awkward, but this is the way how the async calls can be "linearized" in a general way, not embedding anonymous class into anonymous
> class into anonymous class... as we do it today.
> + for synchronous builders, there is a BaseSyncBuilder which takes care of this boilerplate calling of next and exposes a simple method
> build(S source, D destination)
> + to simplify the creating and running the chain of builders, there is a BuilderExecutor class (can be created as sync or async)
>
> So, a simple example - even more simple than the PoC patch :)
>
> //create the first builder
> class FirstLetterBuilder extends BaseSyncBuilder<String, StringBuilder> {
> @Override
> protected void build(String source, StringBuilder destination) {
> // copy the first letter to the destination
> destination.append(source.charAt(0));
> }
> }
>
> //create the second builder
> class SecondLetterBuilder extends BaseSyncBuilder<String, StringBuilder> {
> @Override
> protected void build(String source, StringBuilder destination) {
> // copy the second letter to the destination
> destination.append(source.charAt(1));
> }
> }
>
> // usage
> ...
> // create the destination object
> StringBuilder res = new StringBuilder();
>
> // configure the executor with the two builders
> BuilderExecutor<String, StringBuilder> executor = new BuilderExecutor<String, StringBuilder>(
> new FirstLetterBuilder(),
> new SecondLetterBuilder()
> );
>
> // execute the builder chain ("ab" is the source, res the destination)
> executor.build("ab", res);
>
> // use the result
> ...
>
> That's it. And the nice part is, that this FirstLetterBuilder and SecondLetterBuilder can be reused anywhere or combined with any other builders.
>
> Any comments on this will be more than welcome!
>
> Thank you,
> Tomas
> _______________________________________________
> Engine-devel mailing list
> Engine-devel(a)ovirt.org
> http://lists.ovirt.org/mailman/listinfo/engine-devel
11 years, 10 months
[Engine-devel] 3.2 features for release notes
by Cheryn Tan
Hi all,
I'm preparing the oVirt 3.2 release notes, starting with the features listed here: http://www.ovirt.org/OVirt_3.2_release-management#Features
Can you please go through the list, and reply to this thread if:
a) There are features being released for 3.2 which should be documented, but are not on the list; or
b) Some of the planned features on this list are not being released for 3.2; or
c) Some of the features on this list are being released for 3.2, but should not be documented.
For features which aren't on the wiki, please send a short description or Bugzilla numbers of each feature.
Please reply no later than Jan 28.
Thank you very much for your help!
Cheryn
11 years, 10 months
[Engine-devel] unit tests failing
by Alon Bar-Lev
Don't know what change exactly caused this:
Tests in error:
canDoActionInvalidVmStatus(org.ovirt.engine.core.bll.MoveDisksCommandTest)
moveDisk(org.ovirt.engine.core.bll.MoveDisksCommandTest)
liveMigrateDisk(org.ovirt.engine.core.bll.MoveDisksCommandTest)
liveMigrateDiskBasedOnTemplate(org.ovirt.engine.core.bll.MoveDisksCommandTest)
moveDiskAndLiveMigrateDisk(org.ovirt.engine.core.bll.MoveDisksCommandTest)
11 years, 10 months
Re: [Engine-devel] May I apply for a user account on jenkins.ovirt.org to run VDSM functional tests?
by Eyal Edri
----- Original Message -----
> From: "Zhou Zheng Sheng" <zhshzhou(a)linux.vnet.ibm.com>
> To: infra(a)ovirt.org
> Cc: "ShaoHe Feng" <shaohef(a)linux.vnet.ibm.com>
> Sent: Tuesday, January 29, 2013 12:24:27 PM
> Subject: May I apply for a user account on jenkins.ovirt.org to run VDSM functional tests?
>
> Hi all,
>
> I notice there is no VDSM functional tests running in oVirt Jenkins.
> Currently in VDSM we have some XML-RPC functional test cases for
> iSCSI,
> localfs and glusterfs storage as well as creating and destroying VMs
> on
> those storage. Functional tests through JSON-RPC are under review. I
> also submit a patch to Gerrit for running the tests easily
> (http://gerrit.ovirt.org/#/c/11238/). More test cases will be added
> to
> improve test coverage and reduce the chance of regression.
>
> Some bugs that can not be covered by unit test can be caught by
> functional tests. I think it would be helpful to run these functional
> tests continuously. We can also configure the Gerrit trigger in
> Jenkins
> to run functional tests when someone verifies the patch or when it
> gets
> approved but not merged. This may be helpful to the maintainer.
>
> I've setup a Jenkins job for VDSM functional tests in my lab server.
> You
> can refer to the job configuration of my current setup
> (https://github.com/edwardbadboy/vdsm-jenkins/blob/master/config.xml).
> After my patch in Gerrit is accepted, the job configuration will be
> simpler and the hacks can be removed. May I apply a user account for
> creating job in the oVirt Jenkins?
>
Hi Zhou,
Basically there shouldn't be any problem with that.
we have an option for giving a 'power-user' permissions for certain users on oVirt misc projects
to add and and configure jobs for thier project.
it requires knowledge in jenkins, which it seems that you have and recognition from the
team/other developers from the relevant project (in this case, VDSM) that you are an active member of the project.
(just a formality essentially)
I've added engine-devel list to this thread so anyone from vdsm team can vote +1 for adding you as a power user for jenkins.
once we'll receive a few +1 and not objections i'll create a user for you and send you the details.
you'll be able to:
1. create new jobs
2. update jobs configurations
3. run jobs..
> --
> Thanks and best regards!
>
> Zhou Zheng Sheng / 周征晟
> E-mail: zhshzhou(a)linux.vnet.ibm.com
> Telephone: 86-10-82454397
>
> _______________________________________________
> Infra mailing list
> Infra(a)ovirt.org
> http://lists.ovirt.org/mailman/listinfo/infra
>
11 years, 10 months
[Engine-devel] Change in the RPM release
by Juan Hernandez
Hello all,
I have just merged a patch (see [1]) into the master branch that changes
how the release number of RPMs is created by default. Now it will be
like this:
0.1.$(date +%Y%m%d%H%M%S)
This may impact you if you are building your own RPMs, but only if you
are not explicitly forcing the release number with something like this:
make rpm RPM_RELEASE_VERSION=whatever
[1] http://gerrit.ovirt.org/9704
Regards,
Juan Hernandez
--
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.
11 years, 10 months
[Engine-devel] [JENKINS] important change in findbugs analysis
by Eyal Edri
fyi,
as part of the efforts to reduce bugs found by findbugs jenkins job,
NORMAL priority bugs limit has been set to 15 (current count),
this means that any NEW NORMAL bugs that will enter ovirt-engine code will fail the job,
and it's the committer responsibility to fix it.
if you're not sure about your code, you can run mvn findbugs:findbugs before merging (there's also an eclipse plugin for it).
there is on-going work on reducing NORMAL bugs, and this limit will reduce in the near future,
until it will reach '0' (similar to HIGH prirority).
thanks for the cooperation.
Eyal Edri
oVirt infra team.
11 years, 10 months
Re: [Engine-devel] [oVirt Jenkins] ovirt_engine_unit_tests - Build # 3216 - Still unstable!
by Eyal Edri
fyi,
seems like this patch introduced new unit test failure, please check,
http://gerrit.ovirt.org/gitweb?p=ovirt-engine.git&a=commit&h=207cda518399...
http://jenkins.ovirt.org/job/ovirt_engine_unit_tests/3212/
Eyal.
Infra team.
----- Original Message -----
> From: "Jenkins oVirt Server" <jenkins(a)ovirt.org>
> To: eedri(a)redhat.com, engine-patches(a)ovirt.org, oliel(a)redhat.com, yzaslavs(a)redhat.com
> Sent: Friday, January 25, 2013 11:49:10 AM
> Subject: [oVirt Jenkins] ovirt_engine_unit_tests - Build # 3216 - Still unstable!
>
> Project: http://jenkins.ovirt.org/job/ovirt_engine_unit_tests/
> Build: http://jenkins.ovirt.org/job/ovirt_engine_unit_tests/3216/
> Build Number: 3216
> Build Status: Still unstable
> Triggered By: Started by upstream project "ovirt_engine" build number
> 4,107, Started by upstream project "ovirt_engine" build number 4,109
>
> -------------------------------------
> Changes Since Last Success:
> -------------------------------------
> Changes for Build #3212
> [gerrit2] engine: consolidate VM and Poll queries
>
>
> Changes for Build #3213
> [gerrit2] core:unlock_entity.sh is not finding a locked ...
>
> [gerrit2] core:unlock_entity.sh is not unlocking the vm...
>
> [emesika] core:If no power management configured or fails...
>
>
> Changes for Build #3214
>
> Changes for Build #3215
> [gerrit2] packaging: Starting ssh before adding host in AIO
>
> [gerrit2] packaging: Updated spec to use sdk version that supports
> ssl.
>
> [gerrit2] spelling: s/mster/master/
>
>
> Changes for Build #3216
>
>
>
> -----------------
> Failed Tests:
> -----------------
> 1 tests failed.
> FAILED:
> org.ovirt.engine.core.bll.GetAllVmPoolsAttachedToUserQueryTest.testQueryIsAUserQuery
>
> Error Message:
> A query tested for filtered access should not be an admin query
>
> Stack Trace:
> java.lang.AssertionError: A query tested for filtered access should
> not be an admin query
> at org.junit.Assert.fail(Assert.java:93)
> at org.junit.Assert.assertTrue(Assert.java:43)
> at org.junit.Assert.assertFalse(Assert.java:68)
> at
> org.ovirt.engine.core.bll.AbstractUserQueryTest.testQueryIsAUserQuery(AbstractUserQueryTest.java:58)
> at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
> at
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
> at
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
> at
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
> at
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
> at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
> at
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
> at
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
> at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
> at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
> at
> org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:53)
> at
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:123)
> at
> org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at
> org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164)
> at
> org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110)
> at
> org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
> at
> org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcessWhenForked(SurefireStarter.java:107)
> at
> org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:68)
>
>
>
>
> ------------------
> Build Log:
> ------------------
> [...truncated 6074 lines...]
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/maven-artifact-manager/2.0...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/maven-artifact-manager/2.0...
> (3 KB at 164.8 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/maven-repository-metadata/...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/maven-repository-metadata/...
> (2 KB at 142.8 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/maven-plugin-registry/2.0....
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/maven-plugin-registry/2.0....
> (2 KB at 57.4 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-common-artifa...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-common-artifa...
> (2 KB at 164.0 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> (2 KB at 164.0 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting/...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting/...
> (700 B at 25.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-core/1.0-alpha...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-core/1.0-alpha...
> (2 KB at 109.7 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/oro/oro/2.0.7/oro-2.0.7.pom
> Downloaded: http://repo1.maven.org/maven2/oro/oro/2.0.7/oro-2.0.7.pom
> (141 B at 9.8 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> (902 B at 80.1 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-site-renderer/...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-site-renderer/...
> (2 KB at 127.6 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.2/p...
> Downloaded:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.2/p...
> (8 KB at 570.5 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-container-defaul...
> Downloaded:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-container-defaul...
> (2 KB at 104.9 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/plexus/plexus-containers/1.0.2/plexus-conta...
> Downloaded:
> http://repo1.maven.org/maven2/plexus/plexus-containers/1.0.2/plexus-conta...
> (471 B at 38.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/plexus/plexus-root/1.0.3/plexus-root-1.0.3.pom
> Downloaded:
> http://repo1.maven.org/maven2/plexus/plexus-root/1.0.3/plexus-root-1.0.3.pom
> (6 KB at 489.8 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/plexus/plexus-utils/1.0.2/plexus-utils-1.0....
> Downloaded:
> http://repo1.maven.org/maven2/plexus/plexus-utils/1.0.2/plexus-utils-1.0....
> (740 B at 60.2 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/commons-logging/commons-logging-api/1.0.4/c...
> Downloaded:
> http://repo1.maven.org/maven2/commons-logging/commons-logging-api/1.0.4/c...
> (168 B at 13.7 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/velocity/velocity/1.4/velocity-1.4.pom
> Downloaded:
> http://repo1.maven.org/maven2/velocity/velocity/1.4/velocity-1.4.pom
> (3 KB at 174.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/velocity/velocity-dep/1.4/velocity-dep-1.4.pom
> Downloaded:
> http://repo1.maven.org/maven2/velocity/velocity-dep/1.4/velocity-dep-1.4.pom
> (2 KB at 154.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-decoration-mod...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-decoration-mod...
> (2 KB at 99.0 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plex...
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-io/1.0...
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-dependency-an...
> Downloaded:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plex...
> (200 KB at 6431.1 KB/sec)
> Downloading: http://repo1.maven.org/maven2/asm/asm/3.0/asm-3.0.jar
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-shared-io/1.0...
> (33 KB at 1052.7 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-common-artifa...
> Downloaded: http://repo1.maven.org/maven2/asm/asm/3.0/asm-3.0.jar (42
> KB at 2085.4 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> Downloading:
> http://repo1.maven.org/maven2/commons-collections/commons-collections/2.1...
> Downloading:
> http://repo1.maven.org/maven2/commons-logging/commons-logging/1.0.4/commo...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-common-artifa...
> (27 KB at 1565.7 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-core/1.0-alpha...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-...
> (14 KB at 833.5 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/oro/oro/2.0.7/oro-2.0.7.jar
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-dependency-an...
> (27 KB at 400.2 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-site-renderer/...
> Downloaded: http://repo1.maven.org/maven2/oro/oro/2.0.7/oro-2.0.7.jar
> (64 KB at 1936.1 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.2/p...
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-core/1.0-alpha...
> (226 KB at 6274.1 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/plexus/plexus-utils/1.0.2/plexus-utils-1.0....
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-site-renderer/...
> (13 KB at 538.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/commons-logging/commons-logging-api/1.0.4/c...
> Downloaded:
> http://repo1.maven.org/maven2/commons-logging/commons-logging/1.0.4/commo...
> (38 KB at 675.0 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/velocity/velocity/1.4/velocity-1.4.jar
> Downloaded:
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.2/p...
> (8 KB at 222.3 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/velocity/velocity-dep/1.4/velocity-dep-1.4.jar
> Downloaded:
> http://repo1.maven.org/maven2/plexus/plexus-utils/1.0.2/plexus-utils-1.0....
> (157 KB at 3915.6 KB/sec)
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-decoration-mod...
> Downloaded:
> http://repo1.maven.org/maven2/commons-logging/commons-logging-api/1.0.4/c...
> (26 KB at 673.4 KB/sec)
> Downloaded:
> http://repo1.maven.org/maven2/commons-collections/commons-collections/2.1...
> (162 KB at 1645.4 KB/sec)
> Downloaded:
> http://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-decoration-mod...
> (38 KB at 2193.0 KB/sec)
> Downloaded:
> http://repo1.maven.org/maven2/velocity/velocity/1.4/velocity-1.4.jar
> (353 KB at 4898.7 KB/sec)
> Downloaded:
> http://repo1.maven.org/maven2/velocity/velocity-dep/1.4/velocity-dep-1.4.jar
> (506 KB at 10758.0 KB/sec)
> [INFO] Configured Artifact: org.quartz-scheduler:quartz:2.1.2:jar
> [INFO] Copying quartz-2.1.2.jar to
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/target/quartz/quartz-2.1.2.jar
> mojoSucceeded
> org.apache.maven.plugins:maven-dependency-plugin:2.1(copy-quartz-jar)
> [INFO] Installing
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/target/engine.ear
> to
> /home/jenkins/workspace/ovirt_engine_unit_tests/.repository/org/ovirt/engine/engine-server-ear/3.2.0/engine-server-ear-3.2.0.ear
> mojoStarted
> org.apache.maven.plugins:maven-install-plugin:2.3.1(default-install)
> [INFO]
> [INFO] --- maven-install-plugin:2.3.1:install (default-install) @
> engine-server-ear ---
> [INFO] Installing
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/pom.xml to
> /home/jenkins/workspace/ovirt_engine_unit_tests/.repository/org/ovirt/engine/engine-server-ear/3.2.0/engine-server-ear-3.2.0.pom
> mojoSucceeded
> org.apache.maven.plugins:maven-install-plugin:2.3.1(default-install)
> projectSucceeded org.ovirt.engine:engine-server-ear:3.2.0
> sessionEnded
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] ovirt-root ........................................ SUCCESS
> [8.538s]
> [INFO] oVirt Build Tools root ............................ SUCCESS
> [0.238s]
> [INFO] oVirt checkstyle .................................. SUCCESS
> [6.895s]
> [INFO] oVirt Checkstyle Checks ........................... SUCCESS
> [2.763s]
> [INFO] oVirt Modules - backend ........................... SUCCESS
> [0.246s]
> [INFO] oVirt Manager ..................................... SUCCESS
> [0.234s]
> [INFO] oVirt DB Scripts .................................. SUCCESS
> [0.950s]
> [INFO] oVirt Modules - manager ........................... SUCCESS
> [6.026s]
> [INFO] CSharp Compatibility .............................. SUCCESS
> [14.711s]
> [INFO] Encryption Libraries .............................. SUCCESS
> [5.150s]
> [INFO] oVirt Tools ....................................... SUCCESS
> [0.619s]
> [INFO] oVirt Tools Common Library ........................ SUCCESS
> [4.614s]
> [INFO] Common Code ....................................... SUCCESS
> [28.455s]
> [INFO] Common utilities .................................. SUCCESS
> [32.168s]
> [INFO] Data Access Layer ................................. SUCCESS
> [30.996s]
> [INFO] engine beans ...................................... SUCCESS
> [0.304s]
> [INFO] engine scheduler bean ............................. SUCCESS
> [5.388s]
> [INFO] Vds broker ........................................ SUCCESS
> [14.906s]
> [INFO] Search Backend .................................... SUCCESS
> [8.260s]
> [INFO] Backend Logic @Service bean ....................... SUCCESS
> [1:16.188s]
> [INFO] oVirt RESTful API Backend Integration ............. SUCCESS
> [8.478s]
> [INFO] oVirt RESTful API interface ....................... SUCCESS
> [0.334s]
> [INFO] oVirt Engine API Definition ....................... SUCCESS
> [25.865s]
> [INFO] oVirt Engine API Commom Parent POM ................ SUCCESS
> [0.311s]
> [INFO] oVirt Engine API Common JAX-RS .................... SUCCESS
> [17.147s]
> [INFO] oVirt RESTful API Backend Integration Type Mappers SUCCESS
> [51.144s]
> [INFO] oVirt RESTful API Backend Integration JAX-RS Resources
> SUCCESS [54.674s]
> [INFO] oVirt RESTful API Backend Integration Webapp ...... SUCCESS
> [2.285s]
> [INFO] oVirt Engine Web Root ............................. SUCCESS
> [2.731s]
> [INFO] oVirt Configuration Tool .......................... SUCCESS
> [3.816s]
> [INFO] Notifier Service package .......................... SUCCESS
> [0.171s]
> [INFO] Notifier Service .................................. SUCCESS
> [4.180s]
> [INFO] Notifier Service Resources ........................ SUCCESS
> [2.233s]
> [INFO] oVirt Modules :: Frontend ......................... SUCCESS
> [0.182s]
> [INFO] oVirt Modules :: Webadmin ......................... SUCCESS
> [0.187s]
> [INFO] oVirt Modules - ui ................................ SUCCESS
> [0.185s]
> [INFO] Extensions for GWT ................................ SUCCESS
> [4.740s]
> [INFO] UI Utils Compatibility (for UICommon) ............. SUCCESS
> [6.985s]
> [INFO] Frontend for GWT UI Projects ...................... SUCCESS
> [6.357s]
> [INFO] UICommonWeb ....................................... SUCCESS
> [27.230s]
> [INFO] oVirt GWT UI common infrastructure ................ SUCCESS
> [33.023s]
> [INFO] WebAdmin .......................................... SUCCESS
> [28.203s]
> [INFO] UserPortal ........................................ SUCCESS
> [12.630s]
> [INFO] oVirt WARs ........................................ SUCCESS
> [0.165s]
> [INFO] oVirt Web Application Module ...................... SUCCESS
> [2.619s]
> [INFO] oVirt Server EAR .................................. SUCCESS
> [8.673s]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] BUILD SUCCESS
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 9:19.320s
> [INFO] Finished at: Fri Jan 25 04:49:19 EST 2013
> [INFO] Final Memory: 319M/676M
> [INFO]
> ------------------------------------------------------------------------
> Projects to build: [MavenProject: org.ovirt.engine:root:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/pom.xml,
> MavenProject: org.ovirt.engine:build-tools-root:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/pom.xml,
> MavenProject: org.ovirt.engine:checkstyles:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/checkstyles/pom.xml,
> MavenProject: org.ovirt.engine:ovirt-checkstyle-extension:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/ovirt-checkstyle-extension/pom.xml,
> MavenProject: org.ovirt.engine.core:backend:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/pom.xml,
> MavenProject: org.ovirt.engine.core:manager:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/pom.xml,
> MavenProject: org.ovirt.engine.core:dbscripts:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/dbscripts/pom.xml,
> MavenProject: org.ovirt.engine.core:manager-modules:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/pom.xml,
> MavenProject: org.ovirt.engine.core:compat:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/compat/pom.xml,
> MavenProject: org.ovirt.engine.core:engineencryptutils:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/engineencryptutils/pom.xml,
> MavenProject: org.ovirt.engine.core:manager-tools:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/pom.xml,
> MavenProject: org.ovirt.engine.core:engine-tools-common:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-tools-common/pom.xml,
> MavenProject: org.ovirt.engine.core:common:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/common/pom.xml,
> MavenProject: org.ovirt.engine.core:utils:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/utils/pom.xml,
> MavenProject: org.ovirt.engine.core:dal:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/dal/pom.xml,
> MavenProject: org.ovirt.engine.core:beans:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/pom.xml,
> MavenProject: org.ovirt.engine.core:scheduler:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/scheduler/pom.xml,
> MavenProject: org.ovirt.engine.core:vdsbroker:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/vdsbroker/pom.xml,
> MavenProject: org.ovirt.engine.core:searchbackend:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/searchbackend/pom.xml,
> MavenProject: org.ovirt.engine.core:bll:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/bll/pom.xml,
> MavenProject: org.ovirt.engine.api:restapi-parent:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/pom.xml,
> MavenProject: org.ovirt.engine.api:interface:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/pom.xml,
> MavenProject: org.ovirt.engine.api:restapi-definition:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/definition/pom.xml,
> MavenProject: org.ovirt.engine.api:common-parent:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/pom.xml,
> MavenProject: org.ovirt.engine.api:interface-common-jaxrs:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/jaxrs/pom.xml,
> MavenProject: org.ovirt.engine.api:restapi-types:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/types/pom.xml,
> MavenProject: org.ovirt.engine.api:restapi-jaxrs:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/jaxrs/pom.xml,
> MavenProject: org.ovirt.engine.api:restapi-webapp:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/webapp/pom.xml,
> MavenProject: org.ovirt.engine.core:root-war:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/root/pom.xml,
> MavenProject: org.ovirt.engine.core:engine-config:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-config/pom.xml,
> MavenProject: org.ovirt.engine.core:engine-notifier:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/pom.xml,
> MavenProject: org.ovirt.engine.core:engine-notifier-service:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-service/pom.xml,
> MavenProject: org.ovirt.engine.core:engine-notifier-resources:3.2.0
> @
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-resources/pom.xml,
> MavenProject: org.ovirt.engine.ui:frontend-all:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/pom.xml,
> MavenProject: org.ovirt.engine.ui:webadmin-all:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/pom.xml,
> MavenProject: org.ovirt.engine.ui:webadmin-modules:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/pom.xml,
> MavenProject: org.ovirt.engine.ui:gwt-extension:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-extension/pom.xml,
> MavenProject: org.ovirt.engine.ui:uicompat:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicompat/pom.xml,
> MavenProject: org.ovirt.engine.ui:frontend:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/frontend/pom.xml,
> MavenProject: org.ovirt.engine.ui:uicommonweb:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicommonweb/pom.xml,
> MavenProject: org.ovirt.engine.ui:gwt-common:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-common/pom.xml,
> MavenProject: org.ovirt.engine.ui:webadmin:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/webadmin/pom.xml,
> MavenProject: org.ovirt.engine.ui:userportal:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/userportal-gwtp/pom.xml,
> MavenProject: org.ovirt.engine.ui:wars:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/wars/pom.xml,
> MavenProject: org.ovirt.engine.ui:rmw-war:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/wars/rmw-war/pom.xml,
> MavenProject: org.ovirt.engine:engine-server-ear:3.2.0 @
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/pom.xml]
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicommonweb/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicommonweb/target/uicommonweb-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicommonweb/target/uicommonweb-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicommonweb/target/uicommonweb-3.2.0-sources.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/root/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/root/target/root-war-3.2.0.war
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/webapp/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/webapp/target/restapi-webapp-3.2.0.war
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-tools-common/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-tools-common/target/engine-tools-common-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-tools-common/target/engine-tools-common-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/common/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/common/target/common-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/common/target/common-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/common/target/common-3.2.0-sources.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-common/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-common/target/gwt-common-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-common/target/gwt-common-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/wars/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/checkstyles/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/checkstyles/target/checkstyles-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/checkstyles/target/checkstyles-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/scheduler/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/scheduler/target/scheduler-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/beans/scheduler/target/scheduler-3.2.0-client.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-resources/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-resources/target/engine-notifier-resources-3.2.0.zip
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-config/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-config/target/engine-config-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-config/target/engine-config-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/engineencryptutils/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/engineencryptutils/target/engineencryptutils-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/engineencryptutils/target/engineencryptutils-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-service/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-service/target/engine-notifier-service-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/tools/engine-notifier/engine-notifier-service/target/engine-notifier-service-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/utils/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/utils/target/utils-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/utils/target/utils-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/definition/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/definition/target/restapi-definition-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/definition/target/restapi-definition-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/types/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/types/target/restapi-types-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/types/target/restapi-types-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicompat/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicompat/target/uicompat-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/uicompat/target/uicompat-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/ovirt-checkstyle-extension/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/ovirt-checkstyle-extension/target/ovirt-checkstyle-extension-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/ovirt-checkstyle-extension/target/ovirt-checkstyle-extension-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/jaxrs/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/jaxrs/target/restapi-jaxrs-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/jaxrs/target/restapi-jaxrs-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/frontend/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/frontend/target/frontend-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/frontend/target/frontend-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/wars/rmw-war/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/wars/rmw-war/target/rmw-war-3.2.0.war
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/dal/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/dal/target/dal-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/dal/target/dal-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/ear/target/engine.ear
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/webadmin/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/webadmin/target/webadmin-3.2.0.war
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/searchbackend/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/searchbackend/target/searchbackend-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/searchbackend/target/searchbackend-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/searchbackend/target/searchbackend-3.2.0-sources.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-extension/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-extension/target/gwt-extension-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-extension/target/gwt-extension-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/gwt-extension/target/gwt-extension-3.2.0-sources.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/build-tools-root/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/compat/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/compat/target/compat-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/compat/target/compat-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/compat/target/compat-3.2.0-sources.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/jaxrs/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/jaxrs/target/interface-common-jaxrs-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/restapi/interface/common/jaxrs/target/interface-common-jaxrs-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/userportal-gwtp/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/frontend/webadmin/modules/userportal-gwtp/target/userportal-3.2.0.war
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/vdsbroker/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/vdsbroker/target/vdsbroker-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/vdsbroker/target/vdsbroker-3.2.0-tests.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/bll/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/bll/target/bll-3.2.0.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/modules/bll/target/bll-3.2.0-client.jar
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/pom.xml
> [JENKINS] Archiving disabled - not archiving
> /home/jenkins/workspace/ovirt_engine_unit_tests/backend/manager/dbscripts/pom.xml
> Waiting for Jenkins to finish collecting data
> channel stopped
> IRC notifier plugin: Sending notification to: #ovirt-jenkins
> Email was triggered for: Unstable
> Sending email for trigger: Unstable
>
11 years, 10 months