[rhq] 2 commits - modules/core
by lkrejci
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/ClearPersistedData.java | 70 ++++
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/FakeServerInventory.java | 16
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/When.java | 31 +
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/DataCleanupExecutor.java | 170 ++++++++++
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java | 25 +
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerConfiguration.java | 12
modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerExtension.java | 3
modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/CleanUpTest.java | 154 +++++++++
modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/TestResourceComponent.java | 24 +
modules/core/arquillian-integration/container/src/test/resources/arquillian.xml | 8
10 files changed, 498 insertions(+), 15 deletions(-)
New commits:
commit bd0c4929b07ef9d481a3031aa01434cd38e9f8a5
Author: Lukas Krejci <lkrejci(a)redhat.com>
Date: Fri Mar 29 18:04:50 2013 +0100
@ClearPersistedData annotation handling in Arq plugin container tests.
The tests can declare the @ClearPersistedData annotation on the test to
define what of the data that plugin container and its plugins store,
and when should be cleared prior or after the test execution.
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/ClearPersistedData.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/ClearPersistedData.java
new file mode 100644
index 0000000..c37eca7
--- /dev/null
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/ClearPersistedData.java
@@ -0,0 +1,70 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.test.arquillian;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * When a test method is annotated with this annotation, the data persisted by the plugin container during its lifetime
+ * can be automatically cleaned up.
+ *
+ * @author Lukas Krejci
+ */
+(a)Retention(RetentionPolicy.RUNTIME)
+(a)Target(ElementType.METHOD)
+public @interface ClearPersistedData {
+
+ /**
+ * Special marker string to express the wish to affect all the plugins.
+ */
+ final String ALL_PLUGINS = "__ALL__";
+
+ /**
+ * The time when the clearing of the data should occur.
+ * Defaults to before the invocation of the test method but can also be after or both.
+ */
+ When[] when() default { When.BEFORE_TEST };
+
+ /**
+ * Whether to clear the inventory.dat file (i.e. the persisted inventory).
+ * Defaults to true.
+ */
+ boolean ofInventory() default true;
+
+ /**
+ * Whether to clear the "changesets" directory storing the drift data.
+ * Defaults to true.
+ */
+ boolean ofDrift() default true;
+
+ /**
+ * The list of the names of the plugins to clear the data of.
+ * Defaults to list containing the special {@link #ALL_PLUGINS} string that means to delete
+ * the data of all plugins.
+ */
+ String[] ofPlugins() default { ALL_PLUGINS };
+}
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/FakeServerInventory.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/FakeServerInventory.java
index b1ac175..96b86e1 100644
--- a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/FakeServerInventory.java
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/FakeServerInventory.java
@@ -82,12 +82,14 @@ public class FakeServerInventory {
* @author Lukas Krejci
*/
public static class CompleteDiscoveryChecker {
- private boolean depthReached;
+ private volatile boolean depthReached;
private final int expectedDepth;
private final Object sync = new Object();
+ private volatile boolean finished;
public CompleteDiscoveryChecker(int expectedDepth) {
this.expectedDepth = expectedDepth;
+ this.depthReached = expectedDepth == 0;
}
public void waitForDiscoveryComplete() throws InterruptedException {
@@ -106,6 +108,8 @@ public class FakeServerInventory {
LOG.debug("Discovery already complete... no need to wait on " + this);
}
}
+
+ finished = true;
}
}
@@ -132,11 +136,13 @@ public class FakeServerInventory {
} catch (InterruptedException e) {
//well, we are going to finish in a few anyway
} finally {
- if (LOG.isDebugEnabled()) {
- LOG.debug("Notifying about discovery complete on " + CompleteDiscoveryChecker.this);
- }
synchronized (sync) {
- sync.notifyAll();
+ if (!finished) {
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Notifying about discovery complete on " + CompleteDiscoveryChecker.this);
+ }
+ sync.notifyAll();
+ }
}
}
}
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/When.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/When.java
new file mode 100644
index 0000000..1910a66
--- /dev/null
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/When.java
@@ -0,0 +1,31 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.test.arquillian;
+
+/**
+* @author Lukas Krejci
+*/
+public enum When {
+ BEFORE_TEST, AFTER_TEST
+}
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/DataCleanupExecutor.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/DataCleanupExecutor.java
new file mode 100644
index 0000000..a823e23
--- /dev/null
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/DataCleanupExecutor.java
@@ -0,0 +1,170 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.test.arquillian.impl;
+
+import java.io.File;
+import java.io.FilenameFilter;
+import java.lang.reflect.Method;
+import java.util.Arrays;
+import java.util.EnumSet;
+import java.util.List;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import org.jboss.arquillian.core.api.Instance;
+import org.jboss.arquillian.core.api.annotation.Inject;
+import org.jboss.arquillian.core.api.annotation.Observes;
+import org.jboss.arquillian.test.spi.event.suite.After;
+
+import org.rhq.core.util.file.FileUtil;
+import org.rhq.test.arquillian.ClearPersistedData;
+import org.rhq.test.arquillian.When;
+import org.rhq.test.arquillian.spi.events.PluginContainerDiscovered;
+
+/**
+ * @author Lukas Krejci
+ */
+public class DataCleanupExecutor {
+
+ private static final String INVENTORY_DAT = "inventory.dat";
+ private static final Log LOG = LogFactory.getLog(DataCleanupExecutor.class);
+
+ @Inject
+ private Instance<RhqAgentPluginContainer> pcContainer;
+
+ public void process(@Observes PluginContainerDiscovered pcDiscovered) {
+ doCleanup(pcDiscovered.getTestMethod(), true);
+ }
+
+ public void process(@Observes After test) {
+ doCleanup(test.getTestMethod(), false);
+ }
+
+ private void doCleanup(Method testMethod, boolean isBefore) {
+ ClearPersistedData clearData = testMethod.getAnnotation(ClearPersistedData.class);
+ if (clearData != null) {
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Clean up for: " + testMethod);
+ }
+
+ //b a x y
+ //0 0 0 nogo
+ //0 0 1 nogo
+ //0 1 0 go
+ //0 1 1 nogo
+ //1 0 0 nogo
+ //1 0 1 go
+ //1 1 0 go
+ //1 1 1 go
+ EnumSet<When> when = toEnumSet(When.class, clearData.when());
+ boolean hasBefore = when.contains(When.BEFORE_TEST);
+ boolean hasAfter = when.contains(When.AFTER_TEST);
+
+ if ((!hasBefore && !hasAfter) ||
+ (!hasBefore && isBefore) ||
+ (hasBefore && !hasAfter && !isBefore)) {
+
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Skipping clean up. Currently " + (isBefore ? "before" : "after") + " test but scheduled to run:" + when);
+ }
+ return;
+ }
+
+ LOG.info("Stopping Plugin Container to clean up data");
+ pcContainer.get().stopPc();
+
+ File dataDir = pcContainer.get().getConfiguration().getDataDirectory();
+ File tmpDir = pcContainer.get().getConfiguration().getTemporaryDirectory();
+
+ FileUtil.purge(tmpDir, false);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Purged temp dir");
+ }
+
+ if (clearData.ofInventory()) {
+ File inventoryDat = new File(dataDir, INVENTORY_DAT);
+ if (inventoryDat.exists()) {
+ inventoryDat.delete();
+ }
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Purged inventory dat");
+ }
+ }
+
+ if (clearData.ofDrift()) {
+ FileUtil.purge(new File(dataDir, "changesets"), false);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Purged drift changesets");
+ }
+ }
+
+ List<String> plugins = Arrays.asList(clearData.ofPlugins());
+ if (plugins.contains(ClearPersistedData.ALL_PLUGINS)) {
+ removeAllDataBut(dataDir, new String[] {"inventory.dat", "changesets"});
+ } else {
+ for(String n : plugins) {
+ FileUtil.purge(new File(dataDir, n), true);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Purged plugin dir: " + n);
+ }
+ }
+ }
+
+ LOG.info("Starting Plugin Container after data cleanup.");
+ pcContainer.get().startPc();
+ }
+ }
+
+ private void removeAllDataBut(File dataDir, final String[] excludedNames) {
+ File[] files = dataDir.listFiles(new FilenameFilter() {
+ @Override
+ public boolean accept(File dir, String name) {
+ for(String n : excludedNames) {
+ if (name.equals(n)) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+ });
+
+ for(File f : files) {
+ FileUtil.purge(f, true);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Purged dir: " + f.getName());
+ }
+ }
+ }
+
+ private <T extends Enum<T>> EnumSet<T> toEnumSet(Class<T> c, T... values) {
+ EnumSet<T> ret = EnumSet.noneOf(c);
+ for(T e : values) {
+ ret.add(e);
+ }
+
+ return ret;
+ }
+}
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
index 917fc67..0950865 100644
--- a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
@@ -47,6 +47,7 @@ import org.jboss.arquillian.container.spi.client.protocol.ProtocolDescription;
import org.jboss.arquillian.container.spi.client.protocol.metadata.ProtocolMetaData;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.annotation.Inject;
+import org.jboss.arquillian.test.spi.annotation.TestScoped;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePath;
import org.jboss.shrinkwrap.api.ArchivePaths;
@@ -342,9 +343,12 @@ public class RhqAgentPluginContainer implements DeployableContainer<RhqAgentPlug
/**
* Starts the plugin container.
+ * This method is package private so that other instances can start/stop the PC the same way as the container
+ * itself even outside the default lifecycle of the container.
+ *
* @return true if the plugin container needed to be started (i.e. was not running before), false otherwise.
*/
- private boolean startPc() {
+ boolean startPc() {
LOG.debug("Starting PluginContainer on demand...");
PluginContainer pc = PluginContainer.getInstance();
@@ -367,9 +371,12 @@ public class RhqAgentPluginContainer implements DeployableContainer<RhqAgentPlug
/**
* Stops the plugin container.
+ * This method is package private so that other instances can start/stop the PC the same way as the container
+ * itself even outside the default lifecycle of the container.
+ *
* @return true if PC was running before this call, false otherwise
*/
- private boolean stopPc() {
+ boolean stopPc() {
LOG.debug("Stopping PluginContainer on demand...");
PluginContainer pc = PluginContainer.getInstance();
boolean wasStarted = pc.isStarted();
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerExtension.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerExtension.java
index c5f23c9..342727c 100644
--- a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerExtension.java
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerExtension.java
@@ -49,7 +49,8 @@ public class RhqAgentPluginContainerExtension implements LoadableExtension {
.observer(PluginContainerPreparatorExecutor.class)
.observer(PluginContainerOperationExecutor.class)
.observer(PluginContainerRemedyExecutor.class)
- .observer(PostPrepareEnricherExecutor.class);
+ .observer(PostPrepareEnricherExecutor.class)
+ .observer(DataCleanupExecutor.class);
builder.service(DeployableContainer.class, RhqAgentPluginContainer.class)
.service(ResourceProvider.class, PluginContainerProvider.class)
diff --git a/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/CleanUpTest.java b/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/CleanUpTest.java
new file mode 100644
index 0000000..4483cba
--- /dev/null
+++ b/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/CleanUpTest.java
@@ -0,0 +1,154 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.test.arquillian;
+
+import java.util.Arrays;
+import java.util.HashSet;
+
+import static org.mockito.Matchers.any;
+import static org.mockito.Mockito.when;
+import static org.testng.Assert.assertEquals;
+
+import org.testng.annotations.Test;
+
+import org.jboss.arquillian.container.test.api.Deployment;
+import org.jboss.arquillian.container.test.api.TargetsContainer;
+import org.jboss.arquillian.test.api.ArquillianResource;
+import org.jboss.arquillian.testng.Arquillian;
+import org.jboss.shrinkwrap.api.ShrinkWrap;
+
+import org.rhq.core.clientapi.server.discovery.InventoryReport;
+import org.rhq.core.domain.resource.InventoryStatus;
+import org.rhq.core.pc.PluginContainerConfiguration;
+import org.rhq.test.shrinkwrap.RhqAgentPluginArchive;
+
+/**
+ * @author Lukas Krejci
+ */
+public class CleanUpTest extends Arquillian {
+
+ @Deployment(name = "1")
+ @TargetsContainer("cleaned-up-pc")
+ public static RhqAgentPluginArchive getDeepTestPlugin() {
+ return ShrinkWrap.create(RhqAgentPluginArchive.class, "test-cleanup-deep-plugin-1.0.0.jar")
+ .addClasses(TestDiscoveryComponent.class, TestResourceComponent.class)
+ .setPluginDescriptor("test-deep-rhq-plugin.xml");
+ }
+
+ @Deployment(name = "2")
+ @TargetsContainer("cleaned-up-pc")
+ public static RhqAgentPluginArchive getTestPlugin() {
+ return ShrinkWrap.create(RhqAgentPluginArchive.class, "test-cleanup-plugin-1.0.0.jar")
+ .addClasses(TestDiscoveryComponent.class, TestResourceComponent.class)
+ .setPluginDescriptor("test-rhq-plugin.xml");
+ }
+
+ @ArquillianResource
+ private PluginContainerConfiguration pluginContainerConfig;
+
+ @ArquillianResource
+ private MockingServerServices serverServices;
+
+ private FakeServerInventory fakeServerInventory;
+ private FakeServerInventory.CompleteDiscoveryChecker discoveryCompleteChecker;
+
+ private void setupDiscoveryServerMocks(int expectedDiscoveryDepth) throws Exception {
+ serverServices.resetMocks();
+ fakeServerInventory = new FakeServerInventory();
+ discoveryCompleteChecker = fakeServerInventory.createAsyncDiscoveryCompletionChecker(expectedDiscoveryDepth);
+ //autoimport everything
+ when(serverServices.getDiscoveryServerService().mergeInventoryReport(any(InventoryReport.class))).then(
+ fakeServerInventory.mergeInventoryReport(InventoryStatus.COMMITTED));
+ }
+
+ @BeforeDiscovery(testMethods = {"testCleanAll", "testClearingAfterTest", "checkDiscoveryCanRunFullBecauseInventoryClear"})
+ public void setupDiscoveryMocksWithCleanInventory() throws Exception {
+ setupDiscoveryServerMocks(3);
+ }
+
+ @BeforeDiscovery(testMethods = "testCleanAllButInventoryDat")
+ public void setupDiscoveryMocksWithInventory() throws Exception {
+ //do nothing here... we want the faked server to pretend the stuff was left in it.
+ //we don't want the agent to think that it has obsolete resources which would cause it
+ //to stop the resources from the persisted inventory, which would cause our marker files
+ //to be put on the filesystem and fail the test.
+ }
+
+ @AfterDiscovery(testMethods = {"testCleanAll", "testClearingAfterTest", "checkDiscoveryCanRunFullBecauseInventoryClear"})
+ public void waitForAsyncDiscoveries() throws Exception {
+ if (discoveryCompleteChecker != null) {
+ discoveryCompleteChecker.waitForDiscoveryComplete();
+ }
+ }
+
+ @RunDiscovery
+ @ClearPersistedData
+ @Test
+ public void testCleanAll() {
+ String[] files = pluginContainerConfig.getDataDirectory().list();
+ assertExpected(files, new String[]{}, "No other files should be in the data dir.");
+ }
+
+ @RunDiscovery
+ @ClearPersistedData(ofInventory = false)
+ @Test(dependsOnMethods = "testCleanAll")
+ public void testCleanAllButInventoryDat() {
+ String[] files = pluginContainerConfig.getDataDirectory().list();
+ assertExpected(files, new String[]{"inventory.dat"}, "No other files should be in the data dir.");
+ }
+
+ @RunDiscovery
+ @ClearPersistedData(ofPlugins = {})
+ @Test(dependsOnMethods = "testCleanAllButInventoryDat")
+ public void testCleanJustInventoryDat() {
+ String[] files = pluginContainerConfig.getDataDirectory().list();
+
+ assertExpected(files, new String[]{"testDeepPlugin", "testPlugin"},
+ "No other files should be in the data dir.");
+ }
+
+ @ClearPersistedData(when = {When.AFTER_TEST})
+ @Test(dependsOnMethods = "testCleanJustInventoryDat")
+ public void testClearingAfterTest() {
+ //nothing to be done here... we just want stuff to be cleared after this test
+ //and actually check in the next test that it was successful
+ }
+
+ @RunDiscovery
+ @Test(dependsOnMethods = "testClearingAfterTest")
+ public void checkClearAfterTestWorked() {
+ String[] files = pluginContainerConfig.getDataDirectory().list();
+ assertExpected(files, new String[]{}, "No other files should be in the data dir.");
+ }
+
+ private void assertExpected(String[] actualFiles, String[] expectedFiles, String message) {
+ HashSet<Object> sActual = new HashSet<Object>(Arrays.asList(actualFiles));
+ HashSet<Object> sExpected = new HashSet<Object>(Arrays.asList(expectedFiles));
+
+ //the "changesets" directory is going to always be there because it is eagerly created during PC startup.
+ sExpected.add("changesets");
+
+ assertEquals(sActual, sExpected, message);
+ }
+}
diff --git a/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/TestResourceComponent.java b/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/TestResourceComponent.java
index cd19c25..3fe50d5 100644
--- a/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/TestResourceComponent.java
+++ b/modules/core/arquillian-integration/container/src/test/java/org/rhq/test/arquillian/TestResourceComponent.java
@@ -19,6 +19,12 @@
package org.rhq.test.arquillian;
+import java.io.File;
+import java.io.IOException;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
import org.rhq.core.domain.measurement.AvailabilityType;
import org.rhq.core.pluginapi.inventory.InvalidPluginConfigurationException;
import org.rhq.core.pluginapi.inventory.ResourceComponent;
@@ -31,6 +37,10 @@ import org.rhq.core.pluginapi.inventory.ResourceContext;
*/
public class TestResourceComponent implements ResourceComponent<ResourceComponent<?>> {
+ private static final Log LOG = LogFactory.getLog(TestResourceComponent.class);
+
+ private ResourceContext<?> context;
+
@Override
public AvailabilityType getAvailability() {
return AvailabilityType.UP;
@@ -39,9 +49,23 @@ public class TestResourceComponent implements ResourceComponent<ResourceComponen
@Override
public void start(ResourceContext<ResourceComponent<?>> context) throws InvalidPluginConfigurationException,
Exception {
+
+ this.context = context;
}
@Override
public void stop() {
+ context.getDataDirectory().mkdirs();
+ try {
+ File f = new File(context.getDataDirectory(), "test-plugin.data");
+ if (!f.exists()) {
+ f.createNewFile();
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("Create file " + f);
+ }
+ }
+ } catch (IOException e) {
+ throw new IllegalStateException("Could not touch a marker file.");
+ }
}
}
diff --git a/modules/core/arquillian-integration/container/src/test/resources/arquillian.xml b/modules/core/arquillian-integration/container/src/test/resources/arquillian.xml
index 3bf9e46..134cac4 100644
--- a/modules/core/arquillian-integration/container/src/test/resources/arquillian.xml
+++ b/modules/core/arquillian-integration/container/src/test/resources/arquillian.xml
@@ -25,6 +25,14 @@
<property name="nativeSystemInfoEnabled">true</property>
</configuration>
</container>
+
+ <container qualifier="cleaned-up-pc">
+ <configuration>
+ <property name="startManagementBean">false</property>
+ <property name="insideAgent">true</property>
+ <property name="serverServicesImplementationClassName">org.rhq.test.arquillian.MockingServerServices</property>
+ </configuration>
+ </container>
</group>
<!-- We actually have to exclude all the classes from instrumentation by Arquillian Jacoco extension, because our
commit 8cfcd136621c1d5241cea4156154bf0e07712c75
Author: Lukas Krejci <lkrejci(a)redhat.com>
Date: Wed Mar 27 09:58:53 2013 +0100
Arq support for cleaning PC's data dir on shutdown.
It can now be done using the "clearDataOnShutdown" configuration
property in the container configuration in arquillian.xml.
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
index 203e2bb..917fc67 100644
--- a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainer.java
@@ -95,8 +95,6 @@ public class RhqAgentPluginContainer implements DeployableContainer<RhqAgentPlug
sigar = new File(root, "sigar");
sigar.mkdir();
} catch (IOException e) {
- root = null;
- deployments = null;
throw new IllegalStateException(
"Could not create the root directory for RHQ plugin container test deployments");
}
@@ -374,17 +372,23 @@ public class RhqAgentPluginContainer implements DeployableContainer<RhqAgentPlug
private boolean stopPc() {
LOG.debug("Stopping PluginContainer on demand...");
PluginContainer pc = PluginContainer.getInstance();
- if (pc.isStarted()) {
+ boolean wasStarted = pc.isStarted();
+ if (wasStarted) {
boolean shutdownGracefully = pc.shutdown();
if (shutdownGracefully) {
LOG.debug("Stopped PluginContainer gracefully.");
} else {
LOG.debug("Stopped PluginContainer.");
}
- return true;
}
- return false;
+ FileUtil.purge(configuration.getTemporaryDirectory(), false);
+
+ if (configuration.isClearDataOnShutdown()) {
+ FileUtil.purge(configuration.getDataDirectory(), false);
+ }
+
+ return wasStarted;
}
private void deployPlugin(RhqAgentPluginArchive plugin) {
diff --git a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerConfiguration.java b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerConfiguration.java
index cdc697d..3fc34eb 100644
--- a/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerConfiguration.java
+++ b/modules/core/arquillian-integration/container/src/main/java/org/rhq/test/arquillian/impl/RhqAgentPluginContainerConfiguration.java
@@ -18,7 +18,8 @@ public class RhqAgentPluginContainerConfiguration extends PluginContainerConfigu
private String serverServicesImplementationClassName;
private boolean nativeSystemInfoEnabled;
private String additionalPackagesForRootPluginClassLoaderToExclude;
-
+ private boolean clearDataOnShutdown;
+
private static final long HUNDRED_YEARS = 100L * 365 * 24 * 60 * 60;
public RhqAgentPluginContainerConfiguration() {
@@ -95,6 +96,14 @@ public class RhqAgentPluginContainerConfiguration extends PluginContainerConfigu
setRootPluginClassLoaderRegex(newRegex.toString());
}
+ public boolean isClearDataOnShutdown() {
+ return clearDataOnShutdown;
+ }
+
+ public void setClearDataOnShutdown(boolean clearDataOnShutdown) {
+ this.clearDataOnShutdown = clearDataOnShutdown;
+ }
+
@Override
public void validate() throws ConfigurationException {
RhqAgentPluginContainer.init();
@@ -113,5 +122,4 @@ public class RhqAgentPluginContainerConfiguration extends PluginContainerConfigu
+ getServerServicesImplementationClassName() + "].", e);
}
}
-
}
10 years, 8 months
[rhq] modules/enterprise
by lkrejci
modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java | 13 ++-
modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientProxy.java | 10 ++
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java | 34 ++++------
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java | 24 +++----
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java | 3
5 files changed, 42 insertions(+), 42 deletions(-)
New commits:
commit 99bbd52d13b16fe57c80c6dab7230942cfd49560
Author: Lukas Krejci <lkrejci(a)redhat.com>
Date: Fri Mar 29 17:04:21 2013 +0100
[BZ 928971] - ClassPoolFactory is now resilient against context classloader changes
The instance must not be cached because it could be using a wrong context
classloader if that changed between invocations.
Also made changes to lower the numbder of instances of the ClassPool
in the created while using the ConfigurationClassBuilder.
This, in addition to commit fe8952cf9631c2d839f9e37d53f8c1aa1bb04b83
(which I failed to annotate with the BZ number), should fix the bug.
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
index 2e6ce5c..63c96f0 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
@@ -4,7 +4,6 @@ import java.io.PrintWriter;
import java.lang.reflect.InvocationTargetException;
import java.security.AccessController;
import java.security.PrivilegedAction;
-import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
@@ -153,7 +152,7 @@ public class ResourceClientFactory {
private Class<?> defineCustomInterface(ResourceClientProxy proxy) {
try {
// define the dynamic class - do not put it in any known rhq package in case our jars are signed (see BZ-794503)
- ClassPool pool = ClassPoolFactory.get();
+ ClassPool pool = ClassPoolFactory.newInstance();
CtClass customClass = pool.makeInterface("org.rhq.bindings.client.dynamic."
+ ResourceClientProxy.class.getSimpleName() + proxy.fingerprint);
@@ -173,8 +172,8 @@ public class ResourceClientFactory {
} else if (prop instanceof ResourceClientProxy.Operation) {
ResourceClientProxy.Operation o = (ResourceClientProxy.Operation) prop;
- LinkedHashMap<String, CtClass> types = ConfigurationClassBuilder.translateParameters(o
- .getDefinition().getParametersConfigurationDefinition());
+ LinkedHashMap<String, CtClass> types = ConfigurationClassBuilder.translateParameters(pool, o
+ .getDefinition().getParametersConfigurationDefinition());
CtClass[] params = new CtClass[types.size()];
int x = 0;
@@ -182,8 +181,10 @@ public class ResourceClientFactory {
params[x++] = types.get(param);
}
- CtMethod method = CtNewMethod.abstractMethod(ConfigurationClassBuilder.translateConfiguration(o
- .getDefinition().getResultsConfigurationDefinition()), ResourceClientProxy.simpleName(key), params,
+ CtMethod method = CtNewMethod
+ .abstractMethod(ConfigurationClassBuilder.translateConfiguration(pool, o
+ .getDefinition().getResultsConfigurationDefinition()), ResourceClientProxy.simpleName(key),
+ params,
new javassist.CtClass[0], customClass);
// Setup @WebParam annotations so the signatures have the config prop names
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientProxy.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientProxy.java
index 9b20aef..fc5e610 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientProxy.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientProxy.java
@@ -29,11 +29,13 @@ import java.util.List;
import java.util.Map;
import java.util.Set;
+import javassist.ClassPool;
import javassist.util.proxy.MethodHandler;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.rhq.bindings.util.ClassPoolFactory;
import org.rhq.bindings.util.ConfigurationClassBuilder;
import org.rhq.bindings.util.LazyLoadScenario;
import org.rhq.bindings.util.ResourceTypeFingerprint;
@@ -410,7 +412,9 @@ public class ResourceClientProxy {
if (!LazyLoadScenario.isShouldLoad())
return null;
- Configuration parameters = ConfigurationClassBuilder.translateParametersToConfig(definition
+ ClassPool pool = ClassPoolFactory.newInstance();
+
+ Configuration parameters = ConfigurationClassBuilder.translateParametersToConfig(pool, definition
.getParametersConfigurationDefinition(), args);
OperationManagerRemote operationManager = remoteClient.getProxy(OperationManagerRemote.class);
@@ -441,7 +445,7 @@ public class ResourceClientProxy {
Configuration result = (history != null ? history.getResults() : null);
- Object returnResults = ConfigurationClassBuilder.translateResults(definition
+ Object returnResults = ConfigurationClassBuilder.translateResults(pool, definition
.getResultsConfigurationDefinition(), result);
return returnResults;
@@ -525,7 +529,7 @@ public class ResourceClientProxy {
/**
* @deprecated Superseded by ({@link #updateBackingContent(String, String)}
*
- * @param fileName file name
+ * @param filename file name
*/
@Deprecated
public void updateBackingContent(String filename) {
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java
index 50673e8..38397db 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java
@@ -28,24 +28,22 @@ import javassist.ClassPool;
import javassist.LoaderClassPath;
/**
- * This class is used to create Javassist's classpools usable in RHQ on both client and server side.
- * This only exists to centralize the initialization code for the pools.
- * <p>
- * This class is similar to how the <code>ClassPool.getDefault()</code> method operates (in that it only ever returns
- * a single instance of the pool) but uses a "wider" class path, looking for classes using the context class loader
- * and the using the default resource lookup of the <code>Class</code> class, in addition to just the system class path
- * as detected by Javassist (which is the only one used in the class pool returned by
- * <code>ClassPool.getDefault()</code>).
- * <p>
- * This is to ensure that Javassist can locate the classes in various classloading "schemes" - the traditional
+ * This class is used to create Javassist's classpools usable in RHQ on both client and server side. This only exists to
+ * centralize the initialization code for the pools.
+ *
+ * <p> Unlike the <code>ClassPool.getDefault()</code> method that only ever returns a single instance of the pool, this
+ * factory returns a <b>new instance</b> every time. This is because it uses a "wider" class path, looking for classes
+ * using the current thread context class loader but also using the default resource lookup of the <code>Class</code>
+ * class, in addition to just the system class path as detected by Javassist (which is the only one used in the class
+ * pool returned by <code>ClassPool.getDefault()</code>).
+ *
+ * <p> This is to ensure that Javassist can locate the classes in various classloading "schemes" - the traditional
* application classloader used in the CLI client and the JBoss Modules classloading used on the server.
*
* @author Lukas Krejci
*/
public class ClassPoolFactory {
- private static ClassPool pool;
-
private ClassPoolFactory() {
}
@@ -53,13 +51,11 @@ public class ClassPoolFactory {
/**
* @return the singleton class pool instance initialized according the {@link ClassPoolFactory rules}.
*/
- public static synchronized ClassPool get() {
- if (pool == null) {
- pool = new ClassPool(null);
- pool.appendClassPath(new LoaderClassPath(Thread.currentThread().getContextClassLoader()));
- pool.appendClassPath(new ClassClassPath(ClassPoolFactory.class));
- pool.appendSystemPath();
- }
+ public static ClassPool newInstance() {
+ ClassPool pool = new ClassPool(null);
+ pool.appendClassPath(new LoaderClassPath(Thread.currentThread().getContextClassLoader()));
+ pool.appendClassPath(new ClassClassPath(ClassPoolFactory.class));
+ pool.appendSystemPath();
return pool;
}
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
index fd72443..d01ce14 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
@@ -40,7 +40,7 @@ public class ConfigurationClassBuilder {
* @return Map of propertyName to types for the config def
* @throws NotFoundException
*/
- public static LinkedHashMap<String, CtClass> translateParameters(ConfigurationDefinition def)
+ public static LinkedHashMap<String, CtClass> translateParameters(ClassPool cp, ConfigurationDefinition def)
throws NotFoundException {
LinkedHashMap<String, CtClass> result = new LinkedHashMap<String, CtClass>();
if (def == null || def.getPropertyDefinitions() == null) {
@@ -51,14 +51,14 @@ public class ConfigurationClassBuilder {
if (pd instanceof PropertyDefinitionSimple) {
PropertyDefinitionSimple simple = (PropertyDefinitionSimple) pd;
String name = pd.getName();
- CtClass paramType = getSimpleTypeClass(simple);
+ CtClass paramType = getSimpleTypeClass(cp, simple);
result.put(name, paramType);
}
}
return result;
}
- private static CtClass getSimpleTypeClass(PropertyDefinitionSimple simple) throws NotFoundException {
+ private static CtClass getSimpleTypeClass(ClassPool cp, PropertyDefinitionSimple simple) throws NotFoundException {
Class<?> paramType = null;
switch (simple.getType()) {
case STRING:
@@ -84,19 +84,19 @@ public class ConfigurationClassBuilder {
paramType = Double.TYPE;
break;
}
- return ClassPoolFactory.get().get(paramType.getName());
+ return cp.get(paramType.getName());
}
- public static CtClass translateConfiguration(ConfigurationDefinition def) throws NotFoundException {
+ public static CtClass translateConfiguration(ClassPool cp, ConfigurationDefinition def) throws NotFoundException {
if (def == null) {
return CtClass.voidType;
} else if (def.getPropertyDefinitionSimple("operationResult") != null) {
// Its a simple type
- return getSimpleTypeClass(def.getPropertyDefinitionSimple("operationResult"));
+ return getSimpleTypeClass(cp, def.getPropertyDefinitionSimple("operationResult"));
} else {
// TODO GH: Build a custom type?
- return ClassPoolFactory.get().get(Configuration.class.getName());
+ return cp.get(Configuration.class.getName());
}
}
@@ -108,9 +108,9 @@ public class ConfigurationClassBuilder {
return Character.toLowerCase(name.charAt(0)) + name.substring(1, name.length());
}
- public static Configuration translateParametersToConfig(ConfigurationDefinition parametersConfigurationDefinition,
+ public static Configuration translateParametersToConfig(ClassPool cp, ConfigurationDefinition parametersConfigurationDefinition,
Object[] args) throws NotFoundException {
- LinkedHashMap<String, CtClass> translateParameters = translateParameters(parametersConfigurationDefinition);
+ LinkedHashMap<String, CtClass> translateParameters = translateParameters(cp, parametersConfigurationDefinition);
Configuration config = new Configuration();
int index = 0;
@@ -122,12 +122,12 @@ public class ConfigurationClassBuilder {
}
- public static Object translateResults(ConfigurationDefinition resultsConfigurationDefinition, Configuration result)
+ public static Object translateResults(ClassPool cp, ConfigurationDefinition resultsConfigurationDefinition, Configuration result)
throws NotFoundException {
- CtClass expectedReturn = translateConfiguration(resultsConfigurationDefinition);
+ CtClass expectedReturn = translateConfiguration(cp, resultsConfigurationDefinition);
- if (expectedReturn.equals(ClassPoolFactory.get().get(Configuration.class.getName()))) {
+ if (expectedReturn.equals(ClassPoolFactory.newInstance().get(Configuration.class.getName()))) {
return result;
} else {
//bail on translation if Configuration passed in is null
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
index 1e13179..640f8bf 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
@@ -22,7 +22,6 @@ import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
-import javassist.CannotCompileException;
import javassist.ClassPool;
import javassist.CtClass;
import javassist.CtMethod;
@@ -143,7 +142,7 @@ public class InterfaceSimplifier {
public static Class<?> simplify(Class<?> intf) {
try {
- ClassPool classPool = ClassPoolFactory.get();
+ ClassPool classPool = ClassPoolFactory.newInstance();
String simplifiedName = getSimplifiedName(intf);
LOG.debug("Simplifying " + intf + " (simplified interface name: " + simplifiedName + ")...");
10 years, 8 months
[rhq] modules/enterprise
by lkrejci
modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java | 33 ++
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java | 66 ++++
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java | 6
modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java | 11
modules/enterprise/server/client-api/src/main/java/org/rhq/enterprise/client/LocalClient.java | 3
modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/client/security/test/ScriptingAPIServerTest.java | 133 ++++++++++
6 files changed, 237 insertions(+), 15 deletions(-)
New commits:
commit fe8952cf9631c2d839f9e37d53f8c1aa1bb04b83
Author: Lukas Krejci <lkrejci(a)redhat.com>
Date: Fri Mar 29 16:06:45 2013 +0100
Fix classloading issues when defining objects in the std script context.
It seems that the change of the container to AS7 has caused a regression
in the CLI alert scripts that were no longer able to properly define the
standard context provided to scripts by RHQ.
This is fixed by using a differently configured Javassist's ClassPool
during the various class modifications we use to prepare the *Manager
objects and when generating a resource proxy in ProxyFactory.
Also, the errors that can happen during the various stages of this setup
are now thrown up the chain instead of merely logged so that errors like
this are apparent - it is not something the user should be expected to
deal with.
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
index 3bf4729..2e6ce5c 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/client/ResourceClientFactory.java
@@ -2,6 +2,9 @@ package org.rhq.bindings.client;
import java.io.PrintWriter;
import java.lang.reflect.InvocationTargetException;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
@@ -26,6 +29,7 @@ import javax.jws.WebParam;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.rhq.bindings.util.ClassPoolFactory;
import org.rhq.bindings.util.ConfigurationClassBuilder;
import org.rhq.bindings.util.ResourceTypeFingerprint;
import org.rhq.core.domain.resource.ResourceCreationDataType;
@@ -109,12 +113,16 @@ public class ResourceClientFactory {
instantiateMethodHandler(proxy, interfaces, rhqFacade));
} catch (InstantiationException e) {
LOG.error("Could not instantiate a ResourceClientProxy, this is a bug.", e);
+ throw new IllegalStateException("Could not instantiate a ResourceClientProxy, this is a bug.", e);
} catch (IllegalAccessException e) {
LOG.error("Could not instantiate a ResourceClientProxy, this is a bug.", e);
+ throw new IllegalStateException("Could not instantiate a ResourceClientProxy, this is a bug.", e);
} catch (NoSuchMethodException e) {
LOG.error("Could not instantiate a ResourceClientProxy, this is a bug.", e);
+ throw new IllegalStateException("Could not instantiate a ResourceClientProxy, this is a bug.", e);
} catch (InvocationTargetException e) {
LOG.error("Could not instantiate a ResourceClientProxy, this is a bug.", e);
+ throw new IllegalStateException("Could not instantiate a ResourceClientProxy, this is a bug.", e);
}
return proxied;
}
@@ -145,7 +153,7 @@ public class ResourceClientFactory {
private Class<?> defineCustomInterface(ResourceClientProxy proxy) {
try {
// define the dynamic class - do not put it in any known rhq package in case our jars are signed (see BZ-794503)
- ClassPool pool = ClassPool.getDefault();
+ ClassPool pool = ClassPoolFactory.get();
CtClass customClass = pool.makeInterface("org.rhq.bindings.client.dynamic."
+ ResourceClientProxy.class.getSimpleName() + proxy.fingerprint);
@@ -202,19 +210,34 @@ public class ResourceClientFactory {
ClassLoader cl = Thread.currentThread().getContextClassLoader();
try {
- Thread.currentThread().setContextClassLoader(ResourceClientProxy.class.getClassLoader());
+ setContextClassLoader(ResourceClientProxy.class.getClassLoader());
return customClass.toClass();
} finally {
- Thread.currentThread().setContextClassLoader(cl);
+ setContextClassLoader(cl);
}
} catch (NotFoundException e) {
LOG.error("Could not create custom interface for resource with id " + proxy.getId(), e);
+ throw new IllegalStateException("Could not create custom interface for resource with id " + proxy.getId(), e);
} catch (CannotCompileException e) {
LOG.error("Could not create custom interface for resource with id " + proxy.getId(), e);
+ throw new IllegalStateException("Could not create custom interface for resource with id " + proxy.getId(), e);
} catch (Exception e) {
LOG.error("Could not create custom interface for resource with id " + proxy.getId(), e);
+ throw new IllegalStateException("Could not create custom interface for resource with id " + proxy.getId(), e);
+ }
+ }
+
+ private void setContextClassLoader(final ClassLoader cl) {
+ if (System.getSecurityManager() != null) {
+ AccessController.doPrivileged(new PrivilegedAction<Void>() {
+ @Override
+ public Void run() {
+ Thread.currentThread().setContextClassLoader(cl);
+ return null;
+ }
+ });
+ } else {
+ Thread.currentThread().setContextClassLoader(cl);
}
-
- return null;
}
}
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java
new file mode 100644
index 0000000..50673e8
--- /dev/null
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ClassPoolFactory.java
@@ -0,0 +1,66 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.bindings.util;
+
+import javassist.ClassClassPath;
+import javassist.ClassPool;
+import javassist.LoaderClassPath;
+
+/**
+ * This class is used to create Javassist's classpools usable in RHQ on both client and server side.
+ * This only exists to centralize the initialization code for the pools.
+ * <p>
+ * This class is similar to how the <code>ClassPool.getDefault()</code> method operates (in that it only ever returns
+ * a single instance of the pool) but uses a "wider" class path, looking for classes using the context class loader
+ * and the using the default resource lookup of the <code>Class</code> class, in addition to just the system class path
+ * as detected by Javassist (which is the only one used in the class pool returned by
+ * <code>ClassPool.getDefault()</code>).
+ * <p>
+ * This is to ensure that Javassist can locate the classes in various classloading "schemes" - the traditional
+ * application classloader used in the CLI client and the JBoss Modules classloading used on the server.
+ *
+ * @author Lukas Krejci
+ */
+public class ClassPoolFactory {
+
+ private static ClassPool pool;
+
+ private ClassPoolFactory() {
+
+ }
+
+ /**
+ * @return the singleton class pool instance initialized according the {@link ClassPoolFactory rules}.
+ */
+ public static synchronized ClassPool get() {
+ if (pool == null) {
+ pool = new ClassPool(null);
+ pool.appendClassPath(new LoaderClassPath(Thread.currentThread().getContextClassLoader()));
+ pool.appendClassPath(new ClassClassPath(ClassPoolFactory.class));
+ pool.appendSystemPath();
+ }
+
+ return pool;
+ }
+}
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
index b739581..fd72443 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/ConfigurationClassBuilder.java
@@ -84,7 +84,7 @@ public class ConfigurationClassBuilder {
paramType = Double.TYPE;
break;
}
- return ClassPool.getDefault().get(paramType.getName());
+ return ClassPoolFactory.get().get(paramType.getName());
}
public static CtClass translateConfiguration(ConfigurationDefinition def) throws NotFoundException {
@@ -96,7 +96,7 @@ public class ConfigurationClassBuilder {
} else {
// TODO GH: Build a custom type?
- return ClassPool.getDefault().get(Configuration.class.getName());
+ return ClassPoolFactory.get().get(Configuration.class.getName());
}
}
@@ -127,7 +127,7 @@ public class ConfigurationClassBuilder {
CtClass expectedReturn = translateConfiguration(resultsConfigurationDefinition);
- if (expectedReturn.equals(ClassPool.getDefault().get(Configuration.class.getName()))) {
+ if (expectedReturn.equals(ClassPoolFactory.get().get(Configuration.class.getName()))) {
return result;
} else {
//bail on translation if Configuration passed in is null
diff --git a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
index 8ce7bc6..1e13179 100644
--- a/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
+++ b/modules/enterprise/binding/src/main/java/org/rhq/bindings/util/InterfaceSimplifier.java
@@ -143,7 +143,7 @@ public class InterfaceSimplifier {
public static Class<?> simplify(Class<?> intf) {
try {
- ClassPool classPool = ClassPool.getDefault();
+ ClassPool classPool = ClassPoolFactory.get();
String simplifiedName = getSimplifiedName(intf);
LOG.debug("Simplifying " + intf + " (simplified interface name: " + simplifiedName + ")...");
@@ -275,12 +275,11 @@ public class InterfaceSimplifier {
return newClass.toClass();
- } catch (NotFoundException e) {
- LOG.debug("Failed to simplify " + intf + " - cause: " + e);
- } catch (CannotCompileException e) {
- LOG.error("Failed to simplify " + intf + ".", e);
+ } catch (Exception e) {
+ String msg = "Failed to simplify " + intf + ".";
+ LOG.error(msg, e);
+ throw new IllegalStateException(msg, e);
}
- return intf;
}
private static String getSimplifiedName(Class<?> interfaceClass) {
diff --git a/modules/enterprise/server/client-api/src/main/java/org/rhq/enterprise/client/LocalClient.java b/modules/enterprise/server/client-api/src/main/java/org/rhq/enterprise/client/LocalClient.java
index a918389..df0eab4 100644
--- a/modules/enterprise/server/client-api/src/main/java/org/rhq/enterprise/client/LocalClient.java
+++ b/modules/enterprise/server/client-api/src/main/java/org/rhq/enterprise/client/LocalClient.java
@@ -87,7 +87,8 @@ public class LocalClient implements RhqFacade {
managers.put(manager, proxy);
} catch (Throwable e) {
- LOG.error("Failed to load manager " + manager + " due to missing class.", e);
+ LOG.error("Failed to load manager " + manager + ".", e);
+ throw new IllegalStateException("Failed to load manager " + manager + ".", e);
}
}
}
diff --git a/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/client/security/test/ScriptingAPIServerTest.java b/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/client/security/test/ScriptingAPIServerTest.java
new file mode 100644
index 0000000..0195603
--- /dev/null
+++ b/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/client/security/test/ScriptingAPIServerTest.java
@@ -0,0 +1,133 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2013 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+package org.rhq.enterprise.client.security.test;
+
+import java.util.UUID;
+
+import javax.script.ScriptEngine;
+
+import org.testng.annotations.Test;
+
+import org.rhq.bindings.client.RhqManager;
+import org.rhq.bindings.util.SimplifiedClass;
+import org.rhq.core.domain.auth.Subject;
+import org.rhq.core.domain.configuration.definition.ConfigurationDefinition;
+import org.rhq.core.domain.configuration.definition.PropertyDefinitionSimple;
+import org.rhq.core.domain.configuration.definition.PropertySimpleType;
+import org.rhq.core.domain.measurement.DataType;
+import org.rhq.core.domain.measurement.DisplayType;
+import org.rhq.core.domain.measurement.MeasurementCategory;
+import org.rhq.core.domain.measurement.MeasurementDefinition;
+import org.rhq.core.domain.measurement.MeasurementUnits;
+import org.rhq.core.domain.operation.OperationDefinition;
+import org.rhq.core.domain.resource.Resource;
+import org.rhq.core.domain.resource.ResourceCategory;
+import org.rhq.core.domain.resource.ResourceType;
+import org.rhq.enterprise.client.ScriptableAbstractEJB3Test;
+import org.rhq.enterprise.server.test.TransactionCallback;
+import org.rhq.enterprise.server.util.LookupUtil;
+
+import static org.testng.Assert.assertNotEquals;
+
+/**
+ * @author Lukas Krejci
+ */
+public class ScriptingAPIServerTest extends ScriptableAbstractEJB3Test {
+
+ @Test
+ public void testProxyFactoryCorrectlyDefinesMethodsAndProperties() throws Exception {
+ executeInTransaction(new TransactionCallback() {
+ @Override
+ public void execute() throws Exception {
+ ResourceType rt = createResourceType();
+ Resource r = createResource(rt);
+
+ Subject overlord = LookupUtil.getSubjectManager().getOverlord();
+ ScriptEngine engine = getEngine(overlord);
+
+ engine.eval("var r = ProxyFactory.getResource(" + r.getId() + ");");
+
+ String detectedMeasurementType = (String) engine.eval("typeof(r.measurement);");
+ String detectedOperationType = (String) engine.eval("typeof(r.operation);");
+
+ assertEquals("object", detectedMeasurementType);
+ assertEquals("function", detectedOperationType);
+ }
+ });
+ }
+
+ @Test
+ public void testManagersHaveSimplifiedSignatures() throws Exception {
+ Subject overlord = LookupUtil.getSubjectManager().getOverlord();
+ ScriptEngine engine = getEngine(overlord);
+
+ //we know that interface simplification worked if the full class name is different from the original
+ //Here, we want to test the simplification worked within the classloading environment of the RHQ server.
+ //Simplification itself is unit tested separately.
+
+ for (RhqManager m : RhqManager.values()) {
+ String name = m.name();
+ Object scriptedManager = engine.eval(name);
+ assertNotNull(scriptedManager);
+
+ Class<?> implementedIface = scriptedManager.getClass().getInterfaces()[0];
+
+ assertNotEquals(m.remote(), implementedIface);
+ assertNotNull(implementedIface.getAnnotation(SimplifiedClass.class));
+ }
+ }
+
+ private ResourceType createResourceType() {
+ ResourceType resourceType = new ResourceType("ScriptingAPITestType", "dummy", ResourceCategory.PLATFORM, null);
+
+ MeasurementDefinition measurement = new MeasurementDefinition("measurement", MeasurementCategory.PERFORMANCE,
+ MeasurementUnits.BYTES,
+ DataType.MEASUREMENT, true, 1, DisplayType.DETAIL);
+ measurement.setDisplayName("measurement");
+
+ resourceType.addMetricDefinition(measurement);
+
+ ConfigurationDefinition params = new ConfigurationDefinition("dummy", null);
+ params.put(new PropertyDefinitionSimple("parameter", null, true, PropertySimpleType.BOOLEAN));
+
+ OperationDefinition operation = new OperationDefinition(resourceType, "operation");
+ operation.setDisplayName("operation");
+ operation.setParametersConfigurationDefinition(params);
+
+ resourceType.addOperationDefinition(operation);
+
+ getEntityManager().persist(resourceType);
+
+ return resourceType;
+ }
+
+ private Resource createResource(ResourceType resourceType) {
+ Resource resource = new Resource("key", "resource", resourceType);
+ resource.setUuid(UUID.randomUUID().toString());
+
+ getEntityManager().persist(resource);
+
+ return resource;
+ }
+}
10 years, 8 months
[rhq] pom.xml
by Jiri Kremser
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 652deea1954bd3132456c95d669e58e1519c582a
Author: Jirka Kremser <jkremser(a)redhat.com>
Date: Fri Mar 29 13:46:34 2013 +0100
[BZ 923458] - Versioning for dependencies and plugins not consistent - version of liquibase set to 2.0.3 (there was a CNF exception when running itests-2)
diff --git a/pom.xml b/pom.xml
index 511142f..32dd41a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -158,7 +158,7 @@
<commons-configuration.version>1.6</commons-configuration.version>
<junit.version>4.10</junit.version>
- <liquibase-core.version>1.9.5</liquibase-core.version>
+ <liquibase-core.version>2.0.3</liquibase-core.version>
<jbpm.version>3.1.1</jbpm.version>
<servlet-api.version>2.4</servlet-api.version>
10 years, 8 months
[rhq] Branch 'bug/rhq-1' - modules/enterprise
by mazz
modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/server/discovery/DiscoveryBossBeanTest.java | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
New commits:
commit bcc35b635d721722958e91026585fcdbb7ae93a6
Author: John Mazzitelli <mazz(a)redhat.com>
Date: Thu Mar 28 20:43:05 2013 -0400
BZ 535289 - adjust this test since we now allow ignoring resources to happen even if the parent isn't committed. we still do not allow COMMITTING resources if the parent isn't committed.
diff --git a/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/server/discovery/DiscoveryBossBeanTest.java b/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/server/discovery/DiscoveryBossBeanTest.java
index 137e76f..9c3e007 100644
--- a/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/server/discovery/DiscoveryBossBeanTest.java
+++ b/modules/enterprise/server/itests-2/src/test/java/org/rhq/enterprise/server/discovery/DiscoveryBossBeanTest.java
@@ -289,16 +289,9 @@ public class DiscoveryBossBeanTest extends AbstractEJB3Test {
int[] arrayOfServerIds = ArrayUtils.unwrapCollection(serverIds);
// Now test ignore, unignore and import behavior
-
- try {
- discoveryBoss.ignoreResources(subjectManager.getOverlord(), arrayOfServerIds);
- fail("Ignore resources should fail as platform resource has not yet been comitted");
- } catch (EJBException e) {
- assertEquals(String.valueOf(e.getCause()), IllegalStateException.class, e.getCause().getClass());
- assertTrue(String.valueOf(e.getCause()), e.getCause().getMessage().contains("has not yet been committed"));
- }
discoveryBoss.importResources(subjectManager.getOverlord(), new int[] { platformId });
discoveryBoss.ignoreResources(subjectManager.getOverlord(), arrayOfServerIds);
+
try {
discoveryBoss.importResources(subjectManager.getOverlord(), arrayOfServerIds);
fail("Import resources should fail for ignored resources");
10 years, 8 months
[rhq] Branch 'bug/rhq-1' - 6 commits - maven.dependency.tree modules/core modules/enterprise modules/integration-tests modules/test-utils pom.xml
by mazz
maven.dependency.tree | 8846 ++++++++++
modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingProperties.java | 300
modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingReader.java | 201
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java | 26
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java | 192
modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/setup/ApacheTestSetup.java | 2
modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/upgrade/UpgradeTestBase.java | 2
modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/util/ApacheDeploymentUtil.java | 4
modules/test-utils/src/main/java/org/rhq/test/TokenReplacingProperties.java | 300
modules/test-utils/src/main/java/org/rhq/test/TokenReplacingReader.java | 201
pom.xml | 8
11 files changed, 9474 insertions(+), 608 deletions(-)
New commits:
commit 1b01ebcbc58aa472761317cb44b876fbfe24d1e9
Merge: c1c90d3 28ee366
Author: John Mazzitelli <mazz(a)redhat.com>
Date: Thu Mar 28 17:17:58 2013 -0400
Merge remote-tracking branch 'origin/master' into bug/rhq-1
commit 28ee366c11d10e77a361bb4180d18a8360016e2f
Author: Jirka Kremser <jkremser(a)redhat.com>
Date: Thu Mar 28 17:41:13 2013 +0100
[BZ 876132] - Remote agent install form requires the ins. path to be non-empty, but the tooltip says it can be empty - Allowing blank installation path. It should search for the agent install directory if the path prefix is provided or to choose a default one.
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
index 4e80756..7fbf8a1 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
@@ -36,6 +36,7 @@ import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.Window.Location;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.core.KeyIdentifier;
+import com.smartgwt.client.i18n.SmartGwtMessages;
import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.util.KeyCallback;
import com.smartgwt.client.util.Page;
@@ -78,6 +79,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// This must come first to ensure proper I18N class loading for dev mode
private static final Messages MSG = GWT.create(Messages.class);
private static final MessageConstants MSGCONST = GWT.create(MessageConstants.class);
+ private static final SmartGwtMessages SMART_GWT_MSG = GWT.create(SmartGwtMessages.class);
private static final String DEFAULT_VIEW = DashboardsView.VIEW_ID.getName();
private static final String LOGOUT_VIEW = "LogOut";
@@ -92,7 +94,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
+ ResourceGroupDetailView.AUTO_GROUP_VIEW + "|" //
+ ResourceGroupDetailView.AUTO_CLUSTER_VIEW //
+ ResourceGroupTopView.VIEW_ID + "|" //
- + ResourceTopView.VIEW_ID + "|" //
+ + ResourceTopView.VIEW_ID + "|" //
+ ")/[^/]*";
private static ErrorHandler errorHandler = new ErrorHandler();
@@ -109,7 +111,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// while also changing the main content. Typically we refresh only when the path is not changed.
private static boolean pendingRefresh = false;
- //spinder [BZ 731864] defining variable that can be set at build time to enable/disable TAG ui components.
+ //spinder [BZ 731864] defining variable that can be set at build time to enable/disable TAG ui components.
// This will be set to 'false' on the release branch.
private static boolean enableTagsForUI = Boolean.valueOf(MSG.enable_tags());
@@ -160,11 +162,11 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
}
});
- /* after having this enabled for a while, the majority opinion is that this is more annoying than helpful
- *
+ /* after having this enabled for a while, the majority opinion is that this is more annoying than helpful
+ *
Window.addWindowClosingHandler(new Window.ClosingHandler() {
public void onWindowClosing(Window.ClosingEvent event) {
- event.setMessage("Are you sure you want to leave RHQ?");
+ event.setMessage("Are you sure you want to leave RHQ?");
}
});
*/
@@ -431,7 +433,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
pendingMessage = message;
pendingRefresh = refresh;
- // if path starts with "#" (e.g. if caller used LinkManager to obtain some of the path), strip it off
+ // if path starts with "#" (e.g. if caller used LinkManager to obtain some of the path), strip it off
if (view.charAt(0) == '#') {
view = view.substring(1);
}
@@ -454,10 +456,10 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// resource to an autogroup in the same tree. Try to keep the tab selection sticky as best as
// possible while moving from one view to another by grabbing the end portion of the previous
// history URL and append it to the new history URL. The suffix is assumed to follow the
- // ID (numeric) portion of the currentViewPath.
+ // ID (numeric) portion of the currentViewPath.
String suffix = currentViewPath.replaceFirst("\\D*[^/]*", "");
// make sure we're not *too* sticky, stop no deeper than the subtab level. This prevents
- // trying to render non-applicable detail views. We'll do this by chopping at the start
+ // trying to render non-applicable detail views. We'll do this by chopping at the start
// of any other numeric in the path
suffix = suffix.replaceFirst("\\d.*", "");
view += suffix;
@@ -475,6 +477,10 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
return MSGCONST;
}
+ public static SmartGwtMessages getSmartGwtMessages() {
+ return SMART_GWT_MSG;
+ }
+
public void reset() {
messageCenter.reset();
footer.reset();
@@ -511,7 +517,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
}
public void initCanvas() {
- // request a redraw of the MenuBarItem to ensure the correct session info is displayed
+ // request a redraw of the MenuBarItem to ensure the correct session info is displayed
getMember(0).markForRedraw();
// remove any current viewId so the next requested view generates new content
@@ -520,7 +526,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
@Override
public void renderView(ViewPath viewPath) {
- // If the session is logged out ensure that we only navigate to the log out view, otherwise keep
+ // If the session is logged out ensure that we only navigate to the log out view, otherwise keep
// our CoreGUI session alive by refreshing the session timer each time the user performs navigation
if (UserSessionManager.isLoggedOut()) {
if (!LOGOUT_VIEW.equals(viewPath.getCurrent().getPath())) {
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
index c92114f..c1ca163 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
@@ -23,6 +23,8 @@
package org.rhq.enterprise.gui.coregui.client.admin.agent.install;
import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Map;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.types.ExpansionMode;
@@ -72,6 +74,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
private EnhancedIButton installButton;
private EnhancedIButton startButton;
private EnhancedIButton stopButton;
+ private ButtonItem findAgentInstallPathButton;
+ private ButtonItem statusCheckButton;
private VLayout agentInfoLayout;
public RemoteAgentInstallView() {
@@ -110,45 +114,45 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
connectionForm = new DynamicForm();
connectionForm.setNumCols(4);
connectionForm.setWrapItemTitles(false);
- connectionForm.setColWidths("130", "250", "110");
+ connectionForm.setColWidths("130", "450", "110");
+ final int textFieldWidth = 440;
TextItem host = new TextItem("host", MSG.common_title_host());
host.setRequired(true);
- host.setWidth("240");
+ host.setWidth(textFieldWidth);
host.setPrompt(MSG.view_remoteAgentInstall_promptHost());
host.setHoverWidth(300);
host.setEndRow(true);
TextItem port = new TextItem("port", MSG.common_title_port());
port.setRequired(false);
- port.setWidth("240");
+ port.setWidth(textFieldWidth);
port.setPrompt(MSG.view_remoteAgentInstall_promptPort());
port.setHoverWidth(300);
port.setEndRow(true);
TextItem username = new TextItem("username", MSG.common_title_user());
username.setRequired(true);
- username.setWidth("240");
+ username.setWidth(textFieldWidth);
username.setPrompt(MSG.view_remoteAgentInstall_promptUser());
username.setHoverWidth(300);
username.setEndRow(true);
PasswordItem password = new PasswordItem("password", MSG.common_title_password());
password.setRequired(false);
- password.setWidth("240");
+ password.setWidth(textFieldWidth);
password.setPrompt(MSG.view_remoteAgentInstall_promptPassword());
password.setHoverWidth(300);
password.setEndRow(true);
TextItem agentInstallPath = new TextItem("agentInstallPath", MSG.view_remoteAgentInstall_installPath());
- agentInstallPath.setRequired(true);
- agentInstallPath.setWidth("240");
+ agentInstallPath.setWidth(textFieldWidth);
agentInstallPath.setPrompt(MSG.view_remoteAgentInstall_promptInstallPath());
agentInstallPath.setHoverWidth(300);
agentInstallPath.setStartRow(true);
agentInstallPath.setEndRow(false);
- ButtonItem findAgentInstallPathButton = new ButtonItem("findAgentInstallPathButton",
+ findAgentInstallPathButton = new ButtonItem("findAgentInstallPathButton",
MSG.view_remoteAgentInstall_buttonFindAgent());
findAgentInstallPathButton.setStartRow(false);
findAgentInstallPathButton.setEndRow(true);
@@ -157,9 +161,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
findAgentInstallPathButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
- if (connectionForm.validate()) {
- findAgentInstallPath();
- }
+ findAgentInstallPath();
}
});
@@ -170,7 +172,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
agentStatus.setStartRow(true);
agentStatus.setEndRow(false);
- ButtonItem statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
+ statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
statusCheckButton.setStartRow(false);
statusCheckButton.setEndRow(true);
if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
@@ -205,11 +207,6 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
});
startButton = new EnhancedIButton(MSG.view_remoteAgentInstall_startAgent());
- // startButton.setShowIfCondition(new FormItemIfFunction() {
- // public boolean execute(FormItem formItem, Object o, DynamicForm dynamicForm) {
- // return form.getValue("agentStatus") != null && !"Agent Not Installed".equals(form.getValue("agentStatus"));
- // }
- // });
startButton.setExtraSpace(10);
startButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
@@ -234,32 +231,44 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
private void findAgentInstallPath() {
- disableButtons(true);
+ final Map<String, String> errors = new HashMap<String, String>(2);
+ if (connectionForm.getValueAsString("host") == null
+ || connectionForm.getValueAsString("host").trim().isEmpty()) {
+ errors.put("host", CoreGUI.getSmartGwtMessages().validator_requiredField());
+ }
+ if (connectionForm.getValueAsString("username") == null
+ || connectionForm.getValueAsString("username").trim().isEmpty()) {
+ errors.put("username", CoreGUI.getSmartGwtMessages().validator_requiredField());
+ }
+ connectionForm.setErrors(errors, true);
+ if (errors.isEmpty()) {
+ disableButtons(true);
- final String parentPath = getAgentInstallPath();
+ final String parentPath = connectionForm.getValueAsString("agentInstallPath");
- remoteInstallService.findAgentInstallPath(getRemoteAccessInfo(), parentPath, new AsyncCallback<String>() {
- public void onFailure(Throwable caught) {
- disableButtons(false);
- CoreGUI.getErrorHandler().handleError(MSG.view_remoteAgentInstall_error_1(), caught);
- }
+ remoteInstallService.findAgentInstallPath(getRemoteAccessInfo(), parentPath, new AsyncCallback<String>() {
+ public void onFailure(Throwable caught) {
+ disableButtons(false);
+ CoreGUI.getErrorHandler().handleError(MSG.view_remoteAgentInstall_error_1(), caught);
+ }
- public void onSuccess(String result) {
- disableButtons(false);
- if (result != null) {
- connectionForm.setValue("agentInstallPath", result);
- } else {
- String err;
- if (parentPath == null || parentPath.length() == 0) {
- err = MSG.view_remoteAgentInstall_error_2();
+ public void onSuccess(String result) {
+ disableButtons(false);
+ if (result != null) {
+ connectionForm.setValue("agentInstallPath", result);
} else {
- err = MSG.view_remoteAgentInstall_error_3(parentPath);
+ String err;
+ if (parentPath == null || parentPath.length() == 0) {
+ err = MSG.view_remoteAgentInstall_error_2();
+ } else {
+ err = MSG.view_remoteAgentInstall_error_3(parentPath);
+ }
+ CoreGUI.getErrorHandler().handleError(err);
}
- CoreGUI.getErrorHandler().handleError(err);
+ agentStatusCheck();
}
- agentStatusCheck();
- }
- });
+ });
+ }
}
private void agentStatusCheck() {
@@ -432,6 +441,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
startButton.setDisabled(disabled);
stopButton.setDisabled(disabled);
buttonsForm.setDisabled(disabled);
+ findAgentInstallPathButton.setDisabled(disabled);
+ statusCheckButton.setDisabled(disabled);
}
private RemoteAccessInfo getRemoteAccessInfo() {
@@ -453,6 +464,10 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
private String getAgentInstallPath() {
+ if (connectionForm.getValueAsString("agentInstallPath") == null
+ || connectionForm.getValueAsString("agentInstallPath").trim().isEmpty()) {
+ findAgentInstallPath();
+ }
return connectionForm.getValueAsString("agentInstallPath");
}
}
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
index 66fc511..0d731ab 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
@@ -1865,7 +1865,7 @@ view_remoteAgentInstall_installInfo = Agent Installation Information
view_remoteAgentInstall_installPath = Agent Install Path
view_remoteAgentInstall_owner = Owner
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
index 6c41b06..b4ba1e4 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
@@ -1878,7 +1878,7 @@ view_remoteAgentInstall_installInfo = Informace o instalaci agenta
view_remoteAgentInstall_installPath = Instalační cesta k agentovi
view_remoteAgentInstall_owner = Vlastník
view_remoteAgentInstall_promptHost = Hostitel, kde je, nebo kam bude, agent nainstalován
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = Přihlašovací údaje použité pro autentizaci uživatele přes SSH
view_remoteAgentInstall_promptPort = Port na němž naslouchá SSH. Pokud není specifikováno použije se 22
view_remoteAgentInstall_promptUser = Jméno uživatele jehož přihlašovací údaje jsou předány hostiteli přes SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
index 7094d93..016b160 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
@@ -1680,7 +1680,7 @@ view_remoteAgentInstall_installInfo = Informationen zur Agent-Installation
view_remoteAgentInstall_installPath = Pfad der Agent-Installation
view_remoteAgentInstall_owner = Eigentümer
##view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
##view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
##view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
##view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
index 07cebd4..f832c7d 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
@@ -1534,7 +1534,6 @@ view_remoteAgentInstall_installInfo = 에이전트 설치 정보
view_remoteAgentInstall_installPath = 에이전트 설치 경로
view_remoteAgentInstall_owner = 소유자
view_remoteAgentInstall_promptHost = 에이전트가 설치되어 있거나 앞으로 설치되는 호스트
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = SSH를 통해 호스트의 사용자를 인증하는데 사용되는 인증
view_remoteAgentInstall_promptUser = SSH를 통해 호스트로 전달되는 인증을 가진 사용자의 이름
view_remoteAgentInstall_result = 결과
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
index 929f1ef..f354bd8 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
@@ -1816,7 +1816,7 @@
#view_remoteAgentInstall_installPath = Agent Install Path
#view_remoteAgentInstall_owner = Owner
#view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
#view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
#view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
#view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
index e9bd625..e19f5f2 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
@@ -1850,7 +1850,7 @@ view_remoteAgentInstall_installInfo = \u4ee3\u7406\u5b89\u88c5\u4fe1\u606f
view_remoteAgentInstall_installPath = \u4ee3\u7406\u5b89\u88c5\u8def\u5f84
view_remoteAgentInstall_owner = \u6240\u6709\u8005
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
commit 56b6e3c7eafd82d0f25625ae00c85aa4e38ee8ab
Author: Jirka Kremser <jkremser(a)redhat.com>
Date: Thu Mar 28 14:25:23 2013 +0100
[BZ 876132] - Remote agent install form requires the ins. path to be non-empty, but the tooltip says it can be empty - Tooltip has been changed. Also the whole view for this use case was improved.
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
index b48ff7d..c92114f 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
@@ -27,19 +27,21 @@ import java.util.ArrayList;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.types.ExpansionMode;
import com.smartgwt.client.widgets.Canvas;
+import com.smartgwt.client.widgets.HTMLFlow;
+import com.smartgwt.client.widgets.events.ClickEvent;
+import com.smartgwt.client.widgets.events.ClickHandler;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ButtonItem;
import com.smartgwt.client.widgets.form.fields.CanvasItem;
import com.smartgwt.client.widgets.form.fields.HeaderItem;
import com.smartgwt.client.widgets.form.fields.PasswordItem;
-import com.smartgwt.client.widgets.form.fields.SpacerItem;
import com.smartgwt.client.widgets.form.fields.StaticTextItem;
import com.smartgwt.client.widgets.form.fields.TextItem;
-import com.smartgwt.client.widgets.form.fields.events.ClickEvent;
-import com.smartgwt.client.widgets.form.fields.events.ClickHandler;
import com.smartgwt.client.widgets.grid.ListGrid;
import com.smartgwt.client.widgets.grid.ListGridField;
import com.smartgwt.client.widgets.grid.ListGridRecord;
+import com.smartgwt.client.widgets.layout.HLayout;
+import com.smartgwt.client.widgets.layout.Layout;
import com.smartgwt.client.widgets.layout.VLayout;
import org.rhq.core.domain.install.remote.AgentInstallInfo;
@@ -52,8 +54,9 @@ import org.rhq.enterprise.gui.coregui.client.components.view.ViewName;
import org.rhq.enterprise.gui.coregui.client.gwt.GWTServiceLookup;
import org.rhq.enterprise.gui.coregui.client.gwt.RemoteInstallGWTServiceAsync;
import org.rhq.enterprise.gui.coregui.client.util.MeasurementConverterClient;
-import org.rhq.enterprise.gui.coregui.client.util.message.Message;
+import org.rhq.enterprise.gui.coregui.client.util.enhanced.EnhancedIButton;
import org.rhq.enterprise.gui.coregui.client.util.enhanced.EnhancedVLayout;
+import org.rhq.enterprise.gui.coregui.client.util.message.Message;
/**
* @author Greg Hinkle
@@ -65,10 +68,10 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
private RemoteInstallGWTServiceAsync remoteInstallService = GWTServiceLookup.getRemoteInstallService(600000);
private DynamicForm connectionForm;
- private DynamicForm buttonsForm;
- private ButtonItem installButton;
- private ButtonItem startButton;
- private ButtonItem stopButton;
+ private Layout buttonsForm;
+ private EnhancedIButton installButton;
+ private EnhancedIButton startButton;
+ private EnhancedIButton stopButton;
private VLayout agentInfoLayout;
public RemoteAgentInstallView() {
@@ -81,60 +84,65 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
@Override
protected void onInit() {
super.onInit();
-
- addMember(getConnectionForm());
- addMember(getButtons());
+ Layout layout = new VLayout();
+ layout.setPadding(10);
+ HTMLFlow header = new HTMLFlow(MSG.view_remoteAgentInstall_connInfo());
+ header.setStyleName("headerItem");
+ header.setExtraSpace(5);
+ layout.addMember(header);
+ layout.addMember(getConnectionForm());
+ header = new HTMLFlow(MSG.common_title_operations());
+ header.setStyleName("headerItem");
+ header.setExtraSpace(5);
+ layout.addMember(header);
+ layout.addMember(getButtons());
agentInfoLayout = new VLayout();
agentInfoLayout.setWidth100();
agentInfoLayout.setHeight100();
agentInfoLayout.setMembersMargin(1);
- addMember(agentInfoLayout);
+ layout.addMember(agentInfoLayout);
+ addMember(layout);
}
private DynamicForm getConnectionForm() {
connectionForm = new DynamicForm();
- connectionForm.setWidth100();
- connectionForm.setNumCols(3);
+ connectionForm.setNumCols(4);
connectionForm.setWrapItemTitles(false);
- connectionForm.setColWidths("25%", "50%", "25%");
- connectionForm.setMargin(10);
-
- HeaderItem connectionHeader = new HeaderItem();
- connectionHeader.setDefaultValue(MSG.view_remoteAgentInstall_connInfo());
+ connectionForm.setColWidths("130", "250", "110");
TextItem host = new TextItem("host", MSG.common_title_host());
host.setRequired(true);
- host.setWidth("100%");
+ host.setWidth("240");
host.setPrompt(MSG.view_remoteAgentInstall_promptHost());
host.setHoverWidth(300);
- host.setColSpan(2);
+ host.setEndRow(true);
TextItem port = new TextItem("port", MSG.common_title_port());
port.setRequired(false);
- port.setWidth("90");
+ port.setWidth("240");
port.setPrompt(MSG.view_remoteAgentInstall_promptPort());
port.setHoverWidth(300);
- port.setColSpan(1);
+ port.setEndRow(true);
TextItem username = new TextItem("username", MSG.common_title_user());
username.setRequired(true);
- username.setWidth("100%");
+ username.setWidth("240");
username.setPrompt(MSG.view_remoteAgentInstall_promptUser());
username.setHoverWidth(300);
- username.setColSpan(2);
+ username.setEndRow(true);
PasswordItem password = new PasswordItem("password", MSG.common_title_password());
password.setRequired(false);
- password.setWidth("100%");
+ password.setWidth("240");
password.setPrompt(MSG.view_remoteAgentInstall_promptPassword());
password.setHoverWidth(300);
- password.setColSpan(2);
+ password.setEndRow(true);
TextItem agentInstallPath = new TextItem("agentInstallPath", MSG.view_remoteAgentInstall_installPath());
agentInstallPath.setRequired(true);
- agentInstallPath.setWidth("100%");
+ agentInstallPath.setWidth("240");
agentInstallPath.setPrompt(MSG.view_remoteAgentInstall_promptInstallPath());
agentInstallPath.setHoverWidth(300);
agentInstallPath.setStartRow(true);
@@ -144,8 +152,11 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
MSG.view_remoteAgentInstall_buttonFindAgent());
findAgentInstallPathButton.setStartRow(false);
findAgentInstallPathButton.setEndRow(true);
- findAgentInstallPathButton.addClickHandler(new ClickHandler() {
- public void onClick(ClickEvent clickEvent) {
+ if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
+ findAgentInstallPathButton.setWidth(100);
+ }
+ findAgentInstallPathButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
+ public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
if (connectionForm.validate()) {
findAgentInstallPath();
}
@@ -156,45 +167,35 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
agentStatus.setDefaultValue(MSG.view_remoteAgentInstall_agentStatusDefault());
agentStatus.setRedrawOnChange(true);
agentStatus.setRedrawOnChange(true);
- agentStatus.setWidth("100%");
agentStatus.setStartRow(true);
agentStatus.setEndRow(false);
ButtonItem statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
statusCheckButton.setStartRow(false);
statusCheckButton.setEndRow(true);
- statusCheckButton.addClickHandler(new ClickHandler() {
- public void onClick(ClickEvent clickEvent) {
+ if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
+ statusCheckButton.setWidth(100);
+ }
+ statusCheckButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
+ public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
if (connectionForm.validate()) {
agentStatusCheck();
}
}
});
- connectionForm.setFields(connectionHeader, host, port, username, password, agentInstallPath,
+ connectionForm.setFields(host, port, username, password, agentInstallPath,
findAgentInstallPathButton, agentStatus, statusCheckButton);
+ connectionForm.setExtraSpace(15);
return connectionForm;
}
- private DynamicForm getButtons() {
- buttonsForm = new DynamicForm();
- buttonsForm.setWidth("75%");
- buttonsForm.setNumCols(4);
- buttonsForm.setMargin(10);
- buttonsForm.setColWidths("10%", "30%", "30%", "30%");
-
- HeaderItem buttonsHeader = new HeaderItem();
- buttonsHeader.setDefaultValue(MSG.common_title_operations());
-
- SpacerItem spacerItem = new SpacerItem();
- spacerItem.setStartRow(true);
- spacerItem.setEndRow(false);
+ private Layout getButtons() {
+ buttonsForm = new HLayout();
- installButton = new ButtonItem("install", MSG.view_remoteAgentInstall_installAgent());
- installButton.setStartRow(false);
- installButton.setEndRow(false);
- installButton.setRedrawOnChange(true);
+ installButton = new EnhancedIButton(MSG.view_remoteAgentInstall_installAgent());
+ installButton.setExtraSpace(10);
installButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -203,14 +204,13 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- startButton = new ButtonItem("start", MSG.view_remoteAgentInstall_startAgent());
- startButton.setStartRow(false);
- startButton.setEndRow(false);
+ startButton = new EnhancedIButton(MSG.view_remoteAgentInstall_startAgent());
// startButton.setShowIfCondition(new FormItemIfFunction() {
// public boolean execute(FormItem formItem, Object o, DynamicForm dynamicForm) {
// return form.getValue("agentStatus") != null && !"Agent Not Installed".equals(form.getValue("agentStatus"));
// }
// });
+ startButton.setExtraSpace(10);
startButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -219,9 +219,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- stopButton = new ButtonItem("stop", MSG.view_remoteAgentInstall_stopAgent());
- stopButton.setStartRow(false);
- stopButton.setEndRow(true);
+ stopButton = new EnhancedIButton(MSG.view_remoteAgentInstall_stopAgent());
+ stopButton.setExtraSpace(10);
stopButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -230,7 +229,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- buttonsForm.setFields(buttonsHeader, spacerItem, installButton, startButton, stopButton);
+ buttonsForm.setMembers(installButton, startButton, stopButton);
return buttonsForm;
}
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
index 0d731ab..66fc511 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
@@ -1865,7 +1865,7 @@ view_remoteAgentInstall_installInfo = Agent Installation Information
view_remoteAgentInstall_installPath = Agent Install Path
view_remoteAgentInstall_owner = Owner
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
index b4ba1e4..6c41b06 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
@@ -1878,7 +1878,7 @@ view_remoteAgentInstall_installInfo = Informace o instalaci agenta
view_remoteAgentInstall_installPath = Instalační cesta k agentovi
view_remoteAgentInstall_owner = Vlastník
view_remoteAgentInstall_promptHost = Hostitel, kde je, nebo kam bude, agent nainstalován
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = Přihlašovací údaje použité pro autentizaci uživatele přes SSH
view_remoteAgentInstall_promptPort = Port na němž naslouchá SSH. Pokud není specifikováno použije se 22
view_remoteAgentInstall_promptUser = Jméno uživatele jehož přihlašovací údaje jsou předány hostiteli přes SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
index 016b160..7094d93 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
@@ -1680,7 +1680,7 @@ view_remoteAgentInstall_installInfo = Informationen zur Agent-Installation
view_remoteAgentInstall_installPath = Pfad der Agent-Installation
view_remoteAgentInstall_owner = Eigentümer
##view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
##view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
##view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
##view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
index f832c7d..07cebd4 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
@@ -1534,6 +1534,7 @@ view_remoteAgentInstall_installInfo = 에이전트 설치 정보
view_remoteAgentInstall_installPath = 에이전트 설치 경로
view_remoteAgentInstall_owner = 소유자
view_remoteAgentInstall_promptHost = 에이전트가 설치되어 있거나 앞으로 설치되는 호스트
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = SSH를 통해 호스트의 사용자를 인증하는데 사용되는 인증
view_remoteAgentInstall_promptUser = SSH를 통해 호스트로 전달되는 인증을 가진 사용자의 이름
view_remoteAgentInstall_result = 결과
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
index f354bd8..929f1ef 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
@@ -1816,7 +1816,7 @@
#view_remoteAgentInstall_installPath = Agent Install Path
#view_remoteAgentInstall_owner = Owner
#view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
#view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
#view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
#view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
index e19f5f2..e9bd625 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
@@ -1850,7 +1850,7 @@ view_remoteAgentInstall_installInfo = \u4ee3\u7406\u5b89\u88c5\u4fe1\u606f
view_remoteAgentInstall_installPath = \u4ee3\u7406\u5b89\u88c5\u8def\u5f84
view_remoteAgentInstall_owner = \u6240\u6709\u8005
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
commit 011d52166dce0226ef0385958e39c565aa4fa9b8
Author: Stefan Negrea <snegrea(a)redhat.com>
Date: Thu Mar 28 08:12:21 2013 -0500
[BZ 923458] Dependency tree output after all the changes that went in for the past week. Adjusted a few depedencies to reduce the diffs between pre&post updates.
diff --git a/maven.dependency.tree b/maven.dependency.tree
index 24ead5b..1d71ab2 100644
--- a/maven.dependency.tree
+++ b/maven.dependency.tree
@@ -175,7 +175,7 @@
[INFO]
[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ test-utils ---
[INFO] org.rhq:test-utils:jar:4.7.0-SNAPSHOT
-[INFO] +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
[INFO] +- javax.transaction:jta:jar:1.1:compile
[INFO] +- org.testng:testng:jar:6.5.2:compile
[INFO] | +- junit:junit:jar:4.10:compile
@@ -188,8 +188,8 @@
[INFO] +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] +- org.unitils:unitils-dbunit:jar:3.1:compile
[INFO] | +- org.unitils:unitils-core:jar:3.1:compile
-[INFO] | | +- commons-lang:commons-lang:jar:2.3:compile
-[INFO] | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | +- commons-lang:commons-lang:jar:2.4:compile (version managed from 2.3)
+[INFO] | | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
[INFO] | | \- ognl:ognl:jar:2.6.9:compile
[INFO] | +- org.unitils:unitils-database:jar:3.1:compile
[INFO] | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
@@ -247,7 +247,6 @@
[INFO] +- jdom:jdom:jar:1.0:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -255,8 +254,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -277,7 +276,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -289,7 +289,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -369,7 +369,7 @@
[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
-[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
[INFO] +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
[INFO] +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
@@ -377,7 +377,6 @@
[INFO] +- org.jboss.as:jboss-as-dist:zip:7.1.1.Final:test
[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:test
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -385,7 +384,7 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -405,7 +404,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -415,7 +415,6 @@
[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:test
-[INFO] +- net.sourceforge.jtds:jtds:jar:1.2.2:test
[INFO] +- org.jboss.spec:jboss-javaee-6.0:pom:3.0.0.Final:provided
[INFO] | +- javax.activation:activation:jar:1.1:provided
[INFO] | +- javax.enterprise:cdi-api:jar:1.0-SP4:provided
@@ -498,12 +497,11 @@
[INFO] +- antlr:antlr:jar:2.7.7:test
[INFO] +- cglib:cglib-nodep:jar:2.1_3:test
[INFO] +- commons-io:commons-io:jar:1.4:test
-[INFO] +- commons-collections:commons-collections:jar:3.2:test
+[INFO] +- commons-collections:commons-collections:jar:3.2.1:test
[INFO] +- commons-codec:commons-codec:jar:1.4:test
[INFO] +- dom4j:dom4j:jar:1.6.1-jboss:test
[INFO] | \- xml-apis:xml-apis:jar:1.0.b2:test
[INFO] +- oswego-concurrent:concurrent:jar:1.3.4:test
-[INFO] +- trove:trove:jar:1.0.2:test
[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test
[INFO] +- org.jboss.as:jboss-as-arquillian-container-managed:jar:7.1.1.Final:test
[INFO] | +- org.jboss.as:jboss-as-arquillian-common:jar:7.1.1.Final:test
@@ -580,7 +578,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -649,7 +647,6 @@
[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-common-drift ---
[INFO] org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -657,8 +654,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -679,7 +676,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -695,7 +693,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -748,7 +746,6 @@
[INFO] +- org.hyperic:sigar:jar:1.6.5.132-5:compile
[INFO] +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -756,8 +753,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -778,7 +775,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -790,7 +788,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -813,8 +811,8 @@
[INFO] +- javax.faces:jsf-api:jar:1.2_14:provided
[INFO] +- javax.faces:jsf-impl:jar:1.2_14:provided
[INFO] +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
-[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.0:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
+[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.2:compile (version managed from 1.8.0)
[INFO] +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
[INFO] | \- commons-digester:commons-digester:jar:1.8.1:compile
[INFO] +- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
@@ -865,7 +863,8 @@
[INFO] | +- org.codehaus.plexus:plexus-utils:jar:1.4.6:compile
[INFO] | +- org.apache.maven:maven-artifact:jar:2.0.8:compile
[INFO] | \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] | \- classworlds:classworlds:jar:1.1-alpha-2:compile
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
@@ -945,8 +944,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -981,7 +980,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -1021,8 +1020,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -1057,7 +1056,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -1144,7 +1143,8 @@
[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:test
[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:test
[INFO] | \- com.sun:tools:jar:1.6.0:system
-[INFO] +- junit:junit:jar:4.8.1:test (scope not updated to compile)
+[INFO] +- junit:junit:jar:4.10:test (scope not updated to compile)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
@@ -1214,7 +1214,6 @@
[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
[INFO] | \- commons-io:commons-io:jar:1.4:compile
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:compile
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:compile
[INFO] | +- javax.transaction:jta:jar:1.1:compile
[INFO] | +- org.jmock:jmock:jar:2.5.1:compile
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:compile
@@ -1222,8 +1221,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:compile
[INFO] | | +- org.unitils:unitils-core:jar:3.1:compile
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:compile
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:compile (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:compile
[INFO] | | +- org.unitils:unitils-database:jar:3.1:compile
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
@@ -1244,7 +1243,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:compile
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:compile
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from compile)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:compile
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:compile
[INFO] | | +- org.easymock:easymock:jar:2.3:compile
@@ -1317,7 +1317,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -1355,15 +1355,14 @@
[INFO] | | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
[INFO] | | \- commons-io:commons-io:jar:1.4:compile
[INFO] | +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- javax.persistence:persistence-api:jar:1.0:compile
[INFO] | | +- javax.transaction:jta:jar:1.1:compile
[INFO] | | +- org.jmock:jmock:jar:2.5.1:compile
[INFO] | | | \- org.hamcrest:hamcrest-library:jar:1.1:compile
[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | | +- org.unitils:unitils-dbunit:jar:3.1:compile
[INFO] | | | +- org.unitils:unitils-core:jar:3.1:compile
-[INFO] | | | | +- commons-lang:commons-lang:jar:2.3:compile
-[INFO] | | | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | | | +- commons-lang:commons-lang:jar:2.4:compile (version managed from 2.3)
+[INFO] | | | | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
[INFO] | | | | \- ognl:ognl:jar:2.6.9:compile
[INFO] | | | +- org.unitils:unitils-database:jar:3.1:compile
[INFO] | | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
@@ -1384,7 +1383,8 @@
[INFO] | | | | \- org.springframework:spring-test:jar:2.5.2:compile
[INFO] | | | +- org.springframework:spring-context:jar:2.5.2:compile
[INFO] | | | | \- aopalliance:aopalliance:jar:1.0:compile
-[INFO] | | | \- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | | | +- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from compile)
[INFO] | | +- org.unitils:unitils-dbmaintainer:jar:3.1:compile
[INFO] | | +- org.unitils:unitils-easymock:jar:3.1:compile
[INFO] | | | +- org.easymock:easymock:jar:2.3:compile
@@ -1471,15 +1471,14 @@
[INFO] | | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
[INFO] | | \- commons-io:commons-io:jar:1.4:test
[INFO] | +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | | +- javax.transaction:jta:jar:1.1:test
[INFO] | | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | | \- org.hamcrest:hamcrest-library:jar:1.1:test
[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -1500,7 +1499,8 @@
[INFO] | | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | | +- org.easymock:easymock:jar:2.3:test
@@ -1586,7 +1586,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -1763,8 +1763,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -1799,7 +1799,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -1814,7 +1814,7 @@
[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
[INFO] | \- jdom:jdom:jar:1.0:compile
[INFO] +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] +- dom4j:dom4j:jar:1.6:compile
+[INFO] +- dom4j:dom4j:jar:1.6.1:compile
[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
@@ -1844,7 +1844,7 @@
[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
[INFO] | | \- jdom:jdom:jar:1.0:compile
[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
@@ -1864,7 +1864,8 @@
[INFO] | \- commons-io:commons-io:jar:1.4:compile
[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
[INFO] +- jline:jline:jar:0.9.94:compile
-[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] | \- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
@@ -1885,7 +1886,7 @@
[INFO] org.rhq:rhq-agent-plugin:jar:4.7.0-SNAPSHOT
[INFO] +- org.rhq:rhq-enterprise-agent:jar:4.7.0-SNAPSHOT:provided
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
-[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
@@ -1924,8 +1925,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -1998,8 +1999,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2034,7 +2035,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2080,8 +2081,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2156,8 +2157,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2191,7 +2192,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -2242,8 +2243,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2278,7 +2279,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2319,8 +2320,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2355,7 +2356,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2371,6 +2372,7 @@
[INFO] | +- ant:ant:jar:1.6.5:compile
[INFO] | +- jboss:jbpm:jar:3.1.1:compile
[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:compile
[INFO] | \- mc4j:org-mc4j-ems:jar:1.3:compile
[INFO] +- org.apache.commons:commons-io:jar:1.3.2:compile
[INFO] +- commons-lang:commons-lang:jar:2.4:compile
@@ -2478,10 +2480,10 @@
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.0:test (version managed from 1.8.2)
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.1:test (version managed from 3.2)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2516,7 +2518,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:3.8.2:test (version managed from 4.10)
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:1.3.0:test (version managed from 2.0b4)
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2573,8 +2575,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2609,7 +2611,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2636,7 +2638,7 @@
[INFO] | +- bsh:bsh:jar:1.3.0:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | \- jdom:jdom:jar:1.0:compile
-[INFO] +- log4j:log4j:jar:1.2.14:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
@@ -2662,7 +2664,7 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2696,7 +2698,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2745,8 +2747,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2781,7 +2783,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -2801,7 +2803,8 @@
[INFO] +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:compile
[INFO] | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:compile
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] | \- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] +- commons-codec:commons-codec:jar:1.4:compile
[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:test
[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:test
@@ -2889,13 +2892,12 @@
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
-[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -2945,7 +2947,7 @@
[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
[INFO] | | \- jdom:jdom:jar:1.0:provided
[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
-[INFO] | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
@@ -2979,8 +2981,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3015,7 +3017,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3035,8 +3037,9 @@
[INFO] | | +- ant:ant:jar:1.6.5:provided
[INFO] | | +- jboss:jbpm:jar:3.1.1:provided
[INFO] | | \- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:provided
[INFO] | +- org.apache.commons:commons-io:jar:1.3.2:provided
-[INFO] | +- commons-lang:commons-lang:jar:2.1:provided (version managed from 2.4)
+[INFO] | +- commons-lang:commons-lang:jar:2.4:provided
[INFO] | \- gnu-getopt:getopt:jar:1.0.13:provided
[INFO] +- org.jboss.integration:jboss-profileservice-spi:jar:5.1.0.SP1:provided
[INFO] | +- org.jboss.man:jboss-managed:jar:2.1.1.GA:provided (version managed from 2.1.0.SP1)
@@ -3076,7 +3079,8 @@
[INFO] | | +- org.jboss.deployers:jboss-deployers-core:jar:2.0.9.GA:test
[INFO] | | \- org.jboss.deployers:jboss-deployers-client:jar:2.0.9.GA:test
[INFO] | +- apache-xerces:xml-apis:jar:2.9.1:test
-[INFO] | +- junit:junit:jar:3.8.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.jboss.jbossas:jboss-as-j2se:jar:6.0.0.M1:test (version managed from 5.1.0.CR1)
[INFO] | | \- org.jboss.integration:jboss-classloading-spi:jar:5.1.0.SP1:test
[INFO] | +- org.jboss.jbossas:jboss-as-system-jmx:jar:6.0.0.M1:test (version managed from 5.1.0.CR1)
@@ -3091,7 +3095,7 @@
[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
[INFO] +- org.jboss.security:jboss-security-spi:jar:2.0.4.SP2:test
[INFO] +- org.jboss.javaee:jboss-javaee:jar:5.2.0.Beta1:test
-[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss:test
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:test
[INFO] +- org.jboss.jbossas:jboss-as-server:jar:client:6.0.0.M1:test
[INFO] | +- sun-jaxb:jaxb-api:jar:2.1.9-brew:test
[INFO] | +- org.jboss.jbossas:jboss-as-deployment:jar:6.0.0.M1:test
@@ -3148,11 +3152,11 @@
[INFO] | \- org.jboss.deployers:jboss-deployers-spi:jar:2.0.9.GA:test
[INFO] +- org.jboss.ejb3:jboss-ejb3-core:jar:client:1.1.21:test
[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:test
-[INFO] | | +- commons-collections:commons-collections:jar:3.1:test (version managed from 3.2.1)
+[INFO] | | +- commons-collections:commons-collections:jar:3.2.1:test
[INFO] | | +- antlr:antlr:jar:2.7.7:test
[INFO] | | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:test
[INFO] | | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:test
-[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:test
+[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:test
[INFO] | | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:test
[INFO] | +- org.hibernate:hibernate-annotations:jar:3.5.6-Final:test
[INFO] | | +- org.hibernate:hibernate-commons-annotations:jar:3.2.0.Beta1:test (version managed from 3.2.0.Final)
@@ -3188,8 +3192,8 @@
[INFO] +- org.jboss.security:jbosssx-client:jar:2.0.4.SP2:test
[INFO] +- org.jboss.aspects:jboss-security-aspects:jar:1.0.1:test
[INFO] +- org.jboss.aop:jboss-aop:jar:client:2.1.6.GA:test
-[INFO] | +- org.apache.ant:ant:jar:1.7.1:test
-[INFO] | | \- org.apache.ant:ant-launcher:jar:1.7.1:test
+[INFO] | +- org.apache.ant:ant:jar:1.8.0:test
+[INFO] | | \- org.apache.ant:ant-launcher:jar:1.8.0:test
[INFO] | \- qdox:qdox:jar:1.6.1:test
[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:test
[INFO] +- org.jboss:jboss-reflect:jar:2.0.2.GA:test
@@ -3222,9 +3226,8 @@
[INFO] | \- commons-io:commons-io:jar:1.4:test
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
-[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.0:test (version managed from 1.8.2)
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
@@ -3298,8 +3301,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3334,7 +3337,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3374,8 +3377,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3410,7 +3413,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3448,8 +3451,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3484,7 +3487,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3522,8 +3525,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3558,7 +3561,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3598,8 +3601,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3634,7 +3637,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3678,8 +3681,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3714,7 +3717,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3757,8 +3760,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3793,7 +3796,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -3836,8 +3839,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3872,7 +3875,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -3915,8 +3918,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -3951,7 +3954,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -3995,8 +3998,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4031,7 +4034,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -4075,8 +4078,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4111,7 +4114,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -4125,10 +4128,10 @@
[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-netservices-plugin ---
[INFO] org.rhq:rhq-netservices-plugin:jar:4.7.0-SNAPSHOT
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] | \- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] +- commons-codec:commons-codec:jar:1.4:compile
[INFO] +- org.mockito:mockito-core:jar:1.9.5:test
-[INFO] | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | \- org.objenesis:objenesis:jar:1.0:test
[INFO] +- org.eclipse.jetty.aggregate:jetty-all:jar:8.1.8.v20121106:test
[INFO] | \- org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016:test
@@ -4157,8 +4160,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4235,8 +4238,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4271,7 +4274,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -4315,8 +4318,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4351,7 +4354,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -4395,8 +4398,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4431,7 +4434,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
@@ -4474,8 +4477,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4510,7 +4513,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4549,8 +4552,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4585,7 +4588,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4625,8 +4628,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4660,7 +4663,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4702,8 +4705,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4737,7 +4740,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4776,8 +4779,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4812,7 +4815,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4852,8 +4855,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4888,7 +4891,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -4927,8 +4930,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -4963,7 +4966,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5002,8 +5005,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5038,7 +5041,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5077,8 +5080,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5113,7 +5116,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5153,8 +5156,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5188,7 +5191,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5228,8 +5231,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5263,7 +5266,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5303,8 +5306,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5339,7 +5342,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5377,8 +5380,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5413,7 +5416,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5452,8 +5455,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5487,7 +5490,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5520,7 +5523,7 @@
[INFO] | +- com.ning:compress-lzf:jar:0.8.4:compile
[INFO] | +- com.google.guava:guava:jar:r08:compile
[INFO] | +- commons-cli:commons-cli:jar:1.1:compile
-[INFO] | +- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.3:compile
[INFO] | +- org.antlr:antlr:jar:3.2:compile
@@ -5543,7 +5546,7 @@
[INFO] | +- org.apache.cassandra:cassandra-thrift:jar:1.1.5:compile
[INFO] | \- com.github.stephenc:jamm:jar:0.2.5:compile
[INFO] +- org.apache.thrift:libthrift:jar:0.7.0:compile
-[INFO] | +- javax.servlet:servlet-api:jar:2.5:compile
+[INFO] | +- javax.servlet:servlet-api:jar:2.4:compile (version managed from 2.5)
[INFO] | \- org.apache.httpcomponents:httpclient:jar:4.0.1:compile
[INFO] | \- org.apache.httpcomponents:httpcore:jar:4.0.1:compile
[INFO] +- org.hectorclient:hector-core:jar:1.1-1:compile
@@ -5628,7 +5631,7 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5660,7 +5663,7 @@
[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- log4j:log4j:jar:1.2.16:provided (scope not updated to compile)
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | \- com.beust:jcommander:jar:1.12:test
[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
@@ -5697,8 +5700,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -5733,7 +5736,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5761,7 +5764,7 @@
[INFO]
[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rtfilter ---
[INFO] org.rhq.helpers:rhq-rtfilter:jar:4.7.0-SNAPSHOT
-[INFO] +- javax.servlet:servlet-api:jar:2.3:provided
+[INFO] +- javax.servlet:servlet-api:jar:2.4:provided
[INFO] +- commons-logging:commons-logging:jar:1.1.1:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
@@ -5825,7 +5828,7 @@
[INFO] | | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:provided
[INFO] | \- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
[INFO] +- org.jboss.as:jboss-as-web:jar:7.1.1.Final:provided
-[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.2.Final:provided (version managed from 2.0.1.Final)
+[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.1.Final:provided
[INFO] | +- com.sun.faces:jsf-impl:jar:2.1.7-jbossorg-2:provided
[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
[INFO] | +- org.jboss.as:jboss-as-clustering-web-spi:jar:7.1.1.Final:provided
@@ -5852,19 +5855,19 @@
[INFO] | | | | +- org.jboss.netty:netty:jar:3.2.5.Final:provided
[INFO] | | | | \- org.jboss.ws:jbossws-api:jar:1.0.0.CR1:provided
[INFO] | | | +- org.jboss.jbossts:jbossjts-integration:jar:4.16.2.Final:provided
-[INFO] | | | \- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
+[INFO] | | | \- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.0.Final:provided
[INFO] | | +- org.jboss.security:jboss-negotiation-extras:jar:2.2.0.SP1:provided
[INFO] | | | \- org.jboss.security:jboss-negotiation-common:jar:2.2.0.SP1:provided
[INFO] | | +- org.jboss.security:jboss-negotiation-spnego:jar:2.2.0.SP1:provided
[INFO] | | +- org.picketbox:picketbox:jar:4.0.7.Final:provided
-[INFO] | | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.2.Final:provided (version managed from 1.0.1.Final)
+[INFO] | | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.1.Final:provided
[INFO] | | +- org.picketbox:picketbox-infinispan:jar:4.0.7.Final:provided
[INFO] | | \- org.picketbox:picketbox-commons:jar:1.0.0.final:provided
[INFO] | +- org.jboss.metadata:jboss-metadata-web:jar:7.0.1.Final:provided
-[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
-[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.1.Final:provided
-[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
-[INFO] | | \- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.0.Final:provided
+[INFO] | | \- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.0.Final:provided
[INFO] | +- org.jboss.web:jasper-jdt:jar:7.0.3.Final:provided
[INFO] | \- org.jboss.web:jbossweb:jar:7.0.13.Final:provided
[INFO] +- org.rhq.helpers:rhq-rtfilter:jar:4.7.0-SNAPSHOT:provided
@@ -5943,7 +5946,7 @@
[INFO] +- org.slf4j:slf4j-jcl:jar:1.5.6:runtime
[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:runtime (scope not updated to compile)
[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:runtime
-[INFO] +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
[INFO] +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
[INFO] | | \- jdom:jdom:jar:1.0:compile
@@ -5967,16 +5970,16 @@
[INFO] | | \- javassist:javassist:jar:3.12.1.GA:compile
[INFO] | +- javax.annotation:jsr250-api:jar:1.0:compile
[INFO] | +- javax.activation:activation:jar:1.1:compile
-[INFO] | +- commons-httpclient:commons-httpclient:jar:3.1:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile (version managed from 3.1)
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:compile
[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:compile
[INFO] | \- net.jcip:jcip-annotations:jar:1.0:compile
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
-[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -5993,7 +5996,7 @@
[INFO] | | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
[INFO] | | | \- jdom:jdom:jar:1.0:provided
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
-[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
@@ -6017,8 +6020,8 @@
[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
[INFO] | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
-[INFO] +- org.apache.ant:ant:jar:1.7.1:provided
-[INFO] +- org.apache.ant:ant-launcher:jar:1.7.1:provided
+[INFO] +- org.apache.ant:ant:jar:1.8.0:provided
+[INFO] +- org.apache.ant:ant-launcher:jar:1.8.0:provided
[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
@@ -6065,7 +6068,7 @@
[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:provided
[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
-[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided (version managed from 3.1.0.CR2)
[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:provided
[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
@@ -6088,7 +6091,7 @@
[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
[INFO] | | \- jdom:jdom:jar:1.0:compile
[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
@@ -6166,10 +6169,8 @@
[INFO] | +- org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:jar:1.0.2.Final:provided
[INFO] | \- org.jboss.spec.javax.xml.ws:jboss-jaxws-api_2.2_spec:jar:2.0.1.Final:provided
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
-[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
@@ -6196,6 +6197,8 @@
[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
@@ -6208,11 +6211,11 @@
[INFO] | +- org.codehaus.woodstox:woodstox-core-asl:jar:4.1.1:provided
[INFO] | +- org.codehaus.woodstox:stax2-api:jar:3.1.1:provided
[INFO] | \- org.rhq.helpers:rhq-pluginAnnotations:jar:3.0.4:provided
-[INFO] +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | +- junit:junit:jar:3.8.1:compile
-[INFO] | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] +- commons-lang:commons-lang:jar:2.4:compile
[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
@@ -6251,11 +6254,9 @@
[INFO] | \- org.jboss.ws:jbossws-api:jar:1.0.0.CR1:provided
[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:provided
[INFO] +- org.opensymphony.quartz:quartz-oracle:jar:1.6.5:provided
-[INFO] +- org.easymock:easymockclassextension:jar:2.2:test
-[INFO] | +- org.easymock:easymock:jar:2.2:test
-[INFO] | \- cglib:cglib-nodep:jar:2.1_3:test
+[INFO] +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] +- org.snmp4j:snmp4j:jar:1.8.2:compile
-[INFO] +- oswego-concurrent:concurrent:jar:1.3.4:compile
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] +- rss4j:rss4j:jar:0.92-on.2:compile
[INFO] +- tomcat:catalina:jar:5.5.20:provided
[INFO] +- tomcat:tomcat-jk:jar:4.1.31:provided
@@ -6274,6 +6275,7 @@
[INFO] | +- org.codehaus.jackson:jackson-jaxrs:jar:1.8.5:provided
[INFO] | \- org.codehaus.jackson:jackson-xc:jar:1.8.5:provided
[INFO] +- org.jboss.resteasy:resteasy-links:jar:2.3.4.Final:provided
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:provided
[INFO] | \- org.jboss.el:jboss-el:jar:1.0_02.CR4:provided
[INFO] | \- javax.el:el-api:jar:1.0:provided
[INFO] +- org.jboss.resteasy:resteasy-yaml-provider:jar:2.3.4.Final:provided
@@ -6529,7 +6531,7 @@
[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
-[INFO] +- log4j:log4j:jar:1.2.14:compile
+[INFO] +- log4j:log4j:jar:1.2.16:compile
[INFO] +- org.testng:testng:jar:6.5.2:test
[INFO] | +- junit:junit:jar:4.10:test
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -6566,7 +6568,8 @@
[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- jline:jline:jar:0.9.94:compile
-[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] | \- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] +- org.testng:testng:jar:6.5.2:compile
[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
[INFO] | +- com.beust:jcommander:jar:1.12:compile
@@ -6606,7 +6609,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
-[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
@@ -6623,14 +6626,14 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:provided
-[INFO] | +- commons-collections:commons-collections:jar:3.2:provided
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:provided
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:provided (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:provided
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:provided
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:provided
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
@@ -6692,24 +6695,24 @@
[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
[INFO] | \- jdom:jdom:jar:1.0:provided
[INFO] +- com.sun.facelets:jsf-facelets:jar:1.1.15.B1:compile
-[INFO] +- commons-collections:commons-collections:jar:3.2:compile
-[INFO] +- commons-dbcp:commons-dbcp:jar:1.2.1:compile
-[INFO] | +- commons-pool:commons-pool:jar:1.2:compile
-[INFO] | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] +- commons-collections:commons-collections:jar:3.2.1:compile
+[INFO] +- commons-dbcp:commons-dbcp:jar:1.2.2:compile
+[INFO] | \- commons-pool:commons-pool:jar:1.3:compile
[INFO] +- commons-el:commons-el:jar:1.0:compile
[INFO] +- commons-fileupload:commons-fileupload:jar:1.2:compile
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
-[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.4:provided (version managed from 1.2)
[INFO] +- commons-io:commons-io:jar:1.3.1:compile
-[INFO] +- commons-logging:commons-logging:jar:1.0.4:provided (scope not updated to compile)
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:provided
[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
[INFO] | | \- antlr:antlr:jar:2.7.7:provided
[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
-[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- javax.el:el-api:jar:1.0:provided
@@ -6719,12 +6722,13 @@
[INFO] +- javax.faces:jsf-impl:jar:1.2_14:provided
[INFO] +- org.apache.geronimo.specs:geronimo-javamail_1.3.1_spec:jar:1.3:provided
[INFO] +- javax.servlet:jstl:jar:1.1.2:compile
-[INFO] +- junit:junit:jar:3.8.2:compile
+[INFO] +- junit:junit:jar:4.10:compile
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:compile
[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:provided
[INFO] +- org.opensymphony.quartz:quartz-oracle:jar:1.6.5:provided
[INFO] +- org.jvnet:inflector:jar:0.7.0:compile
[INFO] +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
-[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.0:compile
+[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.2:compile (version managed from 1.8.0)
[INFO] +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
[INFO] | \- commons-digester:commons-digester:jar:1.8.1:compile
[INFO] +- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
@@ -6736,12 +6740,9 @@
[INFO] | \- hsqldb:hsqldb:jar:1.7.1:compile
[INFO] +- taglibs:standard:jar:1.1.2:compile
[INFO] +- xalan:xalan:jar:2.5.1:provided (scope not updated to compile)
-[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided (scope not updated to compile)
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided
[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
-[INFO] +- org.codehaus.groovy:groovy-all:jar:1.6.4:compile
-[INFO] | +- org.apache.ant:ant:jar:1.7.1:compile
-[INFO] | | \- org.apache.ant:ant-launcher:jar:1.7.1:compile
-[INFO] | \- jline:jline:jar:0.9.94:compile
+[INFO] +- org.codehaus.groovy:groovy-all:jar:1.7.5:compile
[INFO] +- log4j:log4j:jar:1.2.16:provided (scope not updated to compile)
[INFO] +- org.testng:testng:jar:6.5.2:test
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
@@ -6773,8 +6774,8 @@
[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
[INFO] +- org.rhq:rhq-core-gui:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
-[INFO] | | +- commons-collections:commons-collections:jar:3.2:compile
-[INFO] | | \- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
+[INFO] | | \- commons-beanutils:commons-beanutils:jar:1.8.2:compile (version managed from 1.8.0)
[INFO] | +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
[INFO] | | \- commons-digester:commons-digester:jar:1.8.1:compile
[INFO] | \- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
@@ -6813,7 +6814,7 @@
[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
[INFO] | | \- antlr:antlr:jar:2.7.7:provided
[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
-[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:provided
[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
[INFO] +- javax.servlet:servlet-api:jar:2.4:provided
@@ -6821,9 +6822,10 @@
[INFO] +- commons-codec:commons-codec:jar:1.4:compile
[INFO] +- commons-fileupload:commons-fileupload:jar:1.2:compile
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
-[INFO] | \- junit:junit:jar:3.8.1:provided
+[INFO] | \- junit:junit:jar:4.10:provided (version managed from 3.8.1)
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:provided
[INFO] +- commons-io:commons-io:jar:1.3.1:compile
-[INFO] +- commons-logging:commons-logging:jar:1.0.4:provided (scope not updated to compile)
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] +- commons-lang:commons-lang:jar:2.4:compile
[INFO] +- log4j:log4j:jar:1.2.16:provided
@@ -6842,7 +6844,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
-[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
@@ -6858,14 +6860,14 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:provided
-[INFO] | +- commons-collections:commons-collections:jar:3.2:provided
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:provided
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:provided (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:provided
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:provided
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:provided
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
@@ -6891,7 +6893,7 @@
[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided (version managed from 3.5.6-Final)
[INFO] | | +- antlr:antlr:jar:2.7.7:provided
[INFO] | | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
-[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided (version managed from 3.1.0.CR2)
[INFO] | | +- org.javassist:javassist:jar:3.15.0-GA:provided
[INFO] | | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
[INFO] | +- org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final:provided
@@ -6961,7 +6963,7 @@
[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
[INFO] | | \- jdom:jdom:jar:1.0:provided
[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
-[INFO] | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
@@ -6990,7 +6992,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7008,15 +7010,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7051,7 +7054,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7068,15 +7071,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7103,7 +7107,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7120,15 +7124,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7151,14 +7156,15 @@
[INFO] org.rhq:rhq-serverplugin-url:jar:4.7.0-SNAPSHOT
[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided (scope not updated to compile)
-[INFO] | +- junit:junit:jar:3.8.1:provided
-[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | +- junit:junit:jar:4.10:provided (version managed from 3.8.1)
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.4:provided (version managed from 1.2)
[INFO] +- rss4j:rss4j:jar:0.92-on.2:provided (scope not updated to compile)
[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7175,12 +7181,12 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
@@ -7203,14 +7209,15 @@
[INFO] org.rhq:rhq-serverplugin-jboss-software:jar:4.7.0-SNAPSHOT
[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided (scope not updated to compile)
-[INFO] | +- junit:junit:jar:3.8.1:provided
-[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | +- junit:junit:jar:4.10:provided (version managed from 3.8.1)
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.4:provided (version managed from 1.2)
[INFO] +- rss4j:rss4j:jar:0.92-on.2:provided (scope not updated to compile)
[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7227,12 +7234,12 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
@@ -7257,7 +7264,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7275,15 +7282,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7309,7 +7317,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7327,15 +7335,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7360,7 +7369,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7378,15 +7387,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7412,7 +7422,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7430,15 +7440,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7463,7 +7474,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7481,15 +7492,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7515,7 +7527,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7533,15 +7545,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7567,7 +7580,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7585,15 +7598,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
@@ -7617,7 +7631,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7635,15 +7649,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7670,7 +7685,7 @@
[INFO] | | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
[INFO] | | | \- jdom:jdom:jar:1.0:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7688,15 +7703,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7712,7 +7728,6 @@
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
-[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
@@ -7777,7 +7792,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7795,15 +7810,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7828,7 +7844,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7846,15 +7862,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7882,7 +7899,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7900,15 +7917,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7935,7 +7953,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -7952,15 +7970,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -7989,7 +8008,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -8006,14 +8025,15 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -8050,7 +8070,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
@@ -8066,15 +8086,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -8097,7 +8118,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -8115,15 +8136,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -8148,7 +8170,7 @@
[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
@@ -8166,15 +8188,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -8207,15 +8230,16 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
-[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
-[INFO] | | +- junit:junit:jar:4.10:compile
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | | +- junit:junit:jar:4.10:compile (version managed from 3.8.1)
+[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:compile (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
@@ -8356,7 +8380,7 @@
[INFO] | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
-[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
@@ -8577,14 +8601,14 @@
[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:test
[INFO] | +- org.antlr:antlr-runtime:jar:3.2:test
[INFO] | | \- org.antlr:stringtemplate:jar:3.2:test
-[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:test
-[INFO] | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:test
-[INFO] | | \- commons-codec:commons-codec:jar:1.2:test
+[INFO] | | \- commons-codec:commons-codec:jar:1.4:test (version managed from 1.2)
[INFO] | +- commons-lang:commons-lang:jar:2.4:test
[INFO] | +- commons-validator:commons-validator:jar:1.1.4:test
[INFO] | +- gnu-getopt:getopt:jar:1.0.13:test
[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:test
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:test
[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:test
[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:test
[INFO] | +- rss4j:rss4j:jar:0.92-on.2:test
@@ -8601,7 +8625,6 @@
[INFO] | \- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:test
[INFO] +- org.rhq:rhq-core-client-api:test-jar:tests:4.7.0-SNAPSHOT:test
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -8621,7 +8644,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -8680,143 +8704,143 @@
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
-[INFO] RHQ ............................................... SUCCESS [1.046s]
-[INFO] RHQ Modules ....................................... SUCCESS [0.039s]
-[INFO] RHQ Test Utils .................................... SUCCESS [0.669s]
-[INFO] RHQ Core Modules .................................. SUCCESS [0.051s]
-[INFO] RHQ Utilities ..................................... SUCCESS [1.006s]
-[INFO] RHQ Native System API ............................. SUCCESS [0.384s]
-[INFO] RHQ Enterprise Agent-Server Communications Annotations API SUCCESS [0.039s]
-[INFO] RHQ Database Utilities ............................ SUCCESS [0.839s]
-[INFO] RHQ Domain Model .................................. SUCCESS [3.727s]
-[INFO] RHQ Plugin API .................................... SUCCESS [0.226s]
-[INFO] RHQ Common Plugin Libraries ....................... SUCCESS [0.010s]
-[INFO] RHQ Drift Common Library .......................... SUCCESS [0.056s]
-[INFO] RHQ Client API .................................... SUCCESS [0.111s]
-[INFO] RHQ Plugin Container .............................. SUCCESS [0.149s]
-[INFO] RHQ Shared GUI Classes ............................ SUCCESS [0.097s]
-[INFO] RHQ Plugin Validator Maven 2 Plugin ............... SUCCESS [0.087s]
+[INFO] RHQ ............................................... SUCCESS [1.108s]
+[INFO] RHQ Modules ....................................... SUCCESS [0.034s]
+[INFO] RHQ Test Utils .................................... SUCCESS [0.673s]
+[INFO] RHQ Core Modules .................................. SUCCESS [0.031s]
+[INFO] RHQ Utilities ..................................... SUCCESS [0.550s]
+[INFO] RHQ Native System API ............................. SUCCESS [0.322s]
+[INFO] RHQ Enterprise Agent-Server Communications Annotations API SUCCESS [0.021s]
+[INFO] RHQ Database Utilities ............................ SUCCESS [0.643s]
+[INFO] RHQ Domain Model .................................. SUCCESS [3.345s]
+[INFO] RHQ Plugin API .................................... SUCCESS [0.171s]
+[INFO] RHQ Common Plugin Libraries ....................... SUCCESS [0.013s]
+[INFO] RHQ Drift Common Library .......................... SUCCESS [0.072s]
+[INFO] RHQ Client API .................................... SUCCESS [0.097s]
+[INFO] RHQ Plugin Container .............................. SUCCESS [0.180s]
+[INFO] RHQ Shared GUI Classes ............................ SUCCESS [0.073s]
+[INFO] RHQ Plugin Validator Maven 2 Plugin ............... SUCCESS [0.191s]
[INFO] RHQ Arquillian Integration Modules ................ SUCCESS [0.011s]
-[INFO] RHQ Agent Plugin Archive .......................... SUCCESS [0.033s]
-[INFO] RHQ Plugins ....................................... SUCCESS [0.302s]
-[INFO] RHQ JMX Plugin .................................... SUCCESS [0.057s]
-[INFO] RHQ Arquillian Plugin Container ................... SUCCESS [0.681s]
-[INFO] RHQ Arquillian Suite Extension .................... SUCCESS [0.037s]
-[INFO] RHQ Plugin Test API ............................... SUCCESS [0.289s]
-[INFO] RHQ Plugin Test Util .............................. SUCCESS [0.213s]
-[INFO] RHQ Plugin Container Integration Tests ............ SUCCESS [0.641s]
-[INFO] RHQ JBossAS 4/5 Plugins Common Library ............ SUCCESS [0.030s]
-[INFO] RHQ File Template Bundle Plugins Common Library ... SUCCESS [0.064s]
-[INFO] RHQ Ant Bundle Plugins Common Library ............. SUCCESS [0.078s]
-[INFO] RHQ JBoss AS DMR Client ........................... SUCCESS [0.478s]
-[INFO] RHQ Platform Plugin ............................... SUCCESS [0.072s]
-[INFO] RHQ Enterprise Agent-Server Communications Layer .. SUCCESS [0.040s]
-[INFO] RHQ Enterprise Agent .............................. SUCCESS [0.358s]
-[INFO] RHQ RHQ-Agent Plugin .............................. SUCCESS [0.366s]
-[INFO] RHQ No-op Plugin .................................. SUCCESS [0.078s]
-[INFO] RHQ Augeas Plugin ................................. SUCCESS [0.488s]
-[INFO] RHQ Apache Plugin ................................. SUCCESS [0.319s]
-[INFO] RHQ Tomcat Plugin ................................. SUCCESS [0.068s]
-[INFO] RHQ Hibernate Plugin .............................. SUCCESS [0.060s]
-[INFO] RHQ JBossAS 5.x/6.x Plugin ........................ SUCCESS [0.367s]
-[INFO] RHQ JBossAS 3.2.x/4.x Plugin ...................... SUCCESS [0.070s]
-[INFO] RHQ mod_cluster Plugin ............................ SUCCESS [0.272s]
-[INFO] RHQ JBossCache 4.x Plugin ......................... SUCCESS [0.065s]
-[INFO] RHQ JBossAS 7.x Plugin ............................ SUCCESS [0.191s]
-[INFO] RHQ Server Plugin ................................. SUCCESS [0.086s]
-[INFO] RHQ JBossCache 3.x Plugin ......................... SUCCESS [3.096s]
-[INFO] RHQ Database Plugin ............................... SUCCESS [0.051s]
-[INFO] RHQ Postgres Plugin ............................... SUCCESS [0.063s]
-[INFO] RHQ Script Plugin ................................. SUCCESS [0.057s]
-[INFO] RHQ IIS Plugin .................................... SUCCESS [0.056s]
-[INFO] RHQ File Template Bundle Plugin ................... SUCCESS [0.078s]
-[INFO] RHQ Ant Bundle Plugin ............................. SUCCESS [0.095s]
-[INFO] RHQ Augeas-based Cron Plugin ...................... SUCCESS [0.066s]
-[INFO] RHQ GRUB Plugin ................................... SUCCESS [0.112s]
-[INFO] RHQ Hosts File Plugin ............................. SUCCESS [0.064s]
-[INFO] RHQ Cobbler File Plugin ........................... SUCCESS [0.067s]
-[INFO] RHQ Augeas-based Sudoers Plugin ................... SUCCESS [0.064s]
-[INFO] RHQ Network Services Plugin ....................... SUCCESS [0.097s]
-[INFO] RHQ Augeas-based Samba Plugin ..................... SUCCESS [0.073s]
-[INFO] RHQ Augeas-based Postfix Plugin ................... SUCCESS [0.065s]
-[INFO] RHQ Aliases File Plugin ........................... SUCCESS [0.054s]
-[INFO] RHQ SSHD Plugin ................................... SUCCESS [0.040s]
-[INFO] RHQ Byteman Plugin ................................ SUCCESS [0.049s]
-[INFO] RHQ IRC Server Plugin ............................. SUCCESS [0.053s]
-[INFO] RHQ Hadoop Plugin ................................. SUCCESS [0.059s]
-[INFO] RHQ Hudson Plugin ................................. SUCCESS [0.059s]
-[INFO] RHQ MySql Plugin .................................. SUCCESS [0.051s]
-[INFO] RHQ Oracle Plugin ................................. SUCCESS [0.044s]
-[INFO] RHQ Performance Test Plugin ....................... SUCCESS [0.042s]
-[INFO] RHQ Script2 Plugin ................................ SUCCESS [0.063s]
-[INFO] RHQ SnmpTrapd Plugin .............................. SUCCESS [0.063s]
-[INFO] RHQ Twitter Plugin ................................ SUCCESS [0.059s]
-[INFO] RHQ Virtualization Plugin ......................... SUCCESS [0.057s]
-[INFO] RHQ Kickstart Plugin .............................. SUCCESS [0.057s]
-[INFO] RHQ pattern Plugin ................................ SUCCESS [1.168s]
-[INFO] RHQ Cassandra Plugin .............................. SUCCESS [0.354s]
-[INFO] RHQ Validate All Plugins .......................... SUCCESS [0.044s]
+[INFO] RHQ Agent Plugin Archive .......................... SUCCESS [0.029s]
+[INFO] RHQ Plugins ....................................... SUCCESS [0.171s]
+[INFO] RHQ JMX Plugin .................................... SUCCESS [0.082s]
+[INFO] RHQ Arquillian Plugin Container ................... SUCCESS [0.781s]
+[INFO] RHQ Arquillian Suite Extension .................... SUCCESS [0.036s]
+[INFO] RHQ Plugin Test API ............................... SUCCESS [0.319s]
+[INFO] RHQ Plugin Test Util .............................. SUCCESS [0.190s]
+[INFO] RHQ Plugin Container Integration Tests ............ SUCCESS [0.888s]
+[INFO] RHQ JBossAS 4/5 Plugins Common Library ............ SUCCESS [0.024s]
+[INFO] RHQ File Template Bundle Plugins Common Library ... SUCCESS [0.039s]
+[INFO] RHQ Ant Bundle Plugins Common Library ............. SUCCESS [0.047s]
+[INFO] RHQ JBoss AS DMR Client ........................... SUCCESS [0.392s]
+[INFO] RHQ Platform Plugin ............................... SUCCESS [0.066s]
+[INFO] RHQ Enterprise Agent-Server Communications Layer .. SUCCESS [0.039s]
+[INFO] RHQ Enterprise Agent .............................. SUCCESS [0.238s]
+[INFO] RHQ RHQ-Agent Plugin .............................. SUCCESS [0.219s]
+[INFO] RHQ No-op Plugin .................................. SUCCESS [0.065s]
+[INFO] RHQ Augeas Plugin ................................. SUCCESS [0.400s]
+[INFO] RHQ Apache Plugin ................................. SUCCESS [0.281s]
+[INFO] RHQ Tomcat Plugin ................................. SUCCESS [0.066s]
+[INFO] RHQ Hibernate Plugin .............................. SUCCESS [0.058s]
+[INFO] RHQ JBossAS 5.x/6.x Plugin ........................ SUCCESS [0.400s]
+[INFO] RHQ JBossAS 3.2.x/4.x Plugin ...................... SUCCESS [0.073s]
+[INFO] RHQ mod_cluster Plugin ............................ SUCCESS [0.173s]
+[INFO] RHQ JBossCache 4.x Plugin ......................... SUCCESS [0.064s]
+[INFO] RHQ JBossAS 7.x Plugin ............................ SUCCESS [0.216s]
+[INFO] RHQ Server Plugin ................................. SUCCESS [0.088s]
+[INFO] RHQ JBossCache 3.x Plugin ......................... SUCCESS [2.909s]
+[INFO] RHQ Database Plugin ............................... SUCCESS [0.059s]
+[INFO] RHQ Postgres Plugin ............................... SUCCESS [0.065s]
+[INFO] RHQ Script Plugin ................................. SUCCESS [0.050s]
+[INFO] RHQ IIS Plugin .................................... SUCCESS [0.040s]
+[INFO] RHQ File Template Bundle Plugin ................... SUCCESS [0.043s]
+[INFO] RHQ Ant Bundle Plugin ............................. SUCCESS [0.053s]
+[INFO] RHQ Augeas-based Cron Plugin ...................... SUCCESS [0.042s]
+[INFO] RHQ GRUB Plugin ................................... SUCCESS [0.035s]
+[INFO] RHQ Hosts File Plugin ............................. SUCCESS [0.050s]
+[INFO] RHQ Cobbler File Plugin ........................... SUCCESS [0.049s]
+[INFO] RHQ Augeas-based Sudoers Plugin ................... SUCCESS [0.051s]
+[INFO] RHQ Network Services Plugin ....................... SUCCESS [0.076s]
+[INFO] RHQ Augeas-based Samba Plugin ..................... SUCCESS [0.051s]
+[INFO] RHQ Augeas-based Postfix Plugin ................... SUCCESS [0.088s]
+[INFO] RHQ Aliases File Plugin ........................... SUCCESS [0.046s]
+[INFO] RHQ SSHD Plugin ................................... SUCCESS [0.043s]
+[INFO] RHQ Byteman Plugin ................................ SUCCESS [0.046s]
+[INFO] RHQ IRC Server Plugin ............................. SUCCESS [0.051s]
+[INFO] RHQ Hadoop Plugin ................................. SUCCESS [0.048s]
+[INFO] RHQ Hudson Plugin ................................. SUCCESS [0.047s]
+[INFO] RHQ MySql Plugin .................................. SUCCESS [0.044s]
+[INFO] RHQ Oracle Plugin ................................. SUCCESS [0.029s]
+[INFO] RHQ Performance Test Plugin ....................... SUCCESS [0.047s]
+[INFO] RHQ Script2 Plugin ................................ SUCCESS [0.048s]
+[INFO] RHQ SnmpTrapd Plugin .............................. SUCCESS [0.049s]
+[INFO] RHQ Twitter Plugin ................................ SUCCESS [0.033s]
+[INFO] RHQ Virtualization Plugin ......................... SUCCESS [0.035s]
+[INFO] RHQ Kickstart Plugin .............................. SUCCESS [0.030s]
+[INFO] RHQ pattern Plugin ................................ SUCCESS [0.762s]
+[INFO] RHQ Cassandra Plugin .............................. SUCCESS [0.269s]
+[INFO] RHQ Validate All Plugins .......................... SUCCESS [0.045s]
[INFO] RHQ Helpers ....................................... SUCCESS [0.007s]
-[INFO] RHQ Response-Time Filter .......................... SUCCESS [0.012s]
-[INFO] RHQ Response-Time Filter - JBoss AS7 Subsystem .... SUCCESS [0.663s]
-[INFO] bundleGen ......................................... SUCCESS [0.010s]
-[INFO] jeeGen ............................................ SUCCESS [0.011s]
-[INFO] Performance Testing Support ....................... SUCCESS [0.082s]
-[INFO] rest-docs-generator ............................... SUCCESS [0.077s]
-[INFO] RHQ Enterprise Agent Update ....................... SUCCESS [0.024s]
-[INFO] RHQ Server XML Schemas ............................ SUCCESS [0.015s]
-[INFO] RHQ Enterprise Safe Invoker ....................... SUCCESS [0.037s]
-[INFO] RHQ Enterprise Server JAR ......................... SUCCESS [1.120s]
-[INFO] RHQ Enterprise Server JBoss AS SARs ............... SUCCESS [0.241s]
-[INFO] RHQ Enterprise Server Internal Services SAR ....... SUCCESS [0.009s]
-[INFO] RHQ Enterprise Modules ............................ SUCCESS [0.008s]
+[INFO] RHQ Response-Time Filter .......................... SUCCESS [0.011s]
+[INFO] RHQ Response-Time Filter - JBoss AS7 Subsystem .... SUCCESS [0.739s]
+[INFO] bundleGen ......................................... SUCCESS [0.008s]
+[INFO] jeeGen ............................................ SUCCESS [0.012s]
+[INFO] Performance Testing Support ....................... SUCCESS [0.074s]
+[INFO] rest-docs-generator ............................... SUCCESS [0.085s]
+[INFO] RHQ Enterprise Agent Update ....................... SUCCESS [0.025s]
+[INFO] RHQ Server XML Schemas ............................ SUCCESS [0.014s]
+[INFO] RHQ Enterprise Safe Invoker ....................... SUCCESS [0.034s]
+[INFO] RHQ Enterprise Server JAR ......................... SUCCESS [1.472s]
+[INFO] RHQ Enterprise Server JBoss AS SARs ............... SUCCESS [0.180s]
+[INFO] RHQ Enterprise Server Internal Services SAR ....... SUCCESS [0.006s]
+[INFO] RHQ Enterprise Modules ............................ SUCCESS [0.005s]
[INFO] RHQ Scripting Parent Module ....................... SUCCESS [0.007s]
-[INFO] RHQ Scripting API ................................. SUCCESS [0.008s]
-[INFO] RHQ Javascript support ............................ SUCCESS [0.039s]
-[INFO] RHQ Python support ................................ SUCCESS [0.010s]
-[INFO] RHQ Script Bindings ............................... SUCCESS [0.213s]
-[INFO] RHQ Enterprise Remote Client API .................. SUCCESS [0.061s]
-[INFO] RHQ Remote Client Dependencies .................... SUCCESS [0.193s]
-[INFO] RHQ Enterprise Remote CLI ......................... SUCCESS [0.061s]
-[INFO] RHQ Remoting Parent POM ........................... SUCCESS [0.005s]
-[INFO] RHQ REST interface ................................ SUCCESS [0.188s]
-[INFO] RHQ Enterprise Portal ............................. SUCCESS [0.155s]
-[INFO] RHQ Enterprise GUI ................................ SUCCESS [0.007s]
-[INFO] RHQ Enterprise Content HTTP Support ............... SUCCESS [0.066s]
-[INFO] RHQ Enterprise Core GUI ........................... SUCCESS [0.321s]
-[INFO] RHQ REST interface examples ....................... SUCCESS [0.004s]
-[INFO] RHQ Remoting WAR .................................. SUCCESS [0.007s]
-[INFO] RHQ Enterprise Server Plugins ..................... SUCCESS [0.283s]
-[INFO] RHQ Enterprise Server Disk Content Source Plugin .. SUCCESS [0.028s]
-[INFO] RHQ Enterprise Server Yum Content Source Plugin ... SUCCESS [0.017s]
-[INFO] RHQ Enterprise Server URL Content Source Plugin ... SUCCESS [0.024s]
-[INFO] RHQ Enterprise Server JBoss Software Plugin ....... SUCCESS [0.019s]
-[INFO] RHQ Enterprise Server Email Alert Plugin .......... SUCCESS [0.023s]
-[INFO] RHQ Enterprise Server IRC Alert Plugin ............ SUCCESS [0.020s]
-[INFO] RHQ Enterprise Server Mobicents Alert Plugin ...... SUCCESS [0.022s]
-[INFO] RHQ Enterprise Server Microblog Alert Plugin ...... SUCCESS [0.026s]
-[INFO] RHQ Enterprise Server Opertions Alert Plugin ...... SUCCESS [0.021s]
-[INFO] RHQ Enterprise Server Roles Alert Plugin .......... SUCCESS [0.020s]
+[INFO] RHQ Scripting API ................................. SUCCESS [0.005s]
+[INFO] RHQ Javascript support ............................ SUCCESS [0.025s]
+[INFO] RHQ Python support ................................ SUCCESS [0.007s]
+[INFO] RHQ Script Bindings ............................... SUCCESS [0.152s]
+[INFO] RHQ Enterprise Remote Client API .................. SUCCESS [0.053s]
+[INFO] RHQ Remote Client Dependencies .................... SUCCESS [0.126s]
+[INFO] RHQ Enterprise Remote CLI ......................... SUCCESS [0.041s]
+[INFO] RHQ Remoting Parent POM ........................... SUCCESS [0.004s]
+[INFO] RHQ REST interface ................................ SUCCESS [0.167s]
+[INFO] RHQ Enterprise Portal ............................. SUCCESS [0.179s]
+[INFO] RHQ Enterprise GUI ................................ SUCCESS [0.004s]
+[INFO] RHQ Enterprise Content HTTP Support ............... SUCCESS [0.023s]
+[INFO] RHQ Enterprise Core GUI ........................... SUCCESS [0.252s]
+[INFO] RHQ REST interface examples ....................... SUCCESS [0.012s]
+[INFO] RHQ Remoting WAR .................................. SUCCESS [0.008s]
+[INFO] RHQ Enterprise Server Plugins ..................... SUCCESS [0.179s]
+[INFO] RHQ Enterprise Server Disk Content Source Plugin .. SUCCESS [0.018s]
+[INFO] RHQ Enterprise Server Yum Content Source Plugin ... SUCCESS [0.015s]
+[INFO] RHQ Enterprise Server URL Content Source Plugin ... SUCCESS [0.017s]
+[INFO] RHQ Enterprise Server JBoss Software Plugin ....... SUCCESS [0.015s]
+[INFO] RHQ Enterprise Server Email Alert Plugin .......... SUCCESS [0.018s]
+[INFO] RHQ Enterprise Server IRC Alert Plugin ............ SUCCESS [0.015s]
+[INFO] RHQ Enterprise Server Mobicents Alert Plugin ...... SUCCESS [0.015s]
+[INFO] RHQ Enterprise Server Microblog Alert Plugin ...... SUCCESS [0.015s]
+[INFO] RHQ Enterprise Server Opertions Alert Plugin ...... SUCCESS [0.018s]
+[INFO] RHQ Enterprise Server Roles Alert Plugin .......... SUCCESS [0.016s]
[INFO] RHQ Enterprise Server SNMP Alert Plugin ........... SUCCESS [0.016s]
-[INFO] RHQ Enterprise Server Subject Alert Plugin ........ SUCCESS [0.016s]
-[INFO] RHQ Enterprise Server Client API .................. SUCCESS [0.067s]
-[INFO] RHQ Enterprise Server CLI Script Alert Plugin ..... SUCCESS [0.042s]
-[INFO] RHQ Enterprise Server Log4J Alert Plugin .......... SUCCESS [0.016s]
-[INFO] RHQ Enterprise Server Cobbler Plugin .............. SUCCESS [0.021s]
-[INFO] RHQ Drift Server Plugin ........................... SUCCESS [0.023s]
-[INFO] RHQ File Template Bundle Server Plugin ............ SUCCESS [0.024s]
-[INFO] RHQ Ant Bundle Server Plugin ...................... SUCCESS [0.026s]
-[INFO] RHQ Validate All Server Plugins ................... SUCCESS [0.023s]
-[INFO] RHQ Enterprise Server CLI Package Type Plugin ..... SUCCESS [0.023s]
-[INFO] RHQ Enterprise Server EAR ......................... SUCCESS [0.471s]
-[INFO] RHQ Server Startup AS7 Subsystem .................. SUCCESS [0.077s]
-[INFO] RHQ Enterprise Installer Utility .................. SUCCESS [0.136s]
-[INFO] RHQ Server JAR Integration Tests .................. SUCCESS [1.897s]
-[INFO] RHQ Code Coverage ................................. SUCCESS [0.011s]
+[INFO] RHQ Enterprise Server Subject Alert Plugin ........ SUCCESS [0.018s]
+[INFO] RHQ Enterprise Server Client API .................. SUCCESS [0.053s]
+[INFO] RHQ Enterprise Server CLI Script Alert Plugin ..... SUCCESS [0.030s]
+[INFO] RHQ Enterprise Server Log4J Alert Plugin .......... SUCCESS [0.019s]
+[INFO] RHQ Enterprise Server Cobbler Plugin .............. SUCCESS [0.081s]
+[INFO] RHQ Drift Server Plugin ........................... SUCCESS [0.020s]
+[INFO] RHQ File Template Bundle Server Plugin ............ SUCCESS [0.020s]
+[INFO] RHQ Ant Bundle Server Plugin ...................... SUCCESS [0.025s]
+[INFO] RHQ Validate All Server Plugins ................... SUCCESS [0.019s]
+[INFO] RHQ Enterprise Server CLI Package Type Plugin ..... SUCCESS [0.017s]
+[INFO] RHQ Enterprise Server EAR ......................... SUCCESS [0.295s]
+[INFO] RHQ Server Startup AS7 Subsystem .................. SUCCESS [0.053s]
+[INFO] RHQ Enterprise Installer Utility .................. SUCCESS [0.084s]
+[INFO] RHQ Server JAR Integration Tests .................. SUCCESS [1.950s]
+[INFO] RHQ Code Coverage ................................. SUCCESS [0.008s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 31.504s
-[INFO] Finished at: Wed Mar 27 15:29:06 CDT 2013
-[INFO] Final Memory: 117M/580M
+[INFO] Total time: 28.582s
+[INFO] Finished at: Thu Mar 28 08:06:07 CDT 2013
+[INFO] Final Memory: 119M/555M
[INFO] ------------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0a804a7..511142f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -121,7 +121,7 @@
<i18nlog.version>1.0.10</i18nlog.version>
<jsf-api.version>1.2_14</jsf-api.version>
<jsf-impl.version>1.2_14</jsf-impl.version>
- <log4j.version>1.2.14</log4j.version>
+ <log4j.version>1.2.16</log4j.version>
<ojdbc6.version>11.2.0.3.0</ojdbc6.version>
<ems.version>1.3</ems.version>
<postgresql.version>9.2-1002.jdbc4</postgresql.version>
@@ -157,7 +157,7 @@
<commons-collections.version>3.2.1</commons-collections.version>
<commons-configuration.version>1.6</commons-configuration.version>
- <junit.version>4.8.2</junit.version>
+ <junit.version>4.10</junit.version>
<liquibase-core.version>1.9.5</liquibase-core.version>
<jbpm.version>3.1.1</jbpm.version>
<servlet-api.version>2.4</servlet-api.version>
@@ -841,13 +841,13 @@
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
- <version>1.6</version>
+ <version>1.6.1</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
- <version>1.2.1</version>
+ <version>1.2.2</version>
</dependency>
<dependency>
commit d48faaae56f9085625fd5a24eb890a33ed936c48
Author: Stefan Negrea <snegrea(a)redhat.com>
Date: Thu Mar 28 07:59:04 2013 -0500
[BZ 923458] The output of dependency:tree maven utility prior to any dependency version changes.
diff --git a/maven.dependency.tree b/maven.dependency.tree
new file mode 100644
index 0000000..24ead5b
--- /dev/null
+++ b/maven.dependency.tree
@@ -0,0 +1,8822 @@
+/usr/java/latest/
+[INFO] Scanning for projects...
+[INFO] ------------------------------------------------------------------------
+[INFO] Reactor Build Order:
+[INFO]
+[INFO] RHQ
+[INFO] RHQ Modules
+[INFO] RHQ Test Utils
+[INFO] RHQ Core Modules
+[INFO] RHQ Utilities
+[INFO] RHQ Native System API
+[INFO] RHQ Enterprise Agent-Server Communications Annotations API
+[INFO] RHQ Database Utilities
+[INFO] RHQ Domain Model
+[INFO] RHQ Plugin API
+[INFO] RHQ Common Plugin Libraries
+[INFO] RHQ Drift Common Library
+[INFO] RHQ Client API
+[INFO] RHQ Plugin Container
+[INFO] RHQ Shared GUI Classes
+[INFO] RHQ Plugin Validator Maven 2 Plugin
+[INFO] RHQ Arquillian Integration Modules
+[INFO] RHQ Agent Plugin Archive
+[INFO] RHQ Plugins
+[INFO] RHQ JMX Plugin
+[INFO] RHQ Arquillian Plugin Container
+[INFO] RHQ Arquillian Suite Extension
+[INFO] RHQ Plugin Test API
+[INFO] RHQ Plugin Test Util
+[INFO] RHQ Plugin Container Integration Tests
+[INFO] RHQ JBossAS 4/5 Plugins Common Library
+[INFO] RHQ File Template Bundle Plugins Common Library
+[INFO] RHQ Ant Bundle Plugins Common Library
+[INFO] RHQ JBoss AS DMR Client
+[INFO] RHQ Platform Plugin
+[INFO] RHQ Enterprise Agent-Server Communications Layer
+[INFO] RHQ Enterprise Agent
+[INFO] RHQ RHQ-Agent Plugin
+[INFO] RHQ No-op Plugin
+[INFO] RHQ Augeas Plugin
+[INFO] RHQ Apache Plugin
+[INFO] RHQ Tomcat Plugin
+[INFO] RHQ Hibernate Plugin
+[INFO] RHQ JBossAS 5.x/6.x Plugin
+[INFO] RHQ JBossAS 3.2.x/4.x Plugin
+[INFO] RHQ mod_cluster Plugin
+[INFO] RHQ JBossCache 4.x Plugin
+[INFO] RHQ JBossAS 7.x Plugin
+[INFO] RHQ Server Plugin
+[INFO] RHQ JBossCache 3.x Plugin
+[INFO] RHQ Database Plugin
+[INFO] RHQ Postgres Plugin
+[INFO] RHQ Script Plugin
+[INFO] RHQ IIS Plugin
+[INFO] RHQ File Template Bundle Plugin
+[INFO] RHQ Ant Bundle Plugin
+[INFO] RHQ Augeas-based Cron Plugin
+[INFO] RHQ GRUB Plugin
+[INFO] RHQ Hosts File Plugin
+[INFO] RHQ Cobbler File Plugin
+[INFO] RHQ Augeas-based Sudoers Plugin
+[INFO] RHQ Network Services Plugin
+[INFO] RHQ Augeas-based Samba Plugin
+[INFO] RHQ Augeas-based Postfix Plugin
+[INFO] RHQ Aliases File Plugin
+[INFO] RHQ SSHD Plugin
+[INFO] RHQ Byteman Plugin
+[INFO] RHQ IRC Server Plugin
+[INFO] RHQ Hadoop Plugin
+[INFO] RHQ Hudson Plugin
+[INFO] RHQ MySql Plugin
+[INFO] RHQ Oracle Plugin
+[INFO] RHQ Performance Test Plugin
+[INFO] RHQ Script2 Plugin
+[INFO] RHQ SnmpTrapd Plugin
+[INFO] RHQ Twitter Plugin
+[INFO] RHQ Virtualization Plugin
+[INFO] RHQ Kickstart Plugin
+[INFO] RHQ pattern Plugin
+[INFO] RHQ Cassandra Plugin
+[INFO] RHQ Validate All Plugins
+[INFO] RHQ Helpers
+[INFO] RHQ Response-Time Filter
+[INFO] RHQ Response-Time Filter - JBoss AS7 Subsystem
+[INFO] bundleGen
+[INFO] jeeGen
+[INFO] Performance Testing Support
+[INFO] rest-docs-generator
+[INFO] RHQ Enterprise Agent Update
+[INFO] RHQ Server XML Schemas
+[INFO] RHQ Enterprise Safe Invoker
+[INFO] RHQ Enterprise Server JAR
+[INFO] RHQ Enterprise Server JBoss AS SARs
+[INFO] RHQ Enterprise Server Internal Services SAR
+[INFO] RHQ Enterprise Modules
+[INFO] RHQ Scripting Parent Module
+[INFO] RHQ Scripting API
+[INFO] RHQ Javascript support
+[INFO] RHQ Python support
+[INFO] RHQ Script Bindings
+[INFO] RHQ Enterprise Remote Client API
+[INFO] RHQ Remote Client Dependencies
+[INFO] RHQ Enterprise Remote CLI
+[INFO] RHQ Remoting Parent POM
+[INFO] RHQ REST interface
+[INFO] RHQ Enterprise Portal
+[INFO] RHQ Enterprise GUI
+[INFO] RHQ Enterprise Content HTTP Support
+[INFO] RHQ Enterprise Core GUI
+[INFO] RHQ REST interface examples
+[INFO] RHQ Remoting WAR
+[INFO] RHQ Enterprise Server Plugins
+[INFO] RHQ Enterprise Server Disk Content Source Plugin
+[INFO] RHQ Enterprise Server Yum Content Source Plugin
+[INFO] RHQ Enterprise Server URL Content Source Plugin
+[INFO] RHQ Enterprise Server JBoss Software Plugin
+[INFO] RHQ Enterprise Server Email Alert Plugin
+[INFO] RHQ Enterprise Server IRC Alert Plugin
+[INFO] RHQ Enterprise Server Mobicents Alert Plugin
+[INFO] RHQ Enterprise Server Microblog Alert Plugin
+[INFO] RHQ Enterprise Server Opertions Alert Plugin
+[INFO] RHQ Enterprise Server Roles Alert Plugin
+[INFO] RHQ Enterprise Server SNMP Alert Plugin
+[INFO] RHQ Enterprise Server Subject Alert Plugin
+[INFO] RHQ Enterprise Server Client API
+[INFO] RHQ Enterprise Server CLI Script Alert Plugin
+[INFO] RHQ Enterprise Server Log4J Alert Plugin
+[INFO] RHQ Enterprise Server Cobbler Plugin
+[INFO] RHQ Drift Server Plugin
+[INFO] RHQ File Template Bundle Server Plugin
+[INFO] RHQ Ant Bundle Server Plugin
+[INFO] RHQ Validate All Server Plugins
+[INFO] RHQ Enterprise Server CLI Package Type Plugin
+[INFO] RHQ Enterprise Server EAR
+[INFO] RHQ Server Startup AS7 Subsystem
+[INFO] RHQ Enterprise Installer Utility
+[INFO] RHQ Server JAR Integration Tests
+[INFO] RHQ Code Coverage
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-parent ---
+[INFO] org.rhq:rhq-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Modules 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-modules-parent ---
+[INFO] org.rhq:rhq-modules-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Test Utils 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ test-utils ---
+[INFO] org.rhq:test-utils:jar:4.7.0-SNAPSHOT
+[INFO] +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] +- javax.transaction:jta:jar:1.1:compile
+[INFO] +- org.testng:testng:jar:6.5.2:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
+[INFO] | +- com.beust:jcommander:jar:1.12:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] +- org.jmock:jmock:jar:2.5.1:compile
+[INFO] | +- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | \- org.hamcrest:hamcrest-library:jar:1.1:compile
+[INFO] +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
+[INFO] +- org.unitils:unitils-dbunit:jar:3.1:compile
+[INFO] | +- org.unitils:unitils-core:jar:3.1:compile
+[INFO] | | +- commons-lang:commons-lang:jar:2.3:compile
+[INFO] | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | \- ognl:ognl:jar:2.6.9:compile
+[INFO] | +- org.unitils:unitils-database:jar:3.1:compile
+[INFO] | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
+[INFO] | | \- commons-pool:commons-pool:jar:1.3:compile
+[INFO] | +- org.dbunit:dbunit:jar:2.2.2:compile
+[INFO] | | +- junit-addons:junit-addons:jar:1.4:compile
+[INFO] | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:compile (version managed from 2.6.2)
+[INFO] | | | \- xerces:xmlParserAPIs:jar:2.6.2:compile
+[INFO] | | +- poi:poi:jar:2.5.1-final-20040804:compile
+[INFO] | | +- org.slf4j:slf4j-api:jar:1.4.3:compile
+[INFO] | | \- org.slf4j:slf4j-nop:jar:1.4.3:runtime
+[INFO] | \- org.springframework:spring-jdbc:jar:2.5.2:compile
+[INFO] | +- org.springframework:spring-beans:jar:2.5.2:compile
+[INFO] | +- org.springframework:spring-core:jar:2.5.2:compile
+[INFO] | \- org.springframework:spring-tx:jar:2.5.2:compile
+[INFO] +- org.unitils:unitils-orm:jar:3.1:compile
+[INFO] | +- org.unitils:unitils-spring:jar:3.1:compile
+[INFO] | | \- org.springframework:spring-test:jar:2.5.2:compile
+[INFO] | +- org.springframework:spring-context:jar:2.5.2:compile
+[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile
+[INFO] | \- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] +- org.unitils:unitils-dbmaintainer:jar:3.1:compile
+[INFO] +- org.unitils:unitils-easymock:jar:3.1:compile
+[INFO] | +- org.easymock:easymock:jar:2.3:compile
+[INFO] | \- org.easymock:easymockclassextension:jar:2.3:compile
+[INFO] +- org.unitils:unitils-testng:jar:3.1:compile
+[INFO] +- org.unitils:unitils-inject:jar:3.1:compile
+[INFO] +- org.unitils:unitils-mock:jar:3.1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Core Modules 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-parent ---
+[INFO] org.rhq:rhq-core-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Utilities 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-util ---
+[INFO] org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT
+[INFO] +- jdom:jdom:jar:1.0:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- commons-io:commons-io:jar:1.4:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Native System API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-native-system ---
+[INFO] org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] +- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] +- org.mockito:mockito-core:jar:1.9.0:test
+[INFO] | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | \- org.objenesis:objenesis:jar:1.0:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Agent-Server Communications Annotations API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-comm-api ---
+[INFO] org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Database Utilities 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-dbutils ---
+[INFO] org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- ant:ant:jar:1.6.5:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.1:compile
+[INFO] +- ant:ant-launcher:jar:1.6.5:test
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] +- com.h2database:h2:jar:1.2.139:test
+[INFO] +- net.sourceforge.jtds:jtds:jar:1.2.2:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Domain Model 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-domain ---
+[INFO] org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
+[INFO] +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:provided
+[INFO] +- org.jboss.as:jboss-as-dist:zip:7.1.1.Final:test
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:test
+[INFO] +- net.sourceforge.jtds:jtds:jar:1.2.2:test
+[INFO] +- org.jboss.spec:jboss-javaee-6.0:pom:3.0.0.Final:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- javax.enterprise:cdi-api:jar:1.0-SP4:provided
+[INFO] | +- javax.inject:javax.inject:jar:1:provided
+[INFO] | +- javax.jws:jsr181-api:jar:1.0-MR1:provided
+[INFO] | +- javax.mail:mail:jar:1.4.4:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.enterprise.deploy:jboss-jad-api_1.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.management.j2ee:jboss-j2eemgmt-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.registry:jboss-jaxr-api_1.0_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.jms:jboss-jms-api_1.1_spec:jar:1.0.0.Final:provided (version managed from 1.0.1.Final)
+[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jstl:jboss-jstl-api_1.2_spec:jar:1.0.3.Final:provided
+[INFO] | | \- xalan:xalan:jar:2.7.1.jbossorg-2:provided
+[INFO] | | \- xalan:serializer:jar:2.7.1.jbossorg-2:provided
+[INFO] | +- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.4.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.rpc:jboss-jaxrpc-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:jar:1.0.2.Final:provided
+[INFO] | \- org.jboss.spec.javax.xml.ws:jboss-jaxws-api_2.2_spec:jar:2.0.1.Final:provided
+[INFO] +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | +- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.jboss.arquillian.protocol:arquillian-protocol-servlet:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] +- antlr:antlr:jar:2.7.7:test
+[INFO] +- cglib:cglib-nodep:jar:2.1_3:test
+[INFO] +- commons-io:commons-io:jar:1.4:test
+[INFO] +- commons-collections:commons-collections:jar:3.2:test
+[INFO] +- commons-codec:commons-codec:jar:1.4:test
+[INFO] +- dom4j:dom4j:jar:1.6.1-jboss:test
+[INFO] | \- xml-apis:xml-apis:jar:1.0.b2:test
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4:test
+[INFO] +- trove:trove:jar:1.0.2:test
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test
+[INFO] +- org.jboss.as:jboss-as-arquillian-container-managed:jar:7.1.1.Final:test
+[INFO] | +- org.jboss.as:jboss-as-arquillian-common:jar:7.1.1.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-osgi:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-cdi:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-ejb:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-initialcontext:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-osgi:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-resource:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.as:jboss-as-arquillian-testenricher-msc:jar:7.1.1.Final:test
+[INFO] | | | \- org.jboss.msc:jboss-msc:jar:1.0.2.GA:test
+[INFO] | | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:test
+[INFO] | | | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:test
+[INFO] | | | +- org.jboss:jboss-dmr:jar:1.1.1.Final:test
+[INFO] | | | \- org.jboss.threads:jboss-threads:jar:2.0.0.GA:test
+[INFO] | | +- org.jboss.as:jboss-as-jmx:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:test
+[INFO] | | | +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss:staxmapper:jar:1.1.0.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:test
+[INFO] | | | | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:test
+[INFO] | | | | | \- system:jdk-tools:jar:jdk:system
+[INFO] | | | | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:test
+[INFO] | | | | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss:jandex:jar:1.0.3.Final:test
+[INFO] | | | | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:test
+[INFO] | | | | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:test
+[INFO] | | | | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:test
+[INFO] | | | | \- org.jboss:jboss-vfs:jar:3.1.0.Final:test
+[INFO] | | | \- org.jboss.marshalling:jboss-marshalling-river:jar:1.3.11.GA:test
+[INFO] | | +- org.jboss.osgi.spi:jbosgi-spi:jar:3.0.1.Final:test
+[INFO] | | | \- org.jboss.osgi.vfs:jbosgi-vfs:jar:1.0.7.Final:test
+[INFO] | | \- org.osgi:org.osgi.core:jar:4.2.0:test
+[INFO] | +- org.jboss.as:jboss-as-arquillian-protocol-jmx:jar:7.1.1.Final:test
+[INFO] | | +- org.jboss.as:jboss-as-osgi-service:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-ee:jar:7.1.1.Final:test
+[INFO] | | | | +- org.hibernate:hibernate-validator:jar:4.2.0.Final:test
+[INFO] | | | | +- org.jboss.interceptor:jboss-interceptor-spi:jar:2.0.0.Final:test
+[INFO] | | | | +- org.jboss.metadata:jboss-metadata-common:jar:7.0.1.Final:test
+[INFO] | | | | \- org.jboss.metadata:jboss-metadata-ear:jar:7.0.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:test
+[INFO] | | | | \- org.jboss:jboss-remote-naming:jar:1.0.2.Final:test
+[INFO] | | | | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:test
+[INFO] | | | +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:test
+[INFO] | | | +- org.jboss.osgi.framework:jbosgi-framework-core:jar:1.1.8.Final:test
+[INFO] | | | | +- org.jboss.osgi.deployment:jbosgi-deployment:jar:1.0.12.Final:test
+[INFO] | | | | +- org.jboss.osgi.resolver:jbosgi-resolver-felix:jar:1.0.13.Final:test
+[INFO] | | | | | +- org.jboss.osgi.resolver:jbosgi-resolver-api:jar:1.0.13.Final:test
+[INFO] | | | | | | \- org.jboss.osgi.metadata:jbosgi-metadata:jar:2.0.3.Final:test
+[INFO] | | | | | \- org.jboss.osgi.resolver:jbosgi-resolver-spi:jar:1.0.13.Final:test
+[INFO] | | | | +- org.jboss.osgi.vfs:jbosgi-vfs30:jar:1.0.7.Final:test
+[INFO] | | | | \- org.osgi:org.osgi.compendium:jar:4.2.0:test
+[INFO] | | | +- org.jboss.osgi.repository:jbosgi-repository-core:jar:1.0.5:test
+[INFO] | | | | \- org.jboss.osgi.repository:jbosgi-repository-api:jar:1.0.5:test
+[INFO] | | | | \- org.jboss.osgi.resolver:jbosgi-resolver-api-v2:jar:2.0.0.Beta2:test
+[INFO] | | | | \- org.apache.felix:org.apache.felix.resolver:jar:0.1.0.Beta1:test
+[INFO] | | | \- org.osgi:org.osgi.enterprise:jar:4.2.0:test
+[INFO] | | \- org.jboss.arquillian.protocol:arquillian-protocol-jmx:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:test
+[INFO] | | \- org.jboss.xnio:xnio-api:jar:3.0.0.GA:test
+[INFO] | +- org.jboss.remotingjmx:remoting-jmx:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:test
+[INFO] | | \- org.jboss.marshalling:jboss-marshalling:jar:1.3.9.GA:test
+[INFO] | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:test
+[INFO] | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-plugin-api ---
+[INFO] org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] +- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | \- javax.activation:activation:jar:1.1:compile
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test (version managed from 3.16.1-GA)
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Common Plugin Libraries 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-common-parent ---
+[INFO] org.rhq:rhq-common-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Drift Common Library 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-common-drift ---
+[INFO] org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Client API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-client-api ---
+[INFO] org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- commons-io:commons-io:jar:1.4:provided
+[INFO] +- commons-jxpath:commons-jxpath:jar:1.3:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin Container 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-plugin-container ---
+[INFO] org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | \- javax.activation:activation:jar:1.1:compile
+[INFO] +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- commons-io:commons-io:jar:1.4:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Shared GUI Classes 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-gui ---
+[INFO] org.rhq:rhq-core-gui:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- javax.el:el-api:jar:1.0:provided
+[INFO] +- javax.servlet:servlet-api:jar:2.4:provided
+[INFO] +- javax.servlet:jsp-api:jar:2.0:provided
+[INFO] +- javax.faces:jsf-api:jar:1.2_14:provided
+[INFO] +- javax.faces:jsf-impl:jar:1.2_14:provided
+[INFO] +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.0:compile
+[INFO] +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
+[INFO] | \- commons-digester:commons-digester:jar:1.8.1:compile
+[INFO] +- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin Validator Maven 2 Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-plugin-validator ---
+[INFO] org.rhq:rhq-plugin-validator:maven-plugin:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | | \- javax.activation:activation:jar:1.1:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] | \- commons-io:commons-io:jar:1.4:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.apache.maven:maven-plugin-api:jar:2.0.8:compile
+[INFO] +- org.apache.maven:maven-project:jar:2.0.8:compile
+[INFO] | +- org.apache.maven:maven-settings:jar:2.0.8:compile
+[INFO] | +- org.apache.maven:maven-profile:jar:2.0.8:compile
+[INFO] | +- org.apache.maven:maven-model:jar:2.0.8:compile
+[INFO] | +- org.apache.maven:maven-artifact-manager:jar:2.0.8:compile
+[INFO] | | +- org.apache.maven:maven-repository-metadata:jar:2.0.8:compile
+[INFO] | | \- org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-2:compile
+[INFO] | +- org.apache.maven:maven-plugin-registry:jar:2.0.8:compile
+[INFO] | +- org.codehaus.plexus:plexus-utils:jar:1.4.6:compile
+[INFO] | +- org.apache.maven:maven-artifact:jar:2.0.8:compile
+[INFO] | \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | \- classworlds:classworlds:jar:1.1-alpha-2:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Arquillian Integration Modules 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-arquillian-parent ---
+[INFO] org.rhq:rhq-arquillian-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Agent Plugin Archive 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-shrinkwrap-agent-plugin-archive ---
+[INFO] org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugins 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-plugins-parent ---
+[INFO] org.rhq:rhq-plugins-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JMX Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-jmx-plugin ---
+[INFO] org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] +- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Arquillian Plugin Container 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-arquillian-agent-plugin-container-embedded ---
+[INFO] org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:compile
+[INFO] | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:compile
+[INFO] +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:compile
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:compile
+[INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:compile
+[INFO] | | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.sonatype.aether:aether-api:jar:1.13.1:compile
+[INFO] | +- org.sonatype.aether:aether-impl:jar:1.13.1:compile
+[INFO] | +- org.sonatype.aether:aether-spi:jar:1.13.1:compile
+[INFO] | +- org.sonatype.aether:aether-util:jar:1.13.1:compile
+[INFO] | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:compile
+[INFO] | +- org.apache.maven:maven-aether-provider:jar:3.0.4:compile
+[INFO] | +- org.apache.maven:maven-model:jar:3.0.4:compile
+[INFO] | +- org.apache.maven:maven-model-builder:jar:3.0.4:compile
+[INFO] | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:compile
+[INFO] | +- org.apache.maven:maven-settings:jar:3.0.4:compile
+[INFO] | +- org.apache.maven:maven-settings-builder:jar:3.0.4:compile
+[INFO] | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:runtime
+[INFO] | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:compile
+[INFO] | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:compile
+[INFO] | +- org.apache.maven.wagon:wagon-file:jar:2.2:compile
+[INFO] | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:compile
+[INFO] | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:compile
+[INFO] | +- org.jsoup:jsoup:jar:1.6.1:compile
+[INFO] | \- org.apache.httpcomponents:httpcore:jar:4.1.2:compile
+[INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | \- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | | \- javax.activation:activation:jar:1.1:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] | \- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:compile
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:compile
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:compile
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:compile
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:compile
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:compile
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:compile
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:compile
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:test
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- junit:junit:jar:4.8.1:test (scope not updated to compile)
+[INFO] +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Arquillian Suite Extension 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-arquillian-suite-extension ---
+[INFO] org.rhq:rhq-arquillian-suite-extension:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:compile
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:compile
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:compile
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin Test API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-plugin-test-api ---
+[INFO] org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | | \- javax.activation:activation:jar:1.1:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] | \- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] | +- javax.transaction:jta:jar:1.1:compile
+[INFO] | +- org.jmock:jmock:jar:2.5.1:compile
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:compile
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:compile
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:compile
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | | \- ognl:ognl:jar:2.6.9:compile
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:compile
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:compile
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:compile
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:compile
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:compile (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:compile
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:compile
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:compile
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:runtime
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:compile
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:compile
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:compile
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:compile
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:compile
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:compile
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:compile
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:compile
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:compile
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:compile
+[INFO] | | +- org.easymock:easymock:jar:2.3:compile
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:compile
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:compile
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:compile
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:compile
+[INFO] +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:compile
+[INFO] | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:compile
+[INFO] | | +- org.sonatype.aether:aether-api:jar:1.13.1:compile
+[INFO] | | +- org.sonatype.aether:aether-impl:jar:1.13.1:compile
+[INFO] | | +- org.sonatype.aether:aether-spi:jar:1.13.1:compile
+[INFO] | | +- org.sonatype.aether:aether-util:jar:1.13.1:compile
+[INFO] | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:compile
+[INFO] | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:compile
+[INFO] | | +- org.apache.maven:maven-model:jar:3.0.4:compile
+[INFO] | | +- org.apache.maven:maven-model-builder:jar:3.0.4:compile
+[INFO] | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:compile
+[INFO] | | +- org.apache.maven:maven-settings:jar:3.0.4:compile
+[INFO] | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:compile
+[INFO] | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:runtime
+[INFO] | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:compile
+[INFO] | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:compile
+[INFO] | | +- org.apache.maven.wagon:wagon-file:jar:2.2:compile
+[INFO] | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:compile
+[INFO] | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:compile
+[INFO] | | +- org.jsoup:jsoup:jar:1.6.1:compile
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:compile
+[INFO] | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:compile
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:compile
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:compile
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:compile
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:compile
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:compile
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:compile
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:compile
+[INFO] +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:compile
+[INFO] | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:compile
+[INFO] +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:compile
+[INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:compile
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:runtime
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:runtime
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:runtime
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:runtime
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin Test Util 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-plugin-test-util ---
+[INFO] org.rhq:rhq-core-plugin-test-util:jar:4.7.0-SNAPSHOT
+[INFO] +- org.testng:testng:jar:6.5.2:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
+[INFO] | +- com.beust:jcommander:jar:1.12:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | | | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | | | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | | | \- javax.activation:activation:jar:1.1:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] | | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] | | +- javax.transaction:jta:jar:1.1:compile
+[INFO] | | +- org.jmock:jmock:jar:2.5.1:compile
+[INFO] | | | \- org.hamcrest:hamcrest-library:jar:1.1:compile
+[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
+[INFO] | | +- org.unitils:unitils-dbunit:jar:3.1:compile
+[INFO] | | | +- org.unitils:unitils-core:jar:3.1:compile
+[INFO] | | | | +- commons-lang:commons-lang:jar:2.3:compile
+[INFO] | | | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | | | \- ognl:ognl:jar:2.6.9:compile
+[INFO] | | | +- org.unitils:unitils-database:jar:3.1:compile
+[INFO] | | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
+[INFO] | | | | \- commons-pool:commons-pool:jar:1.3:compile
+[INFO] | | | +- org.dbunit:dbunit:jar:2.2.2:compile
+[INFO] | | | | +- junit-addons:junit-addons:jar:1.4:compile
+[INFO] | | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:compile (version managed from 2.6.2)
+[INFO] | | | | | \- xerces:xmlParserAPIs:jar:2.6.2:compile
+[INFO] | | | | +- poi:poi:jar:2.5.1-final-20040804:compile
+[INFO] | | | | +- org.slf4j:slf4j-api:jar:1.4.3:compile
+[INFO] | | | | \- org.slf4j:slf4j-nop:jar:1.4.3:runtime
+[INFO] | | | \- org.springframework:spring-jdbc:jar:2.5.2:compile
+[INFO] | | | +- org.springframework:spring-beans:jar:2.5.2:compile
+[INFO] | | | +- org.springframework:spring-core:jar:2.5.2:compile
+[INFO] | | | \- org.springframework:spring-tx:jar:2.5.2:compile
+[INFO] | | +- org.unitils:unitils-orm:jar:3.1:compile
+[INFO] | | | +- org.unitils:unitils-spring:jar:3.1:compile
+[INFO] | | | | \- org.springframework:spring-test:jar:2.5.2:compile
+[INFO] | | | +- org.springframework:spring-context:jar:2.5.2:compile
+[INFO] | | | | \- aopalliance:aopalliance:jar:1.0:compile
+[INFO] | | | \- org.springframework:spring-orm:jar:2.5.2:compile
+[INFO] | | +- org.unitils:unitils-dbmaintainer:jar:3.1:compile
+[INFO] | | +- org.unitils:unitils-easymock:jar:3.1:compile
+[INFO] | | | +- org.easymock:easymock:jar:2.3:compile
+[INFO] | | | \- org.easymock:easymockclassextension:jar:2.3:compile
+[INFO] | | +- org.unitils:unitils-testng:jar:3.1:compile
+[INFO] | | +- org.unitils:unitils-inject:jar:3.1:compile
+[INFO] | | \- org.unitils:unitils-mock:jar:3.1:compile
+[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:compile
+[INFO] | | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:compile
+[INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:compile
+[INFO] | | | +- org.sonatype.aether:aether-api:jar:1.13.1:compile
+[INFO] | | | +- org.sonatype.aether:aether-impl:jar:1.13.1:compile
+[INFO] | | | +- org.sonatype.aether:aether-spi:jar:1.13.1:compile
+[INFO] | | | +- org.sonatype.aether:aether-util:jar:1.13.1:compile
+[INFO] | | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:compile
+[INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:compile
+[INFO] | | | +- org.apache.maven:maven-model:jar:3.0.4:compile
+[INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.0.4:compile
+[INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:compile
+[INFO] | | | +- org.apache.maven:maven-settings:jar:3.0.4:compile
+[INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:compile
+[INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:runtime
+[INFO] | | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:compile
+[INFO] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:compile
+[INFO] | | | +- org.apache.maven.wagon:wagon-file:jar:2.2:compile
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:compile
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:compile
+[INFO] | | | +- org.jsoup:jsoup:jar:1.6.1:compile
+[INFO] | | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:compile
+[INFO] | | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] | +- org.powermock:powermock-module-testng:jar:1.4.12:compile
+[INFO] | | +- org.powermock:powermock-core:jar:1.4.12:compile
+[INFO] | | | \- org.powermock:powermock-reflect:jar:1.4.12:compile
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:compile
+[INFO] | | \- org.powermock:powermock-module-testng-common:jar:1.4.12:compile
+[INFO] | +- org.powermock:powermock-api-mockito:jar:1.4.12:compile
+[INFO] | | +- org.mockito:mockito-all:jar:1.9.0:compile
+[INFO] | | \- org.powermock:powermock-api-support:jar:1.4.12:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:compile
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:compile
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:compile
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:compile
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:compile
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:compile
+[INFO] | | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:compile
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:compile
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:compile
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:runtime
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:runtime
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:runtime
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:runtime
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:runtime
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Plugin Container Integration Tests 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-core-plugin-container-itest ---
+[INFO] org.rhq:rhq-core-plugin-container-itest:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | | \- commons-io:commons-io:jar:1.4:test
+[INFO] | +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | | +- javax.transaction:jta:jar:1.1:test
+[INFO] | | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | | +- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:test
+[INFO] | | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] | +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:test
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- jdom:jdom:jar:1.0:test
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:test
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:test
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:test
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:test
+[INFO] | \- javax.activation:activation:jar:1.1:test
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossAS 4/5 Plugins Common Library 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-jboss-as-common ---
+[INFO] org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT
+[INFO] +- ant:ant:jar:1.6.5:compile
+[INFO] +- jboss:jbpm:jar:3.1.1:compile
+[INFO] +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] +- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ File Template Bundle Plugins Common Library 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-filetemplate-bundle-common ---
+[INFO] org.rhq:rhq-filetemplate-bundle-common:jar:4.7.0-SNAPSHOT
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Ant Bundle Plugins Common Library 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-ant-bundle-common ---
+[INFO] org.rhq:rhq-ant-bundle-common:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.apache.ant:ant:jar:1.8.0:compile
+[INFO] +- org.apache.ant:ant-launcher:jar:1.8.0:compile
+[INFO] +- org.apache.ant:ant-nodeps:jar:1.8.0:compile
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:runtime
+[INFO] +- org.liquibase:liquibase-core:jar:1.9.5:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBoss AS DMR Client 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-jboss-as-dmr-client ---
+[INFO] org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.msc:jboss-msc:jar:1.0.2.GA:provided
+[INFO] +- org.jboss:jboss-dmr:jar:1.1.1.Final:provided
+[INFO] +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss:jboss-remote-naming:jar:1.0.2.Final:provided
+[INFO] | | +- org.jboss:jboss-ejb-client:jar:1.0.0.Final:provided
+[INFO] | | +- org.jboss.marshalling:jboss-marshalling:jar:1.3.0.GA:provided
+[INFO] | | +- org.jboss.xnio:xnio-api:jar:3.0.0.GA:provided
+[INFO] | | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:provided
+[INFO] | | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] | +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:provided
+[INFO] | | | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:provided
+[INFO] | | | \- org.jboss:staxmapper:jar:1.1.0.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:provided
+[INFO] | | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:provided
+[INFO] | | | | \- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:provided
+[INFO] | | | \- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:provided
+[INFO] | | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:provided
+[INFO] | | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:provided
+[INFO] | | | \- system:jdk-tools:jar:jdk:system
+[INFO] | | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:provided
+[INFO] | | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:provided
+[INFO] | | | \- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss:jandex:jar:1.0.3.Final:provided
+[INFO] | | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:provided
+[INFO] | | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:provided
+[INFO] | | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:provided
+[INFO] | | +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:provided
+[INFO] | | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:provided
+[INFO] | | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:provided
+[INFO] | | +- org.jboss.threads:jboss-threads:jar:2.0.0.GA:provided
+[INFO] | | \- org.jboss:jboss-vfs:jar:3.1.0.Final:provided
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Platform Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-platform-plugin ---
+[INFO] org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Agent-Server Communications Layer 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-comm ---
+[INFO] org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- dom4j:dom4j:jar:1.6:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] +- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Agent 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-agent ---
+[INFO] org.rhq:rhq-enterprise-agent:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- jdom:jdom:jar:1.0:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | +- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:compile
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | \- javax.activation:activation:jar:1.1:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] | \- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- jline:jline:jar:0.9.94:compile
+[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ RHQ-Agent Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-agent-plugin ---
+[INFO] org.rhq:rhq-agent-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-agent:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jline:jline:jar:0.9.94:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- jdom:jdom:jar:1.0:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ No-op Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-no-op-plugin ---
+[INFO] org.rhq:rhq-no-op-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Augeas Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-augeas-plugin ---
+[INFO] org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:compile
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:compile
+[INFO] +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.testng:testng:jar:6.5.2:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
+[INFO] | +- com.beust:jcommander:jar:1.12:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] +- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Apache Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-apache-plugin ---
+[INFO] org.rhq:rhq-apache-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] +- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | \- net.augeas:augeas:jar:0.0.2:compile
+[INFO] +- org.hyperic:sigar:jar:1.6.5.132-5:provided (scope not updated to compile)
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Tomcat Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-tomcat-plugin ---
+[INFO] org.jboss.on:jopr-tomcat-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test (version managed from 3.16.1-GA)
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Hibernate Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-hibernate-plugin ---
+[INFO] org.jboss.on:jopr-hibernate-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossAS 5.x/6.x Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-jboss-as-5-plugin ---
+[INFO] org.jboss.on:jopr-jboss-as-5-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- ant:ant:jar:1.6.5:compile
+[INFO] | +- jboss:jbpm:jar:3.1.1:compile
+[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | \- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] +- org.apache.commons:commons-io:jar:1.3.2:compile
+[INFO] +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.jboss.integration:jboss-profileservice-spi:jar:6.0.0.Alpha9:provided
+[INFO] | +- org.jboss:jboss-vfs:jar:2.2.0.Alpha1:provided (version managed from 3.0.0.CR1)
+[INFO] | \- org.jboss.kernel:jboss-dependency:jar:2.2.0.Alpha6:provided
+[INFO] | \- org.jboss:jbossxb:jar:2.0.2.Beta3:provided (version managed from 2.0.2.Beta4)
+[INFO] | +- apache-xerces:xml-apis:jar:2.9.1:provided
+[INFO] | +- wutka-dtdparser:dtdparser121:jar:1.2.1:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided (version managed from 1.1.1)
+[INFO] +- org.jboss.man:jboss-managed:jar:2.1.1.GA:provided
+[INFO] | \- org.jboss:jboss-mdr:jar:2.0.2.GA:provided (version managed from 2.0.1.GA)
+[INFO] +- org.jboss.man:jboss-metatype:jar:2.1.1.GA:provided
+[INFO] | +- org.jboss:jboss-reflect:jar:2.0.2.GA:provided (version managed from 2.2.0.Alpha2)
+[INFO] | \- org.jboss.logging:jboss-logging-spi:jar:2.1.1.GA:provided
+[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | | +- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:test
+[INFO] | | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.rhq:rhq-core-plugin-test-util:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.jboss.spec.javax.jms:jboss-jms-api_1.1_spec:jar:1.0.0.Final:test
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | \- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.0:test (version managed from 1.8.2)
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.1:test (version managed from 3.2)
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.5.6:test (version managed from 1.4.3)
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.5:test (version managed from 2.5.2)
+[INFO] | | +- org.springframework:spring-core:jar:2.5.5:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.5:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.4:test (version managed from 2.3)
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:3.8.2:test (version managed from 4.10)
+[INFO] | +- org.beanshell:bsh:jar:1.3.0:test (version managed from 2.0b4)
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossAS 3.2.x/4.x Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-jboss-as-plugin ---
+[INFO] org.jboss.on:jopr-jboss-as-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- ant:ant:jar:1.6.5:compile
+[INFO] | +- jboss:jbpm:jar:3.1.1:compile
+[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] | \- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] +- bsh:bsh:jar:1.3.0:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test (version managed from 3.16.1-GA)
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ mod_cluster Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ modcluster-plugin ---
+[INFO] org.rhq:modcluster-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.jboss.on:jopr-jboss-as-5-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.apache.commons:commons-io:jar:1.3.2:provided
+[INFO] | \- commons-lang:commons-lang:jar:2.4:provided
+[INFO] +- org.jboss.on:jopr-jboss-as-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- ant:ant:jar:1.6.5:compile
+[INFO] | | +- jboss:jbpm:jar:3.1.1:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | | | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] | | \- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] | +- bsh:bsh:jar:1.3.0:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- log4j:log4j:jar:1.2.14:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossCache 4.x Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-jboss-cache-plugin ---
+[INFO] org.jboss.on:jopr-jboss-cache-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.jboss.on:jopr-jboss-as-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- ant:ant:jar:1.6.5:compile
+[INFO] | | +- jboss:jbpm:jar:3.1.1:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6.1:compile
+[INFO] | | | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] | | \- mc4j:org-mc4j-ems:jar:1.3:compile
+[INFO] | +- bsh:bsh:jar:1.3.0:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossAS 7.x Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-jboss-as-7-plugin ---
+[INFO] org.rhq:rhq-jboss-as-7-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.codehaus.jackson:jackson-core-asl:jar:1.9.5:compile
+[INFO] +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.5:compile
+[INFO] +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:compile
+[INFO] | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:compile
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] +- commons-codec:commons-codec:jar:1.4:compile
+[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | | +- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:test
+[INFO] | | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] | +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.rhq:rhq-core-plugin-test-util:jar:4.7.0-SNAPSHOT:test
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:test
+[INFO] +- org.hyperic:sigar-dist:zip:1.6.5.132-5:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Server Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rhqserver-plugin ---
+[INFO] org.rhq:rhq-rhqserver-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- jdom:jdom:jar:1.0:provided
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | +- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ JBossCache 3.x Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jopr-jboss-cache-v3-plugin ---
+[INFO] org.jboss.on:jopr-jboss-cache-v3-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.jboss.on:jopr-jboss-as-5-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-jboss-as-common:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- ant:ant:jar:1.6.5:provided
+[INFO] | | +- jboss:jbpm:jar:3.1.1:provided
+[INFO] | | \- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | +- org.apache.commons:commons-io:jar:1.3.2:provided
+[INFO] | +- commons-lang:commons-lang:jar:2.1:provided (version managed from 2.4)
+[INFO] | \- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] +- org.jboss.integration:jboss-profileservice-spi:jar:5.1.0.SP1:provided
+[INFO] | +- org.jboss.man:jboss-managed:jar:2.1.1.GA:provided (version managed from 2.1.0.SP1)
+[INFO] | +- org.jboss.man:jboss-metatype:jar:2.1.1.GA:provided
+[INFO] | \- org.jboss:jboss-vfs:jar:2.2.0.Alpha1:provided (version managed from 2.1.2.GA)
+[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] +- org.jboss.naming:jnp-client:jar:5.0.4.GA:test
+[INFO] +- org.jboss.microcontainer:jboss-kernel:jar:2.0.9.GA:test
+[INFO] | \- org.jboss:jbossxb:jar:2.0.2.Beta3:test
+[INFO] | +- wutka-dtdparser:dtdparser121:jar:1.2.1:test
+[INFO] | \- javax.activation:activation:jar:1.1:test (version managed from 1.1.1)
+[INFO] +- org.jboss.jbossas:jboss-as-aspects:jar:jboss-aspect-jdk50-client:5.1.0.CR1:test
+[INFO] | +- org.jboss.aspects:jboss-remoting-aspects:jar:1.0.1.GA:test
+[INFO] | +- org.jboss.aspects:jboss-transaction-aspects:jar:1.0.0.GA:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-as-int:jar:1.1.21:test (version managed from 1.1.4)
+[INFO] | | +- org.jboss.ejb3:jboss-ejb3:pom:1.1.21:test
+[INFO] | | | +- org.jboss.ejb3:jboss-ejb3-core:jar:1.1.21:test
+[INFO] | | | \- org.jboss.ejb3:jboss-ejb3-deployers:jar:1.0.0:test
+[INFO] | | +- org.jboss.ejb3:jboss-ejb3-mc-int:jar:1.0.1:test
+[INFO] | | \- org.jboss.ejb3:jboss-ejb3-metrics-deployer:jar:1.0.1:test
+[INFO] | | \- org.jboss.microcontainer:jboss-jmx-mc-int:jar:2.2.0.M2:test
+[INFO] | | +- org.jboss.mx:jboss-jmx:jar:6.0.0.Beta2:test
+[INFO] | | | +- org.jboss.mx:jboss-j2se:jar:6.0.0.Beta2:test
+[INFO] | | | \- org.jboss.mx:jboss-mbeans:jar:6.0.0.Beta2:test
+[INFO] | | \- org.jboss.mx:jboss-mbeanserver:jar:6.0.0.Beta2:test
+[INFO] | +- org.jboss.cluster:jboss-ha-client:jar:1.1.1.GA:test
+[INFO] | +- org.jboss.cluster:jboss-ha-server-api:jar:1.1.1.GA:test
+[INFO] | +- org.jboss.aop:jboss-aop:jar:2.1.6.GA:test (version managed from 2.1.0.CR3)
+[INFO] | +- org.jboss.aop:jboss-aop-aspects:jar:2.1.6.GA:test (version managed from 2.1.0.CR3)
+[INFO] | +- org.jboss.aop:jboss-aop-asintegration-core:jar:2.1.6.GA:test (version managed from 2.1.0.CR3)
+[INFO] | | \- org.jboss.aop:pluggable-instrumentor:jar:2.1.6.GA:test
+[INFO] | +- org.jboss.aop:jboss-aop-asintegration-jmx:jar:2.1.0.CR3:test
+[INFO] | +- org.jboss.aop:jboss-aop-asintegration-mc:jar:2.1.6.GA:test (version managed from 2.1.0.CR3)
+[INFO] | | +- org.jboss.cl:jboss-classloader:jar:2.0.8.GA:test
+[INFO] | | \- org.jboss.deployers:jboss-deployers-vfs:jar:2.0.9.GA:test
+[INFO] | | +- org.jboss.cl:jboss-classloading-vfs:jar:2.0.8.GA:test
+[INFO] | | +- org.jboss.deployers:jboss-deployers-core:jar:2.0.9.GA:test
+[INFO] | | \- org.jboss.deployers:jboss-deployers-client:jar:2.0.9.GA:test
+[INFO] | +- apache-xerces:xml-apis:jar:2.9.1:test
+[INFO] | +- junit:junit:jar:3.8.2:test
+[INFO] | +- org.jboss.jbossas:jboss-as-j2se:jar:6.0.0.M1:test (version managed from 5.1.0.CR1)
+[INFO] | | \- org.jboss.integration:jboss-classloading-spi:jar:5.1.0.SP1:test
+[INFO] | +- org.jboss.jbossas:jboss-as-system-jmx:jar:6.0.0.M1:test (version managed from 5.1.0.CR1)
+[INFO] | | \- org.jboss.deployers:jboss-deployers-impl:jar:2.0.9.GA:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jboss.test:jboss-test:jar:1.1.5-alpha-2:test
+[INFO] | | +- org.apache.ant:ant-junit:jar:1.7.0:test
+[INFO] | | +- jboss.profiler.jvmti:jboss-profiler-jvmti:jar:1.0.0.CR5:test
+[INFO] | | \- org.jboss.jbossas:jboss-server-manager:jar:1.0.3-alpha-2:test
+[INFO] | \- javassist:javassist:jar:3.11.0.GA:test
+[INFO] +- trove:trove:jar:1.0.2:test
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] +- org.jboss.security:jboss-security-spi:jar:2.0.4.SP2:test
+[INFO] +- org.jboss.javaee:jboss-javaee:jar:5.2.0.Beta1:test
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss:test
+[INFO] +- org.jboss.jbossas:jboss-as-server:jar:client:6.0.0.M1:test
+[INFO] | +- sun-jaxb:jaxb-api:jar:2.1.9-brew:test
+[INFO] | +- org.jboss.jbossas:jboss-as-deployment:jar:6.0.0.M1:test
+[INFO] | | \- org.jboss.javaee:jboss-jad-api:jar:1.2.0.GA:test
+[INFO] | +- org.jboss.bootstrap:jboss-bootstrap-impl-as:jar:2.0.0-alpha-4:test
+[INFO] | | +- org.jboss.bootstrap:jboss-bootstrap-impl-mc:jar:2.0.0-alpha-3:test
+[INFO] | | | +- org.mortbay.jetty:jetty:jar:6.1.16:test
+[INFO] | | | | +- org.mortbay.jetty:jetty-util:jar:6.1.16:test
+[INFO] | | | | \- org.mortbay.jetty:servlet-api:jar:2.5-20081211:test
+[INFO] | | | +- org.jboss.bootstrap:jboss-bootstrap-impl-base:jar:2.0.0-alpha-4:test
+[INFO] | | | | \- org.jboss.bootstrap:jboss-bootstrap-spi:jar:2.0.0-alpha-3:test
+[INFO] | | | \- org.jboss.bootstrap:jboss-bootstrap-spi-mc:jar:2.0.0-alpha-2:test
+[INFO] | | | \- org.jboss.bootstrap:jboss-bootstrap-api-mc:jar:2.0.0-alpha-1:test
+[INFO] | | \- org.jboss.bootstrap:jboss-bootstrap-spi-as:jar:2.0.0-alpha-4:test
+[INFO] | | \- org.jboss.bootstrap:jboss-bootstrap-api-as:jar:2.0.0-alpha-2:test (version managed from 2.0.0-alpha-1)
+[INFO] | | \- org.jboss.bootstrap:jboss-bootstrap-api:jar:2.0.0-alpha-2:test
+[INFO] | +- org.jboss.integration:jboss-deployment-spi:jar:5.1.0.SP1:test
+[INFO] | +- org.jboss.jpa:jboss-jpa-deployers:jar:1.0.1:test
+[INFO] | | +- org.jboss.jpa:jboss-jpa-impl:jar:2.0.0:test (version managed from 1.0.0)
+[INFO] | | | \- javax.validation:validation-api:jar:1.0.0.GA:test
+[INFO] | | \- org.jboss.jpa:jboss-jpa-spi:jar:1.0.0:test
+[INFO] | +- org.jboss.security:jbosssx:jar:2.0.4.SP2:test
+[INFO] | +- org.jboss.metadata:jboss-metadata:jar:1.0.2.Beta2:test
+[INFO] | | +- org.hibernate:ejb3-persistence:jar:1.0.2.GA:test
+[INFO] | | \- jboss.jbossws:jboss-jaxws:jar:3.0.1-native-2.0.4.GA:test
+[INFO] | +- org.jboss.jbossas:jboss-as-jmx:jar:6.0.0.M1:test
+[INFO] | | \- org.jboss.jbossas:jboss-as-mbeans:jar:6.0.0.M1:test
+[INFO] | +- org.jboss.jbossas:jboss-as-system:jar:6.0.0.M1:test
+[INFO] | +- org.jboss.javaee:jboss-ejb-api:jar:3.0.0.GA_SP1:test
+[INFO] | | \- org.jboss.ws.native:jbossws-native-jaxrpc:jar:3.2.1.GA:test (version managed from 3.0.4.GA)
+[INFO] | +- org.jboss.interceptor:jboss-interceptor-api:jar:1.0.1-CR1:test
+[INFO] | +- org.jboss.jbossas:jboss-as-security:jar:6.0.0.M1:test
+[INFO] | | \- org.apache:xmlsec:jar:1.4.3:test
+[INFO] | +- org.jboss.javaee:jboss-jacc-api:jar:1.1.0.GA_SP1:test
+[INFO] | | \- jboss.web:servlet-api:jar:2.1.6.GA:test (version managed from 2.1.1.GA)
+[INFO] | +- org.hibernate.java-persistence:jpa-api:jar:2.0-cr-1:test
+[INFO] | +- org.jboss.javaee:jboss-jms-api:jar:1.1.0.GA:test
+[INFO] | +- org.jboss.ws.native:jbossws-native-saaj:jar:3.2.1.GA:test
+[INFO] | +- javax.xml.ws:jaxws-api:jar:2.1:test
+[INFO] | +- org.jboss.javaee:jboss-jca-api:jar:1.5.0.GA:test
+[INFO] | +- bcel:bcel:jar:5.1:test
+[INFO] | \- org.jboss.naming:jnpserver:jar:5.0.4.GA:test
+[INFO] +- org.jboss:jboss-mdr:jar:2.0.2.GA:test
+[INFO] +- org.jboss.logging:jboss-logging-spi:jar:2.1.1.GA:test
+[INFO] +- org.jboss.logging:jboss-logging-log4j:jar:2.1.1.GA:test
+[INFO] | \- org.jboss.cl:jboss-classloading:jar:2.0.8.GA:test (version managed from 2.0.7.GA)
+[INFO] +- org.jboss.jbossas:jboss-as-security:jar:client:5.1.0.CR1:test
+[INFO] | +- javax.security:jaas:jar:1.0.01:test
+[INFO] | +- org.jboss.javaee:jboss-jaspi-api:jar:1.0.0.GA:test
+[INFO] | \- org.jboss.security:jbossxacml:jar:2.0.4:test
+[INFO] +- org.jboss.integration:jboss-transaction-spi:jar:5.1.0.SP1:test
+[INFO] | \- org.jboss.javaee:jboss-transaction-api:jar:1.0.1.GA:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-common:jar:client:1.0.1:test
+[INFO] | \- org.jboss.deployers:jboss-deployers-spi:jar:2.0.9.GA:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-core:jar:client:1.1.21:test
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:test
+[INFO] | | +- commons-collections:commons-collections:jar:3.1:test (version managed from 3.2.1)
+[INFO] | | +- antlr:antlr:jar:2.7.7:test
+[INFO] | | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:test
+[INFO] | | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:test
+[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:test
+[INFO] | | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:test
+[INFO] | +- org.hibernate:hibernate-annotations:jar:3.5.6-Final:test
+[INFO] | | +- org.hibernate:hibernate-commons-annotations:jar:3.2.0.Beta1:test (version managed from 3.2.0.Final)
+[INFO] | | \- org.slf4j:slf4j-api:jar:1.5.6:test
+[INFO] | +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:test
+[INFO] | +- org.jboss.integration:jboss-jca-spi:jar:5.0.3.GA:test
+[INFO] | +- org.jboss.cache:jbosscache-core:jar:3.2.1.GA:test
+[INFO] | | \- jgroups:jgroups:jar:2.6.13.GA:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-cache:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-common:jar:1.0.1:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-endpoint:jar:0.1.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-jpa-int:jar:2.0.0-alpha-1:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-security:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-timerservice-spi:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-ext-api-impl:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-interceptors:jar:1.0.5:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-metadata:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-proxy-impl:jar:1.0.6:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-proxy-clustered:jar:1.0.2:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-proxy-spi:jar:1.0.0:test
+[INFO] | +- org.jboss.ejb3:jboss-ejb3-transactions:jar:1.0.2:test
+[INFO] | +- org.jboss.ws:jbossws-spi:jar:1.2.1.GA:test
+[INFO] | +- quartz:quartz:jar:1.5.2:test
+[INFO] | +- sun-jaxws:jaxws-api:jar:2.1.1:test
+[INFO] | \- sun-jaxws:jsr181-api:jar:2.1.1:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-ext-api:jar:1.0.0:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-proxy-spi:jar:client:1.0.0:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-proxy-impl:jar:client:1.0.6:test
+[INFO] | \- org.jboss.microcontainer:jboss-aop-mc-int:jar:2.0.9.GA:test
+[INFO] +- org.jboss.ejb3:jboss-ejb3-security:jar:client:1.0.0:test
+[INFO] | \- org.jboss.aspects:jboss-current-invocation-aspects:jar:1.0.0.GA:test
+[INFO] +- org.jboss.microcontainer:jboss-dependency:jar:2.0.9.GA:test
+[INFO] +- org.jboss.security:jbosssx-client:jar:2.0.4.SP2:test
+[INFO] +- org.jboss.aspects:jboss-security-aspects:jar:1.0.1:test
+[INFO] +- org.jboss.aop:jboss-aop:jar:client:2.1.6.GA:test
+[INFO] | +- org.apache.ant:ant:jar:1.7.1:test
+[INFO] | | \- org.apache.ant:ant-launcher:jar:1.7.1:test
+[INFO] | \- qdox:qdox:jar:1.6.1:test
+[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:test
+[INFO] +- org.jboss:jboss-reflect:jar:2.0.2.GA:test
+[INFO] +- jboss:jboss-serialization:jar:1.0.3.GA:test
+[INFO] +- org.jboss.deployers:jboss-deployers-core-spi:jar:2.0.9.GA:test
+[INFO] +- org.jboss.deployers:jboss-deployers-client-spi:jar:2.0.9.GA:test
+[INFO] +- org.jboss.jbossas:jboss-as-profileservice:jar:client:6.0.0.M1:test
+[INFO] | +- org.jboss.jbossas:jboss-as-aspects:jar:6.0.0.M1:test
+[INFO] | +- org.jboss.deployers:jboss-deployers-vfs-spi:jar:2.0.9.GA:test
+[INFO] | +- org.jboss.deployers:jboss-deployers-structure-spi:jar:2.0.9.GA:test
+[INFO] | \- stax:stax-api:jar:1.0:test
+[INFO] +- org.jboss.jbossas:jboss-as-server:jar:jmx-invoker-adaptor-client:6.0.0.M1:test
+[INFO] +- jboss.messaging:jboss-messaging-client:jar:1.4.3.GA:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | \- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.0:test (version managed from 1.8.2)
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.5:test (version managed from 2.5.2)
+[INFO] | | +- org.springframework:spring-core:jar:2.5.5:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.5:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.4:test (version managed from 2.3)
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:1.3.0:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Database Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-database-plugin ---
+[INFO] org.rhq:rhq-database-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- com.h2database:h2:jar:1.2.139:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Postgres Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-postgres-plugin ---
+[INFO] org.rhq:rhq-postgres-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:test
+[INFO] +- org.rhq:rhq-database-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Script Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-script-plugin ---
+[INFO] org.rhq:rhq-script-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ IIS Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-iis-plugin ---
+[INFO] org.rhq:rhq-iis-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ File Template Bundle Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-filetemplate-bundle-plugin ---
+[INFO] org.rhq:rhq-filetemplate-bundle-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-filetemplate-bundle-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Ant Bundle Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-ant-bundle-plugin ---
+[INFO] org.rhq:rhq-ant-bundle-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-ant-bundle-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- org.apache.ant:ant:jar:1.8.0:compile
+[INFO] | +- org.apache.ant:ant-launcher:jar:1.8.0:compile
+[INFO] | +- org.apache.ant:ant-nodeps:jar:1.8.0:compile
+[INFO] | +- ant-contrib:ant-contrib:jar:1.0b3:provided (scope managed from runtime)
+[INFO] | \- org.liquibase:liquibase-core:jar:1.9.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Augeas-based Cron Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-cron-plugin ---
+[INFO] org.rhq:rhq-cron-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ GRUB Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-grub-plugin ---
+[INFO] org.rhq:rhq-grub-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] +- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Hosts File Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-hosts-plugin ---
+[INFO] org.rhq:rhq-hosts-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Cobbler File Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-cobbler-plugin ---
+[INFO] org.rhq:rhq-cobbler-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- commons-io:commons-io:jar:1.4:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Augeas-based Sudoers Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-sudoers-plugin ---
+[INFO] org.rhq:rhq-sudoers-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Network Services Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-netservices-plugin ---
+[INFO] org.rhq:rhq-netservices-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] +- commons-codec:commons-codec:jar:1.4:compile
+[INFO] +- org.mockito:mockito-core:jar:1.9.5:test
+[INFO] | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | \- org.objenesis:objenesis:jar:1.0:test
+[INFO] +- org.eclipse.jetty.aggregate:jetty-all:jar:8.1.8.v20121106:test
+[INFO] | \- org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Augeas-based Samba Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-samba-plugin ---
+[INFO] org.rhq:rhq-samba-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Augeas-based Postfix Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-postfix-plugin ---
+[INFO] org.rhq:rhq-postfix-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Aliases File Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-aliases-plugin ---
+[INFO] org.rhq:rhq-aliases-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- org.rhq:rhq-augeas-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-platform-plugin:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] | \- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test (scope not updated to compile)
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:test
+[INFO] | \- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test (scope not updated to compile)
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ SSHD Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-sshd-plugin ---
+[INFO] org.rhq:rhq-sshd-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- ant-contrib:ant-contrib:jar:1.0b3:provided
+[INFO] | \- ant:ant:jar:1.5:provided
+[INFO] +- net.augeas:augeas:jar:0.0.2:compile
+[INFO] +- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Byteman Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-byteman-plugin ---
+[INFO] org.rhq:rhq-byteman-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.byteman:byteman:jar:1.2.1:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ IRC Server Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-irc-plugin ---
+[INFO] org.rhq:rhq-irc-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- pircbot:pircbot:jar:1.4.2:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Hadoop Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ hadoop-plugin ---
+[INFO] org.rhq:hadoop-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Hudson Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-hudson-plugin ---
+[INFO] org.rhq:rhq-hudson-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.json:json:jar:20080701:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ MySql Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-mysql-plugin ---
+[INFO] org.rhq:rhq-mysql-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- mysql:mysql-connector-java:jar:5.1.6:test
+[INFO] +- org.rhq:rhq-database-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Oracle Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-oracle-plugin ---
+[INFO] org.rhq:rhq-oracle-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-database-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Performance Test Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-perftest-plugin ---
+[INFO] org.rhq:rhq-perftest-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.4.Final:compile
+[INFO] +- com.sun.xml.bind:jaxb-impl:jar:2.2.4:compile
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:compile
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:compile
+[INFO] | \- javax.activation:activation:jar:1.1:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Script2 Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-script2-plugin ---
+[INFO] org.rhq:rhq-script2-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jruby:jruby-complete:jar:1.4.0:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ SnmpTrapd Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-snmptrapd-plugin ---
+[INFO] org.rhq:rhq-snmptrapd-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- javax.xml.bind:jaxb-api:jar:2.1:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Twitter Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-twitter-plugin ---
+[INFO] org.rhq:rhq-twitter-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.twitter4j:twitter4j-core:jar:2.2.4:compile
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Virtualization Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-virt-plugin ---
+[INFO] org.rhq:rhq-virt-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- net.java.dev.jna:jna:jar:3.2.5:compile
+[INFO] +- org.libvirt:libvirt:jar:0.4.1:compile
+[INFO] +- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Kickstart Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-kickstart-plugin ---
+[INFO] org.rhq:rhq-kickstart-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ pattern Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ pattern-plugin ---
+[INFO] org.rhq:pattern-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Cassandra Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-cassandra-plugin ---
+[INFO] org.rhq:rhq-cassandra-plugin:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-jmx-plugin:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- mc4j:org-mc4j-ems:jar:1.3:provided
+[INFO] | \- com.sun:tools:jar:1.6.0:system
+[INFO] +- org.apache.cassandra:cassandra-all:jar:1.1.5:compile
+[INFO] | +- org.xerial.snappy:snappy-java:jar:1.0.4.1:compile
+[INFO] | +- com.ning:compress-lzf:jar:0.8.4:compile
+[INFO] | +- com.google.guava:guava:jar:r08:compile
+[INFO] | +- commons-cli:commons-cli:jar:1.1:compile
+[INFO] | +- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.3:compile
+[INFO] | +- org.antlr:antlr:jar:3.2:compile
+[INFO] | | \- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | | \- antlr:antlr:jar:2.7.7:compile
+[INFO] | +- org.slf4j:slf4j-api:jar:1.6.1:compile
+[INFO] | +- org.apache.cassandra.deps:avro:jar:1.4.0-cassandra-1:compile
+[INFO] | | \- org.mortbay.jetty:jetty:jar:6.1.22:compile
+[INFO] | | +- org.mortbay.jetty:jetty-util:jar:6.1.22:compile
+[INFO] | | \- org.mortbay.jetty:servlet-api:jar:2.5-20081211:compile
+[INFO] | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile
+[INFO] | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.2:compile
+[INFO] | +- jline:jline:jar:0.9.94:compile
+[INFO] | +- com.googlecode.json-simple:json-simple:jar:1.1:compile
+[INFO] | +- com.github.stephenc.high-scale-lib:high-scale-lib:jar:1.1.2:compile
+[INFO] | +- edu.stanford.ppl:snaptree:jar:0.1:compile
+[INFO] | +- com.yammer.metrics:metrics-core:jar:2.0.3:compile
+[INFO] | +- org.slf4j:slf4j-log4j12:jar:1.6.1:runtime
+[INFO] | +- org.apache.cassandra:cassandra-thrift:jar:1.1.5:compile
+[INFO] | \- com.github.stephenc:jamm:jar:0.2.5:compile
+[INFO] +- org.apache.thrift:libthrift:jar:0.7.0:compile
+[INFO] | +- javax.servlet:servlet-api:jar:2.5:compile
+[INFO] | \- org.apache.httpcomponents:httpclient:jar:4.0.1:compile
+[INFO] | \- org.apache.httpcomponents:httpcore:jar:4.0.1:compile
+[INFO] +- org.hectorclient:hector-core:jar:1.1-1:compile
+[INFO] | +- commons-pool:commons-pool:jar:1.5.3:compile
+[INFO] | +- com.github.stephenc.eaio-uuid:uuid:jar:3.2.0:compile
+[INFO] | \- com.ecyrd.speed4j:speed4j:jar:0.9:compile
+[INFO] +- org.yaml:snakeyaml:jar:1.10:compile
+[INFO] +- org.rhq:rhq-core-plugin-test-api:pom:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-arquillian-agent-plugin-container-embedded:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | | | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] | | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | | \- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | +- org.rhq:rhq-shrinkwrap-agent-plugin-archive:jar:4.7.0-SNAPSHOT:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] | +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.rhq:rhq-core-plugin-test-util:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided (scope not updated to compile)
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Validate All Plugins 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ validate-all-plugins ---
+[INFO] org.rhq:validate-all-plugins:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | \- javax.activation:activation:jar:1.1:provided
+[INFO] +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- net.augeas:augeas-native:zip:el5:0.9.0-4:test
+[INFO] | \- commons-io:commons-io:jar:1.4:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:hibernate-all:jar:1.0.0.Alpha9:provided
+[INFO] +- org.rhq:rhq-core-plugin-container:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Helpers 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-helpers ---
+[INFO] org.rhq.helpers:rhq-helpers:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Response-Time Filter 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rtfilter ---
+[INFO] org.rhq.helpers:rhq-rtfilter:jar:4.7.0-SNAPSHOT
+[INFO] +- javax.servlet:servlet-api:jar:2.3:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.1:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Response-Time Filter - JBoss AS7 Subsystem 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rtfilter-subsystem ---
+[INFO] org.rhq.helpers:rhq-rtfilter-subsystem:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss:jboss-dmr:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:provided
+[INFO] | +- org.jboss.msc:jboss-msc:jar:1.0.2.GA:provided
+[INFO] | +- org.jboss:staxmapper:jar:1.1.0.Final:provided
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:provided
+[INFO] +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:provided
+[INFO] | | \- system:jdk-tools:jar:jdk:system
+[INFO] | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-api:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss:jandex:jar:1.0.3.Final:provided
+[INFO] | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:provided
+[INFO] | +- org.jboss.marshalling:jboss-marshalling:jar:1.3.11.GA:provided
+[INFO] | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:provided
+[INFO] | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:provided
+[INFO] | +- org.jboss.threads:jboss-threads:jar:2.0.0.GA:provided
+[INFO] | \- org.jboss:jboss-vfs:jar:3.1.0.Final:provided
+[INFO] +- org.jboss.as:jboss-as-ee:jar:7.1.1.Final:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- org.hibernate:hibernate-validator:jar:4.2.0.Final:provided
+[INFO] | | \- org.slf4j:slf4j-api:jar:1.6.1:provided
+[INFO] | +- org.jboss.interceptor:jboss-interceptor-spi:jar:2.0.0.Final:provided
+[INFO] | +- org.jboss.metadata:jboss-metadata-common:jar:7.0.1.Final:provided
+[INFO] | +- org.jboss.metadata:jboss-metadata-ear:jar:7.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss:jboss-remote-naming:jar:1.0.2.Final:provided
+[INFO] | | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:provided
+[INFO] | \- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] +- org.jboss.as:jboss-as-web:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.2.Final:provided (version managed from 2.0.1.Final)
+[INFO] | +- com.sun.faces:jsf-impl:jar:2.1.7-jbossorg-2:provided
+[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | +- org.jboss.as:jboss-as-clustering-web-spi:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.as:jboss-as-clustering-api:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-security:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-clustering-infinispan:jar:7.1.1.Final:provided
+[INFO] | | | +- org.jboss.as:jboss-as-clustering-jgroups:jar:7.1.1.Final:provided
+[INFO] | | | | +- org.jboss.as:jboss-as-clustering-common:jar:7.1.1.Final:provided
+[INFO] | | | | \- org.jgroups:jgroups:jar:3.0.6.Final:provided
+[INFO] | | | +- org.jboss.as:jboss-as-jmx:jar:7.1.1.Final:provided
+[INFO] | | | | +- org.jboss.remotingjmx:remoting-jmx:jar:1.0.2.Final:provided
+[INFO] | | | | \- org.jboss.marshalling:jboss-marshalling-river:jar:1.3.11.GA:provided
+[INFO] | | | +- org.infinispan:infinispan-core:jar:5.1.2.FINAL:provided
+[INFO] | | | | \- org.rhq.helpers:rhq-pluginAnnotations:jar:3.0.4:provided
+[INFO] | | | +- org.infinispan:infinispan-cachestore-jdbc:jar:5.1.2.FINAL:provided
+[INFO] | | | +- org.infinispan:infinispan-cachestore-remote:jar:5.1.2.FINAL:provided
+[INFO] | | | +- org.infinispan:infinispan-client-hotrod:jar:5.1.2.FINAL:provided
+[INFO] | | | \- net.jcip:jcip-annotations:jar:1.0:provided
+[INFO] | | +- org.jboss.as:jboss-as-transactions:jar:7.1.1.Final:provided
+[INFO] | | | +- org.jacorb:jacorb:jar:2.3.1.jbossorg-1:provided
+[INFO] | | | +- org.jboss:jboss-transaction-spi:jar:7.0.0.Final:provided
+[INFO] | | | +- org.jboss.jbossts:jbossjts:jar:4.16.2.Final:provided
+[INFO] | | | | +- org.hornetq:hornetq-core:jar:2.2.7.Final:provided
+[INFO] | | | | +- org.jboss.netty:netty:jar:3.2.5.Final:provided
+[INFO] | | | | \- org.jboss.ws:jbossws-api:jar:1.0.0.CR1:provided
+[INFO] | | | +- org.jboss.jbossts:jbossjts-integration:jar:4.16.2.Final:provided
+[INFO] | | | \- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
+[INFO] | | +- org.jboss.security:jboss-negotiation-extras:jar:2.2.0.SP1:provided
+[INFO] | | | \- org.jboss.security:jboss-negotiation-common:jar:2.2.0.SP1:provided
+[INFO] | | +- org.jboss.security:jboss-negotiation-spnego:jar:2.2.0.SP1:provided
+[INFO] | | +- org.picketbox:picketbox:jar:4.0.7.Final:provided
+[INFO] | | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.2.Final:provided (version managed from 1.0.1.Final)
+[INFO] | | +- org.picketbox:picketbox-infinispan:jar:4.0.7.Final:provided
+[INFO] | | \- org.picketbox:picketbox-commons:jar:1.0.0.final:provided
+[INFO] | +- org.jboss.metadata:jboss-metadata-web:jar:7.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
+[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.1.Final:provided (version managed from 1.0.0.Final)
+[INFO] | | \- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.web:jasper-jdt:jar:7.0.3.Final:provided
+[INFO] | \- org.jboss.web:jbossweb:jar:7.0.13.Final:provided
+[INFO] +- org.rhq.helpers:rhq-rtfilter:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.jboss.as:jboss-as-subsystem-test:jar:7.1.1.Final:test
+[INFO] | \- junit:junit:jar:4.10:test
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building bundleGen 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ bundleGen ---
+[INFO] org.rhq.helpers:bundleGen:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.freemarker:freemarker:jar:2.3.11:compile
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building jeeGen 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ jeeGen ---
+[INFO] org.rhq.helpers:jeeGen:jar:4.7.0-SNAPSHOT
+[INFO] +- org.freemarker:freemarker:jar:2.3.18:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:compile
+[INFO] +- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:compile
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:compile
+[INFO] +- javax.ejb:ejb-api:jar:3.0:compile
+[INFO] +- javax.jms:jms-api:jar:1.1-rev-1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building Performance Testing Support 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ perftest-support ---
+[INFO] org.rhq.helpers:perftest-support:jar:4.7.0-SNAPSHOT
+[INFO] +- ant:ant:jar:1.6.5:compile
+[INFO] +- ant:ant-launcher:jar:1.6.5:runtime
+[INFO] +- org.dbunit:dbunit:jar:2.4.8:compile
+[INFO] | +- org.slf4j:slf4j-api:jar:1.5.6:compile
+[INFO] | \- commons-collections:commons-collections:jar:3.2.1:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.testng:testng:jar:6.5.2:compile
+[INFO] | +- junit:junit:jar:4.10:compile
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:compile
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
+[INFO] | +- com.beust:jcommander:jar:1.12:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] +- org.slf4j:slf4j-jcl:jar:1.5.6:runtime
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:runtime (scope not updated to compile)
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:runtime
+[INFO] +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- jdom:jdom:jar:1.0:compile
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.apache.poi:poi:jar:3.7:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building rest-docs-generator 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rest-docs-generator ---
+[INFO] org.rhq.helpers:rest-docs-generator:jar:4.7.0-SNAPSHOT
+[INFO] +- javax.ws.rs:jsr311-api:jar:1.1.1:compile
+[INFO] +- javax.ejb:ejb-api:jar:3.0:compile
+[INFO] +- com.wordnik:swagger-annotations_2.9.1:jar:1.1.1-SNAPSHOT:compile
+[INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.4.Final:compile
+[INFO] | +- org.jboss.resteasy:jaxrs-api:jar:2.3.4.Final:compile
+[INFO] | +- org.scannotation:scannotation:jar:1.0.3:compile
+[INFO] | | \- javassist:javassist:jar:3.12.1.GA:compile
+[INFO] | +- javax.annotation:jsr250-api:jar:1.0:compile
+[INFO] | +- javax.activation:activation:jar:1.1:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.1:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:compile
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:compile
+[INFO] | \- net.jcip:jcip-annotations:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Agent Update 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-agentupdate ---
+[INFO] org.rhq:rhq-enterprise-agentupdate:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-agent:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | | \- jdom:jdom:jar:1.0:provided
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- org.rhq:rhq-core-plugin-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | | \- org.hyperic:sigar-dist:zip:1.6.5.132-5:provided
+[INFO] | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | | +- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] | | \- javax.activation:activation:jar:1.1:provided
+[INFO] | +- org.rhq:rhq-core-plugin-container:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.hyperic:sigar:jar:1.6.5.132-5:provided
+[INFO] | | +- net.augeas:augeas-native:zip:el5:0.9.0-4:provided
+[INFO] | | \- commons-io:commons-io:jar:1.4:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jline:jline:jar:0.9.94:provided
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | \- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] +- org.apache.ant:ant:jar:1.7.1:provided
+[INFO] +- org.apache.ant:ant-launcher:jar:1.7.1:provided
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Server XML Schemas 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-xml-schemas ---
+[INFO] org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.4.Final:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Safe Invoker 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ safe-invoker ---
+[INFO] org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT
+[INFO] +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
+[INFO] | +- commons-collections:commons-collections:jar:3.2.1:provided
+[INFO] | +- antlr:antlr:jar:2.7.7:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:provided
+[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:provided
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server JAR 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server ---
+[INFO] org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- jdom:jdom:jar:1.0:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- commons-io:commons-io:jar:1.4:compile
+[INFO] +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss:staxmapper:jar:1.1.0.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:provided
+[INFO] | | \- system:jdk-tools:jar:jdk:system
+[INFO] | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-api:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss:jandex:jar:1.0.3.Final:provided
+[INFO] | +- org.jboss:jboss-dmr:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:provided
+[INFO] | +- org.jboss.marshalling:jboss-marshalling:jar:1.3.11.GA:provided
+[INFO] | +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:provided
+[INFO] | +- org.jboss.msc:jboss-msc:jar:1.0.2.GA:provided
+[INFO] | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:provided
+[INFO] | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:provided
+[INFO] | +- org.jboss.threads:jboss-threads:jar:2.0.0.GA:provided
+[INFO] | +- org.jboss:jboss-vfs:jar:3.1.0.Final:provided
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:provided
+[INFO] +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:provided
+[INFO] | \- org.jboss:jboss-remote-naming:jar:1.0.2.Final:provided
+[INFO] | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:provided
+[INFO] +- org.jboss.spec:jboss-javaee-6.0:pom:3.0.0.Final:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- javax.enterprise:cdi-api:jar:1.0-SP4:provided
+[INFO] | +- javax.inject:javax.inject:jar:1:provided
+[INFO] | +- javax.jws:jsr181-api:jar:1.0-MR1:provided
+[INFO] | +- javax.mail:mail:jar:1.4.4:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.enterprise.deploy:jboss-jad-api_1.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.management.j2ee:jboss-j2eemgmt-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.registry:jboss-jaxr-api_1.0_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jstl:jboss-jstl-api_1.2_spec:jar:1.0.3.Final:provided
+[INFO] | | \- xalan:xalan:jar:2.7.1.jbossorg-2:provided
+[INFO] | | \- xalan:serializer:jar:2.7.1.jbossorg-2:provided
+[INFO] | +- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.4.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.rpc:jboss-jaxrpc-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:jar:1.0.2.Final:provided
+[INFO] | \- org.jboss.spec.javax.xml.ws:jboss-jaxws-api_2.2_spec:jar:2.0.1.Final:provided
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] +- antlr:antlr:jar:2.7.7:provided (version managed from 2.7.6)
+[INFO] +- org.infinispan:infinispan-core:jar:5.1.2.FINAL:provided
+[INFO] | +- org.jgroups:jgroups:jar:3.0.6.Final:provided
+[INFO] | +- org.jboss.marshalling:jboss-marshalling-river:jar:1.3.6.GA:provided
+[INFO] | +- org.codehaus.woodstox:woodstox-core-asl:jar:4.1.1:provided
+[INFO] | +- org.codehaus.woodstox:stax2-api:jar:3.1.1:provided
+[INFO] | \- org.rhq.helpers:rhq-pluginAnnotations:jar:3.0.4:provided
+[INFO] +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | +- junit:junit:jar:3.8.1:compile
+[INFO] | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
+[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:provided
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided (scope not updated to compile)
+[INFO] | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] +- org.jboss.ejb3:jboss-ejb3-ext-api:jar:2.0.0:provided
+[INFO] +- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:provided
+[INFO] +- org.jboss.spec.javax.jms:jboss-jms-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] +- org.picketbox:picketbox:jar:4.0.7.Final:provided
+[INFO] +- org.jboss.jbossts:jbossjts:jar:4.16.2.Final:provided
+[INFO] | +- emma:emma:jar:2.0.5312:provided
+[INFO] | +- emma:emma_ant:jar:2.0.5312:provided
+[INFO] | | \- ant:ant:jar:1.6.3:provided
+[INFO] | +- org.hornetq:hornetq-core:jar:2.2.7.Final:provided
+[INFO] | +- org.jboss.netty:netty:jar:3.2.5.Final:provided
+[INFO] | +- tanukisoft:wrapper:jar:3.2.3:provided
+[INFO] | +- jacorb:jacorb:jar:2.3.1jboss.patch01-brew:provided
+[INFO] | +- jacorb:idl:jar:2.3.1jboss.patch01-brew:provided
+[INFO] | +- org.jboss:jboss-transaction-spi:jar:7.0.0.CR1:provided
+[INFO] | +- org.jboss.integration:jboss-corba-ots-spi:jar:6.0.0.CR1:provided
+[INFO] | | \- org.jboss.javaee:jboss-transaction-api:jar:1.0.1.GA:provided
+[INFO] | +- org.jboss.jbossas:jboss-server-manager:jar:1.0.4.Final:provided
+[INFO] | | +- org.jboss.naming:jnp-client:jar:5.0.5.Final:provided
+[INFO] | | +- org.picketbox:jbosssx-client:jar:3.0.0.CR2:provided
+[INFO] | | \- org.picketbox:jboss-security-spi:jar:3.0.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging-processor:jar:1.0.0.CR4:provided
+[INFO] | | \- org.jboss.logging:jboss-logging-generator:jar:1.0.0.CR4:provided
+[INFO] | \- org.jboss.ws:jbossws-api:jar:1.0.0.CR1:provided
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:provided
+[INFO] +- org.opensymphony.quartz:quartz-oracle:jar:1.6.5:provided
+[INFO] +- org.easymock:easymockclassextension:jar:2.2:test
+[INFO] | +- org.easymock:easymock:jar:2.2:test
+[INFO] | \- cglib:cglib-nodep:jar:2.1_3:test
+[INFO] +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4:compile
+[INFO] +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] +- tomcat:catalina:jar:5.5.20:provided
+[INFO] +- tomcat:tomcat-jk:jar:4.1.31:provided
+[INFO] +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.4.Final:provided
+[INFO] | +- org.jboss.resteasy:jaxrs-api:jar:2.3.4.Final:provided
+[INFO] | +- org.scannotation:scannotation:jar:1.0.3:provided
+[INFO] | | \- javassist:javassist:jar:3.12.1.GA:provided
+[INFO] | +- javax.annotation:jsr250-api:jar:1.0:provided
+[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:provided
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:provided
+[INFO] | \- net.jcip:jcip-annotations:jar:1.0:provided
+[INFO] +- org.jboss.resteasy:resteasy-jackson-provider:jar:2.3.4.Final:provided
+[INFO] | +- org.codehaus.jackson:jackson-core-asl:jar:1.8.5:provided
+[INFO] | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.8.5:provided
+[INFO] | +- org.codehaus.jackson:jackson-jaxrs:jar:1.8.5:provided
+[INFO] | \- org.codehaus.jackson:jackson-xc:jar:1.8.5:provided
+[INFO] +- org.jboss.resteasy:resteasy-links:jar:2.3.4.Final:provided
+[INFO] | \- org.jboss.el:jboss-el:jar:1.0_02.CR4:provided
+[INFO] | \- javax.el:el-api:jar:1.0:provided
+[INFO] +- org.jboss.resteasy:resteasy-yaml-provider:jar:2.3.4.Final:provided
+[INFO] +- org.jboss.resteasy:resteasy-jaxb-provider:jar:2.3.4.Final:provided
+[INFO] +- com.wordnik:swagger-annotations_2.9.1:jar:1.1.1-SNAPSHOT:provided
+[INFO] +- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.freemarker:freemarker:jar:2.3.18:provided
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.rhq.helpers:rest-docs-generator:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- javax.ws.rs:jsr311-api:jar:1.1.1:provided
+[INFO] | \- javax.ejb:ejb-api:jar:3.0:provided
+[INFO] +- org.rhq:rhq-core-domain:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server JBoss AS SARs 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-sars-parent ---
+[INFO] org.rhq:rhq-enterprise-server-sars-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Internal Services SAR 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-services-sar ---
+[INFO] org.rhq:rhq-enterprise-server-services-sar:jboss-sar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Modules 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-parent ---
+[INFO] org.rhq:rhq-enterprise-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Scripting Parent Module 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-scripting-parent ---
+[INFO] org.rhq:rhq-scripting-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Scripting API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-scripting-api ---
+[INFO] org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Javascript support 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-scripting-javascript ---
+[INFO] org.rhq:rhq-scripting-javascript:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.mozilla:rhino:jar:1.7R4:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Python support 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-scripting-python ---
+[INFO] org.rhq:rhq-scripting-python:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.python:jython-standalone:jar:2.5.2:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Script Bindings 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-script-bindings ---
+[INFO] org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-scripting-javascript:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-scripting-python:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- commons-lang:commons-lang:jar:2.4:test
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] +- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:test
+[INFO] +- org.rhq:rhq-core-domain:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Remote Client API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-remoting-client-api ---
+[INFO] org.rhq:rhq-remoting-client-api:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | \- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] | \- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Remote Client Dependencies 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ remote-client-deps ---
+[INFO] org.rhq:remote-client-deps:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-remoting-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | | | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | | | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | | | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | | | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] | | \- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- log4j:log4j:jar:1.2.14:compile
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Remote CLI 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-remoting-cli ---
+[INFO] org.rhq:rhq-remoting-cli:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-remoting-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] +- org.rhq:rhq-scripting-javascript:jar:4.7.0-SNAPSHOT:runtime
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:compile
+[INFO] +- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- jline:jline:jar:0.9.94:compile
+[INFO] | \- junit:junit:jar:3.8.1:compile
+[INFO] +- org.testng:testng:jar:6.5.2:compile
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:compile
+[INFO] | +- com.beust:jcommander:jar:1.12:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:compile
+[INFO] +- log4j:log4j:jar:1.2.16:runtime
+[INFO] +- commons-lang:commons-lang:jar:2.4:test
+[INFO] +- org.rhq:rhq-core-domain:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-scripting-python:jar:4.7.0-SNAPSHOT:runtime
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Remoting Parent POM 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-remoting-parent ---
+[INFO] org.rhq:rhq-remoting-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ REST interface 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rest ---
+[INFO] org.rhq:rhq-rest:war:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:provided
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- commons-io:commons-io:jar:1.4:provided
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:provided
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:provided
+[INFO] | +- commons-collections:commons-collections:jar:3.2:provided
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | +- commons-lang:commons-lang:jar:2.4:provided
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:provided
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:provided
+[INFO] +- javax.servlet:javax.servlet-api:jar:3.0.1:provided
+[INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.4.Final:provided
+[INFO] | +- org.jboss.resteasy:jaxrs-api:jar:2.3.4.Final:provided
+[INFO] | +- org.scannotation:scannotation:jar:1.0.3:provided
+[INFO] | | \- javassist:javassist:jar:3.12.1.GA:provided
+[INFO] | +- javax.annotation:jsr250-api:jar:1.0:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:provided
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:provided
+[INFO] | \- net.jcip:jcip-annotations:jar:1.0:provided
+[INFO] +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Portal 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-portal ---
+[INFO] org.rhq:rhq-portal:war:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-gui:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:provided
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:provided
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:provided
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:provided
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | \- jdom:jdom:jar:1.0:provided
+[INFO] +- com.sun.facelets:jsf-facelets:jar:1.1.15.B1:compile
+[INFO] +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] +- commons-dbcp:commons-dbcp:jar:1.2.1:compile
+[INFO] | +- commons-pool:commons-pool:jar:1.2:compile
+[INFO] | \- xml-apis:xml-apis:jar:1.0.b2:compile
+[INFO] +- commons-el:commons-el:jar:1.0:compile
+[INFO] +- commons-fileupload:commons-fileupload:jar:1.2:compile
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] +- commons-io:commons-io:jar:1.3.1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.0.4:provided (scope not updated to compile)
+[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
+[INFO] | | \- antlr:antlr:jar:2.7.7:provided
+[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- javax.el:el-api:jar:1.0:provided
+[INFO] +- javax.servlet:servlet-api:jar:2.4:provided
+[INFO] +- javax.servlet:jsp-api:jar:2.0:provided
+[INFO] +- javax.faces:jsf-api:jar:1.2_14:provided
+[INFO] +- javax.faces:jsf-impl:jar:1.2_14:provided
+[INFO] +- org.apache.geronimo.specs:geronimo-javamail_1.3.1_spec:jar:1.3:provided
+[INFO] +- javax.servlet:jstl:jar:1.1.2:compile
+[INFO] +- junit:junit:jar:3.8.2:compile
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:provided
+[INFO] +- org.opensymphony.quartz:quartz-oracle:jar:1.6.5:provided
+[INFO] +- org.jvnet:inflector:jar:0.7.0:compile
+[INFO] +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
+[INFO] | \- commons-beanutils:commons-beanutils:jar:1.8.0:compile
+[INFO] +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
+[INFO] | \- commons-digester:commons-digester:jar:1.8.1:compile
+[INFO] +- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
+[INFO] +- struts:struts:jar:1.2.9:compile
+[INFO] | \- oro:oro:jar:2.0.7:compile
+[INFO] +- struts:struts-el:jar:1.2.9:compile
+[INFO] +- struts-menu:struts-menu:jar:2.3:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | \- hsqldb:hsqldb:jar:1.7.1:compile
+[INFO] +- taglibs:standard:jar:1.1.2:compile
+[INFO] +- xalan:xalan:jar:2.5.1:provided (scope not updated to compile)
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided (scope not updated to compile)
+[INFO] +- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] +- org.codehaus.groovy:groovy-all:jar:1.6.4:compile
+[INFO] | +- org.apache.ant:ant:jar:1.7.1:compile
+[INFO] | | \- org.apache.ant:ant-launcher:jar:1.7.1:compile
+[INFO] | \- jline:jline:jar:0.9.94:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided (scope not updated to compile)
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise GUI 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-gui-parent ---
+[INFO] org.rhq:rhq-enterprise-gui-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Content HTTP Support 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-content_http ---
+[INFO] org.rhq:rhq-content_http:war:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-gui:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.richfaces.framework:richfaces-api:jar:3.3.3.Final:compile
+[INFO] | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | \- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- org.richfaces.framework:richfaces-impl:jar:3.3.3.Final:compile
+[INFO] | | \- commons-digester:commons-digester:jar:1.8.1:compile
+[INFO] | \- org.richfaces.ui:richfaces-ui:jar:3.3.3.Final:compile
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:provided
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:provided
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:provided
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:provided
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- dom4j:dom4j:jar:1.6.1:provided
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:provided
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided
+[INFO] | | \- antlr:antlr:jar:2.7.7:provided
+[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.javassist:javassist:jar:3.15.0-GA:provided
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] +- javax.servlet:servlet-api:jar:2.4:provided
+[INFO] +- jboss.web:jbossweb:jar:2.0.1.GA:provided
+[INFO] +- commons-codec:commons-codec:jar:1.4:compile
+[INFO] +- commons-fileupload:commons-fileupload:jar:1.2:compile
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
+[INFO] | \- junit:junit:jar:3.8.1:provided
+[INFO] +- commons-io:commons-io:jar:1.3.1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.0.4:provided (scope not updated to compile)
+[INFO] +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Core GUI 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-coregui ---
+[INFO] org.rhq:rhq-coregui:war:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:provided
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:provided
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:provided
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:provided
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:provided
+[INFO] | +- commons-collections:commons-collections:jar:3.2:provided
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:provided
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] | +- commons-lang:commons-lang:jar:2.4:provided
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:provided
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:provided
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:provided
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:provided
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:provided
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- jdom:jdom:jar:1.0:provided
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] +- com.google.gwt:gwt-servlet:jar:2.5.0:compile
+[INFO] +- com.google.gwt:gwt-user:jar:2.5.0:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- javax.validation:validation-api:jar:sources:1.0.0.GA:provided
+[INFO] | \- org.json:json:jar:20090211:provided
+[INFO] +- com.google.gwt:gwt-dev:jar:2.5.0:provided
+[INFO] +- com.smartgwt:smartgwt:jar:3.0:compile
+[INFO] +- com.googlecode.gflot:gflot:jar:2.4.3:provided
+[INFO] +- commons-fileupload:commons-fileupload:jar:1.2:compile
+[INFO] +- commons-io:commons-io:jar:1.3.1:compile
+[INFO] +- commons-logging:commons-logging:jar:1.0.4:provided (scope not updated to compile)
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:provided
+[INFO] +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] +- org.hibernate:hibernate-annotations:jar:3.5.6-Final:provided
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:provided (version managed from 3.5.6-Final)
+[INFO] | | +- antlr:antlr:jar:2.7.7:provided
+[INFO] | | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | | +- org.javassist:javassist:jar:3.15.0-GA:provided
+[INFO] | | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:provided
+[INFO] | +- org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final:provided
+[INFO] | \- org.slf4j:slf4j-api:jar:1.5.8:provided
+[INFO] +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:provided
+[INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.4.Final:provided
+[INFO] | +- org.jboss.resteasy:jaxrs-api:jar:2.3.4.Final:provided
+[INFO] | +- org.scannotation:scannotation:jar:1.0.3:provided
+[INFO] | | \- javassist:javassist:jar:3.12.1.GA:provided
+[INFO] | +- javax.annotation:jsr250-api:jar:1.0:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:provided
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:provided
+[INFO] | \- net.jcip:jcip-annotations:jar:1.0:provided
+[INFO] +- org.apache.xmlgraphics:batik-transcoder:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:fop:jar:0.94:compile
+[INFO] | | +- org.apache.xmlgraphics:xmlgraphics-commons:jar:1.2:compile
+[INFO] | | +- org.apache.avalon.framework:avalon-framework-api:jar:4.3.1:compile
+[INFO] | | \- org.apache.avalon.framework:avalon-framework-impl:jar:4.3.1:compile
+[INFO] | +- org.apache.xmlgraphics:batik-awt-util:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-bridge:jar:1.7:compile
+[INFO] | | +- org.apache.xmlgraphics:batik-anim:jar:1.7:compile
+[INFO] | | +- org.apache.xmlgraphics:batik-css:jar:1.7:compile
+[INFO] | | +- org.apache.xmlgraphics:batik-ext:jar:1.7:compile
+[INFO] | | +- org.apache.xmlgraphics:batik-parser:jar:1.7:compile
+[INFO] | | +- org.apache.xmlgraphics:batik-script:jar:1.7:compile
+[INFO] | | \- xalan:xalan:jar:2.6.0:compile
+[INFO] | +- org.apache.xmlgraphics:batik-dom:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-gvt:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-svg-dom:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-svggen:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-util:jar:1.7:compile
+[INFO] | +- org.apache.xmlgraphics:batik-xml:jar:1.7:compile
+[INFO] | +- xml-apis:xml-apis:jar:1.3.04:compile
+[INFO] | \- xml-apis:xml-apis-ext:jar:1.3.04:compile
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ REST interface examples 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-rest-examples ---
+[INFO] org.rhq:rhq-rest-examples:war:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Remoting WAR 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-remoting-war ---
+[INFO] org.rhq:rhq-remoting-war:war:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:provided
+[INFO] | | \- jdom:jdom:jar:1.0:provided
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:provided
+[INFO] | +- dom4j:dom4j:jar:1.6:provided
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:provided
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:provided
+[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:provided
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:provided
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:provided
+[INFO] | +- jboss:jboss-serialization:jar:1.0.3.GA:provided
+[INFO] | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:provided
+[INFO] +- javax.servlet:javax.servlet-api:jar:3.0.1:provided
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Plugins 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-plugins-parent ---
+[INFO] org.rhq:rhq-enterprise-server-plugins-parent:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Disk Content Source Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-disk ---
+[INFO] org.rhq:rhq-serverplugin-disk:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | +- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | | \- org.javassist:javassist:jar:3.15.0-GA:test (version managed from 3.16.1-GA)
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Yum Content Source Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-yum ---
+[INFO] org.rhq:rhq-serverplugin-yum:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- jdom:jdom:jar:1.0:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server URL Content Source Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-url ---
+[INFO] org.rhq:rhq-serverplugin-url:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided (scope not updated to compile)
+[INFO] | +- junit:junit:jar:3.8.1:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] +- rss4j:rss4j:jar:0.92-on.2:provided (scope not updated to compile)
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server JBoss Software Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-jboss-software ---
+[INFO] org.rhq:rhq-serverplugin-jboss-software:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- commons-httpclient:commons-httpclient:jar:3.0.1:provided (scope not updated to compile)
+[INFO] | +- junit:junit:jar:3.8.1:provided
+[INFO] | \- commons-codec:commons-codec:jar:1.2:provided
+[INFO] +- rss4j:rss4j:jar:0.92-on.2:provided (scope not updated to compile)
+[INFO] +- xerces:xercesImpl:jar:2.9.1-jbossas-2:provided
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Email Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-email ---
+[INFO] org.rhq.server:alert-email:jar:4.7.0-SNAPSHOT
+[INFO] +- org.apache.geronimo.specs:geronimo-javamail_1.3.1_spec:jar:1.3:provided
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server IRC Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-irc ---
+[INFO] org.rhq:alert-irc:jar:4.7.0-SNAPSHOT
+[INFO] +- pircbot:pircbot:jar:1.4.2:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Mobicents Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-mobicents ---
+[INFO] org.rhq:alert-mobicents:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Microblog Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-microblog ---
+[INFO] org.rhq:alert-microblog:jar:4.7.0-SNAPSHOT
+[INFO] +- org.twitter4j:twitter4j-core:jar:2.2.4:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Opertions Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-operations ---
+[INFO] org.rhq:alert-operations:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Roles Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-roles ---
+[INFO] org.rhq:alert-roles:jar:4.7.0-SNAPSHOT
+[INFO] +- jboss.jboss-embeddable-ejb3:jboss-ejb3-all:jar:1.0.0.Alpha9:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server SNMP Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-snmp ---
+[INFO] org.rhq:alert-snmp:jar:4.7.0-SNAPSHOT
+[INFO] +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Subject Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-subject ---
+[INFO] org.rhq:alert-subject:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Client API 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-server-client-api ---
+[INFO] org.rhq:rhq-server-client-api:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | | \- jdom:jdom:jar:1.0:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | +- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | +- org.dbunit:dbunit:jar:2.2.2:test
+[INFO] | | | +- junit-addons:junit-addons:jar:1.4:test
+[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1-jbossas-2:test (version managed from 2.6.2)
+[INFO] | | | | \- xerces:xmlParserAPIs:jar:2.6.2:test
+[INFO] | | | +- poi:poi:jar:2.5.1-final-20040804:test
+[INFO] | | | +- org.slf4j:slf4j-api:jar:1.4.3:test
+[INFO] | | | \- org.slf4j:slf4j-nop:jar:1.4.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:test
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server CLI Script Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-cli ---
+[INFO] org.rhq:alert-cli:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-server-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | +- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Log4J Alert Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ alert-log4j ---
+[INFO] org.rhq:alert-log4j:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server Cobbler Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-cobbler ---
+[INFO] org.rhq:rhq-serverplugin-cobbler:jar:4.7.0-SNAPSHOT
+[INFO] +- org.fedorahosted.cobbler:cobbler4j:jar:0.1:provided
+[INFO] | \- redstone.xmlrpc:xmlrpc:jar:1.1.1:provided
+[INFO] +- jboss.jboss-embeddable-ejb3:jboss-ejb3-all:jar:1.0.0.Alpha9:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Drift Server Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-drift ---
+[INFO] org.rhq:rhq-serverplugin-drift:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ File Template Bundle Server Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-filetemplate-bundle ---
+[INFO] org.rhq:rhq-serverplugin-filetemplate-bundle:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-filetemplate-bundle-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Ant Bundle Server Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-serverplugin-ant-bundle ---
+[INFO] org.rhq:rhq-serverplugin-ant-bundle:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:provided (scope not updated to compile)
+[INFO] +- org.rhq:rhq-ant-bundle-common:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- jdom:jdom:jar:1.0:compile
+[INFO] | | \- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- org.rhq:rhq-core-native-system:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.apache.ant:ant:jar:1.8.0:compile
+[INFO] | +- org.apache.ant:ant-launcher:jar:1.8.0:compile
+[INFO] | +- org.apache.ant:ant-nodeps:jar:1.8.0:compile
+[INFO] | +- ant-contrib:ant-contrib:jar:1.0b3:provided (scope managed from runtime)
+[INFO] | \- org.liquibase:liquibase-core:jar:1.9.5:compile
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Validate All Server Plugins 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ validate-all-serverplugins ---
+[INFO] org.rhq:validate-all-serverplugins:pom:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server CLI Package Type Plugin 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ packagetype-cli ---
+[INFO] org.rhq:packagetype-cli:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Server EAR 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-ear ---
+[INFO] org.rhq:rhq-enterprise-server-ear:ear:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:compile
+[INFO] | | \- commons-io:commons-io:jar:1.4:compile
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:compile
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:compile
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:compile
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:compile
+[INFO] | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:compile
+[INFO] | | +- junit:junit:jar:4.10:compile
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:compile
+[INFO] | +- commons-lang:commons-lang:jar:2.4:compile
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:compile
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:compile
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:compile
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:compile
+[INFO] | \- com.jcraft:jsch:jar:0.1.29:compile
+[INFO] +- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:compile
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-portal:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-coregui:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-rest:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-rest-examples:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-remoting-war:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-content_http:war:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-enterprise-server-services-sar:sar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:compile
+[INFO] | \- net.sf.opencsv:opencsv:jar:1.8:compile
+[INFO] +- org.rhq:rhq-scripting-javascript:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-server-client-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | \- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] +- org.rhq.helpers:rhq-rtfilter:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:compile
+[INFO] +- org.opensymphony.quartz:quartz-oracle:jar:1.6.5:compile
+[INFO] +- postgresql:postgresql:jar:9.2-1002.jdbc4:provided (scope not updated to compile)
+[INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.4.Final:provided
+[INFO] | +- org.jboss.resteasy:jaxrs-api:jar:2.3.4.Final:provided
+[INFO] | +- org.scannotation:scannotation:jar:1.0.3:provided
+[INFO] | | \- javassist:javassist:jar:3.12.1.GA:provided
+[INFO] | +- javax.annotation:jsr250-api:jar:1.0:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.1.2:provided
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:provided
+[INFO] | \- net.jcip:jcip-annotations:jar:1.0:provided
+[INFO] +- org.jboss.resteasy:resteasy-jackson-provider:jar:2.3.4.Final:provided
+[INFO] | +- org.codehaus.jackson:jackson-core-asl:jar:1.8.5:provided
+[INFO] | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.8.5:provided
+[INFO] | +- org.codehaus.jackson:jackson-jaxrs:jar:1.8.5:provided
+[INFO] | \- org.codehaus.jackson:jackson-xc:jar:1.8.5:provided
+[INFO] +- org.jboss.resteasy:resteasy-links:jar:2.3.4.Final:provided
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:provided
+[INFO] | \- org.jboss.el:jboss-el:jar:1.0_02.CR4:provided
+[INFO] | \- javax.el:el-api:jar:1.0:provided
+[INFO] +- org.freemarker:freemarker:jar:2.3.18:compile
+[INFO] +- org.jboss.resteasy:resteasy-yaml-provider:jar:2.3.4.Final:provided
+[INFO] +- org.yaml:snakeyaml:jar:1.8:provided (scope not updated to compile)
+[INFO] +- org.jboss.resteasy:resteasy-jaxb-provider:jar:2.3.4.Final:provided
+[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
+[INFO] | \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
+[INFO] | \- javax.xml.stream:stax-api:jar:1.0-2:provided
+[INFO] +- org.rhq:rhq-scripting-python:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Server Startup AS7 Subsystem 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-enterprise-server-startup-subsystem ---
+[INFO] org.rhq:rhq-enterprise-server-startup-subsystem:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:provided
+[INFO] +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss:jboss-dmr:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss.msc:jboss-msc:jar:1.0.2.GA:provided
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:provided
+[INFO] +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:provided
+[INFO] | | | \- org.jboss:jboss-common-core:jar:2.2.17.GA:provided
+[INFO] | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:provided
+[INFO] | | \- system:jdk-tools:jar:jdk:system
+[INFO] | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:provided
+[INFO] | | +- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss.xnio:xnio-api:jar:3.0.3.GA:provided
+[INFO] | +- org.jboss:jandex:jar:1.0.3.Final:provided
+[INFO] | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:provided
+[INFO] | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:provided
+[INFO] | +- org.jboss.marshalling:jboss-marshalling:jar:1.3.11.GA:provided
+[INFO] | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:provided
+[INFO] | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:provided
+[INFO] | +- org.jboss.threads:jboss-threads:jar:2.0.0.GA:provided
+[INFO] | \- org.jboss:jboss-vfs:jar:3.1.0.Final:provided
+[INFO] +- org.jboss:staxmapper:jar:1.1.0.Final:provided
+[INFO] +- org.jboss.as:jboss-as-ee:jar:7.1.1.Final:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- org.hibernate:hibernate-validator:jar:4.2.0.Final:provided
+[INFO] | | \- org.slf4j:slf4j-api:jar:1.6.1:provided
+[INFO] | +- org.jboss.interceptor:jboss-interceptor-spi:jar:2.0.0.Final:provided
+[INFO] | +- org.jboss.metadata:jboss-metadata-common:jar:7.0.1.Final:provided
+[INFO] | +- org.jboss.metadata:jboss-metadata-ear:jar:7.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:provided
+[INFO] | | \- org.jboss:jboss-remote-naming:jar:1.0.2.Final:provided
+[INFO] | | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:provided
+[INFO] | \- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] +- org.rhq:rhq-enterprise-server-ear:ear:4.7.0-SNAPSHOT:provided
+[INFO] +- org.jboss.as:jboss-as-subsystem-test:jar:7.1.1.Final:test
+[INFO] | \- junit:junit:jar:4.10:test
+[INFO] | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Enterprise Installer Utility 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-installer-util ---
+[INFO] org.rhq:rhq-installer-util:jar:4.7.0-SNAPSHOT
+[INFO] +- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- jdom:jdom:jar:1.0:compile
+[INFO] +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:compile
+[INFO] | \- postgresql:postgresql:jar:9.2-1002.jdbc4:compile
+[INFO] +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:compile
+[INFO] | +- dom4j:dom4j:jar:1.6:compile
+[INFO] | +- org.jboss:jboss-common-core:jar:2.2.17.GA:compile
+[INFO] | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:compile
+[INFO] | +- jboss:jboss-jmx:jar:4.2.3.GA:compile
+[INFO] | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:compile
+[INFO] | +- jboss:jboss-serialization:jar:1.0.3.GA:compile
+[INFO] | \- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:compile
+[INFO] +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:compile
+[INFO] +- gnu-getopt:getopt:jar:1.0.13:compile
+[INFO] +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:compile
+[INFO] | +- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:compile
+[INFO] | | +- org.jboss.marshalling:jboss-marshalling:jar:1.3.11.GA:compile
+[INFO] | | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:compile
+[INFO] | | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:compile
+[INFO] | | +- org.jboss.xnio:xnio-api:jar:3.0.3.GA:compile
+[INFO] | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:compile
+[INFO] | +- org.jboss:jboss-dmr:jar:1.1.1.Final:compile
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:compile
+[INFO] | +- org.jboss.threads:jboss-threads:jar:2.0.0.GA:compile
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:compile
+[INFO] +- ant:ant-launcher:jar:1.6.5:compile
+[INFO] +- ant:ant:jar:1.6.5:compile
+[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
+[INFO] +- org.mockito:mockito-core:jar:1.9.0:test
+[INFO] | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | \- org.objenesis:objenesis:jar:1.0:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided (scope not updated to compile)
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Server JAR Integration Tests 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-server-itests-2 ---
+[INFO] org.rhq:rhq-server-itests-2:jar:4.7.0-SNAPSHOT
+[INFO] +- org.jboss.as:jboss-as-dist:zip:7.1.1.Final:test
+[INFO] | \- org.jboss.as:jboss-as-build-config:jar:7.1.1.Final:test
+[INFO] +- org.jboss.spec:jboss-javaee-6.0:pom:3.0.0.Final:provided
+[INFO] | +- javax.activation:activation:jar:1.1:provided
+[INFO] | +- javax.enterprise:cdi-api:jar:1.0-SP4:provided
+[INFO] | +- javax.inject:javax.inject:jar:1:provided
+[INFO] | +- javax.jws:jsr181-api:jar:1.0-MR1:provided
+[INFO] | +- javax.mail:mail:jar:1.4.4:provided
+[INFO] | +- javax.validation:validation-api:jar:1.0.0.GA:provided
+[INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.el:jboss-el-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.enterprise.deploy:jboss-jad-api_1.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.faces:jboss-jsf-api_2.1_spec:jar:2.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.management.j2ee:jboss-j2eemgmt-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.resource:jboss-connector-api_1.6_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.registry:jboss-jaxr-api_1.0_spec:jar:1.0.2.Final:provided
+[INFO] | +- org.jboss.spec.javax.jms:jboss-jms-api_1.1_spec:jar:1.0.0.Final:provided (version managed from 1.0.1.Final)
+[INFO] | +- org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jsp:jboss-jsp-api_2.2_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.servlet.jstl:jboss-jstl-api_1.2_spec:jar:1.0.3.Final:provided
+[INFO] | | \- xalan:xalan:jar:2.7.1.jbossorg-2:provided
+[INFO] | | \- xalan:serializer:jar:2.7.1.jbossorg-2:provided
+[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided (version managed from 1.0.1.Final)
+[INFO] | +- org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_1.1_spec:jar:1.0.0.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.2_spec:jar:1.0.4.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.rpc:jboss-jaxrpc-api_1.1_spec:jar:1.0.1.Final:provided
+[INFO] | +- org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:jar:1.0.2.Final:provided
+[INFO] | \- org.jboss.spec.javax.xml.ws:jboss-jaxws-api_2.2_spec:jar:2.0.1.Final:provided
+[INFO] +- org.jboss.as:jboss-as-arquillian-container-managed:jar:7.1.1.Final:test
+[INFO] | +- org.jboss.as:jboss-as-arquillian-common:jar:7.1.1.Final:test
+[INFO] | | +- org.jboss.arquillian.container:arquillian-container-osgi:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-cdi:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-ejb:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-initialcontext:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-osgi:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.arquillian.testenricher:arquillian-testenricher-resource:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | | +- org.jboss.as:jboss-as-arquillian-testenricher-msc:jar:7.1.1.Final:test
+[INFO] | | | \- org.jboss.msc:jboss-msc:jar:1.0.2.GA:test
+[INFO] | | +- org.jboss.as:jboss-as-controller-client:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-protocol:jar:7.1.1.Final:test
+[INFO] | | | | \- org.jboss.xnio:xnio-nio:jar:3.0.3.GA:test
+[INFO] | | | +- org.jboss:jboss-dmr:jar:1.1.1.Final:test
+[INFO] | | | \- org.jboss.threads:jboss-threads:jar:2.0.0.GA:test
+[INFO] | | +- org.jboss.as:jboss-as-jmx:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-server:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-controller:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss:staxmapper:jar:1.1.0.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-domain-http-interface:jar:7.1.1.Final:test
+[INFO] | | | | | +- org.jboss.as:jboss-as-domain-management:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss.com.sun.httpserver:httpserver:jar:1.0.0.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-deployment-repository:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-embedded:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-platform-mbean:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss.as:jboss-as-process-controller:jar:7.1.1.Final:test
+[INFO] | | | | | \- system:jdk-tools:jar:jdk:system
+[INFO] | | | | +- org.jboss.as:jboss-as-remoting:jar:7.1.1.Final:test
+[INFO] | | | | | +- org.jboss.as:jboss-as-network:jar:7.1.1.Final:test
+[INFO] | | | | | \- org.jboss.as:jboss-as-threads:jar:7.1.1.Final:test
+[INFO] | | | | +- org.jboss:jandex:jar:1.0.3.Final:test
+[INFO] | | | | +- org.jboss.invocation:jboss-invocation:jar:1.1.1.Final:test
+[INFO] | | | | +- org.jboss.logmanager:jboss-logmanager-log4j:jar:1.0.0.GA:test
+[INFO] | | | | +- org.jboss.stdio:jboss-stdio:jar:1.0.1.GA:test
+[INFO] | | | | \- org.jboss:jboss-vfs:jar:3.1.0.Final:test
+[INFO] | | | \- org.jboss.marshalling:jboss-marshalling-river:jar:1.3.11.GA:test
+[INFO] | | +- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.0.1:test
+[INFO] | | +- org.jboss.osgi.spi:jbosgi-spi:jar:3.0.1.Final:test
+[INFO] | | | \- org.jboss.osgi.vfs:jbosgi-vfs:jar:1.0.7.Final:test
+[INFO] | | \- org.osgi:org.osgi.core:jar:4.2.0:test
+[INFO] | +- org.jboss.as:jboss-as-arquillian-protocol-jmx:jar:7.1.1.Final:test
+[INFO] | | +- org.jboss.as:jboss-as-osgi-service:jar:7.1.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-ee:jar:7.1.1.Final:test
+[INFO] | | | | +- org.hibernate:hibernate-validator:jar:4.2.0.Final:test
+[INFO] | | | | +- org.jboss.interceptor:jboss-interceptor-spi:jar:2.0.0.Final:test
+[INFO] | | | | +- org.jboss.metadata:jboss-metadata-common:jar:7.0.1.Final:test
+[INFO] | | | | \- org.jboss.metadata:jboss-metadata-ear:jar:7.0.1.Final:test
+[INFO] | | | +- org.jboss.as:jboss-as-naming:jar:7.1.1.Final:test
+[INFO] | | | | \- org.jboss:jboss-remote-naming:jar:1.0.2.Final:test
+[INFO] | | | | \- org.jboss:jboss-ejb-client:jar:1.0.0.Final:test
+[INFO] | | | +- org.jboss.modules:jboss-modules:jar:1.1.1.GA:test
+[INFO] | | | +- org.jboss.osgi.framework:jbosgi-framework-core:jar:1.1.8.Final:test
+[INFO] | | | | +- org.jboss.osgi.deployment:jbosgi-deployment:jar:1.0.12.Final:test
+[INFO] | | | | +- org.jboss.osgi.resolver:jbosgi-resolver-felix:jar:1.0.13.Final:test
+[INFO] | | | | | +- org.jboss.osgi.resolver:jbosgi-resolver-api:jar:1.0.13.Final:test
+[INFO] | | | | | | \- org.jboss.osgi.metadata:jbosgi-metadata:jar:2.0.3.Final:test
+[INFO] | | | | | \- org.jboss.osgi.resolver:jbosgi-resolver-spi:jar:1.0.13.Final:test
+[INFO] | | | | +- org.jboss.osgi.vfs:jbosgi-vfs30:jar:1.0.7.Final:test
+[INFO] | | | | \- org.osgi:org.osgi.compendium:jar:4.2.0:test
+[INFO] | | | +- org.jboss.osgi.repository:jbosgi-repository-core:jar:1.0.5:test
+[INFO] | | | | \- org.jboss.osgi.repository:jbosgi-repository-api:jar:1.0.5:test
+[INFO] | | | | \- org.jboss.osgi.resolver:jbosgi-resolver-api-v2:jar:2.0.0.Beta2:test
+[INFO] | | | | \- org.apache.felix:org.apache.felix.resolver:jar:0.1.0.Beta1:test
+[INFO] | | | \- org.osgi:org.osgi.enterprise:jar:4.2.0:test
+[INFO] | | +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.protocol:arquillian-protocol-jmx:jar:1.0.3.Final:test (version managed from 1.0.0.CR7)
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:test
+[INFO] | +- org.jboss.remoting3:jboss-remoting:jar:3.2.3.GA:test
+[INFO] | | \- org.jboss.xnio:xnio-api:jar:3.0.0.GA:test
+[INFO] | +- org.jboss.remotingjmx:remoting-jmx:jar:1.0.2.Final:test
+[INFO] | | +- org.jboss.logmanager:jboss-logmanager:jar:1.2.2.GA:test
+[INFO] | | \- org.jboss.marshalling:jboss-marshalling:jar:1.3.9.GA:test
+[INFO] | +- org.jboss.sasl:jboss-sasl:jar:1.0.0.Final:test
+[INFO] | \- org.jboss.arquillian.core:arquillian-core-api:jar:1.0.3.Final:test
+[INFO] +- org.jboss.arquillian.testng:arquillian-testng-container:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.testng:arquillian-testng-core:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.0.3.Final:test
+[INFO] | | +- org.jboss.arquillian.config:arquillian-config-api:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.0.3.Final:test
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.0.1:test
+[INFO] | \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.0.1:test
+[INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.0.0-alpha-7:test
+[INFO] | | +- org.sonatype.aether:aether-api:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-impl:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-spi:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-util:jar:1.13.1:test
+[INFO] | | +- org.sonatype.aether:aether-connector-wagon:jar:1.13.1:test
+[INFO] | | +- org.apache.maven:maven-aether-provider:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-model:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-model-builder:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-repository-metadata:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-settings:jar:3.0.4:test
+[INFO] | | +- org.apache.maven:maven-settings-builder:jar:3.0.4:test
+[INFO] | | +- org.codehaus.plexus:plexus-interpolation:jar:1.14:test
+[INFO] | | +- org.codehaus.plexus:plexus-utils:jar:2.0.6:test
+[INFO] | | +- org.apache.maven.wagon:wagon-provider-api:jar:2.2:test
+[INFO] | | +- org.apache.maven.wagon:wagon-file:jar:2.2:test
+[INFO] | | \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.2:test
+[INFO] | | \- org.apache.maven.wagon:wagon-http-shared4:jar:2.2:test
+[INFO] | | +- org.jsoup:jsoup:jar:1.6.1:test
+[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.1.2:test
+[INFO] | \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.0.0-alpha-7:test
+[INFO] | +- org.codehaus.plexus:plexus-compiler-javac:jar:2.1:test
+[INFO] | | \- org.codehaus.plexus:plexus-compiler-api:jar:2.1:test
+[INFO] | \- org.codehaus.plexus:plexus-component-api:jar:1.0-alpha-33:test
+[INFO] | \- org.codehaus.plexus:plexus-classworlds:jar:1.2-alpha-10:test
+[INFO] +- org.jboss.arquillian.protocol:arquillian-protocol-servlet:jar:1.0.3.Final:test
+[INFO] | +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.3.Final:test
+[INFO] | | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-3:test
+[INFO] | \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-3:test
+[INFO] +- org.rhq:rhq-arquillian-suite-extension:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-core-domain:jar:4.7.0-SNAPSHOT:test
+[INFO] | \- org.rhq:rhq-core-util:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- jdom:jdom:jar:1.0:test
+[INFO] | \- i18nlog:i18nlog:jar:1.0.10:test
+[INFO] +- org.rhq:rhq-core-domain:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-enterprise-server:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-enterprise-comm:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.rhq:rhq-core-comm-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | | +- org.jboss:jboss-common-core:jar:2.2.17.GA:test
+[INFO] | | | \- org.jboss.logging:jboss-logging-spi:jar:2.1.0.GA:test
+[INFO] | | +- jboss:jboss-jmx:jar:4.2.3.GA:test
+[INFO] | | +- org.jboss.remoting:jboss-remoting:jar:2.5.4.SP4:test
+[INFO] | | \- jboss:jboss-serialization:jar:1.0.3.GA:test
+[INFO] | +- org.rhq:rhq-enterprise-server-xml-schemas:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-core-dbutils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:safe-invoker:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-common-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | | \- commons-io:commons-io:jar:1.4:test
+[INFO] | +- com.googlecode.java-diff-utils:diffutils:jar:1.2.1:test
+[INFO] | +- org.rhq:rhq-jboss-as-dmr-client:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.antlr:antlr-runtime:jar:3.2:test
+[INFO] | | \- org.antlr:stringtemplate:jar:3.2:test
+[INFO] | +- commons-beanutils:commons-beanutils:jar:1.6.1:test
+[INFO] | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | +- commons-httpclient:commons-httpclient:jar:3.0.1:test
+[INFO] | | \- commons-codec:commons-codec:jar:1.2:test
+[INFO] | +- commons-lang:commons-lang:jar:2.4:test
+[INFO] | +- commons-validator:commons-validator:jar:1.1.4:test
+[INFO] | +- gnu-getopt:getopt:jar:1.0.13:test
+[INFO] | +- jboss:jboss-cache:jar:1.4.1.SP9:test
+[INFO] | +- org.snmp4j:snmp4j:jar:1.8.2:test
+[INFO] | +- oswego-concurrent:concurrent:jar:1.3.4-jboss-update1:test
+[INFO] | +- rss4j:rss4j:jar:0.92-on.2:test
+[INFO] | +- com.jcraft:jsch:jar:0.1.29:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.8:test
+[INFO] +- org.rhq:rhq-script-bindings:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-scripting-api:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb-client:client:4.7.0-SNAPSHOT:test
+[INFO] | +- net.sf.opencsv:opencsv:jar:1.8:test
+[INFO] | \- org.javassist:javassist:jar:3.15.0-GA:test
+[INFO] +- org.rhq:rhq-server-client-api:jar:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-serverplugin-drift:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- org.rhq:rhq-enterprise-server:ejb:4.7.0-SNAPSHOT:test
+[INFO] | \- org.rhq:rhq-core-domain:ejb:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:rhq-core-client-api:test-jar:tests:4.7.0-SNAPSHOT:test
+[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
+[INFO] | +- javax.transaction:jta:jar:1.1:test
+[INFO] | +- org.jmock:jmock:jar:2.5.1:test
+[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | | \- org.hamcrest:hamcrest-library:jar:1.1:test
+[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
+[INFO] | | | \- ognl:ognl:jar:2.6.9:test
+[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
+[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
+[INFO] | | | \- commons-pool:commons-pool:jar:1.3:test
+[INFO] | | \- org.springframework:spring-jdbc:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-beans:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-core:jar:2.5.2:test
+[INFO] | | \- org.springframework:spring-tx:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-orm:jar:3.1:test
+[INFO] | | +- org.unitils:unitils-spring:jar:3.1:test
+[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
+[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
+[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
+[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
+[INFO] | | +- org.easymock:easymock:jar:2.3:test
+[INFO] | | \- org.easymock:easymockclassextension:jar:2.3:test
+[INFO] | +- org.unitils:unitils-testng:jar:3.1:test
+[INFO] | +- org.unitils:unitils-inject:jar:3.1:test
+[INFO] | \- org.unitils:unitils-mock:jar:3.1:test
+[INFO] +- org.rhq.helpers:perftest-support:jar:4.7.0-SNAPSHOT:test
+[INFO] | +- ant:ant:jar:1.6.5:test
+[INFO] | +- ant:ant-launcher:jar:1.6.5:test
+[INFO] | +- org.dbunit:dbunit:jar:2.4.8:test
+[INFO] | | \- org.slf4j:slf4j-api:jar:1.5.6:test
+[INFO] | +- org.slf4j:slf4j-jcl:jar:1.5.6:test
+[INFO] | +- postgresql:postgresql:jar:9.2-1002.jdbc4:test
+[INFO] | \- org.apache.poi:poi:jar:3.7:test
+[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:test
+[INFO] | +- dom4j:dom4j:jar:1.6.1:test
+[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:test
+[INFO] | +- org.hibernate:hibernate-core:jar:4.0.1.Final:test
+[INFO] | | \- antlr:antlr:jar:2.7.7:test (version managed from 2.7.6)
+[INFO] | \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:test
+[INFO] +- org.powermock:powermock-module-testng:jar:1.4.12:test
+[INFO] | +- org.powermock:powermock-core:jar:1.4.12:test
+[INFO] | | \- org.powermock:powermock-reflect:jar:1.4.12:test
+[INFO] | | \- org.objenesis:objenesis:jar:1.2:test
+[INFO] | \- org.powermock:powermock-module-testng-common:jar:1.4.12:test
+[INFO] +- org.powermock:powermock-api-mockito:jar:1.4.12:test
+[INFO] | +- org.mockito:mockito-all:jar:1.9.0:test
+[INFO] | \- org.powermock:powermock-api-support:jar:1.4.12:test
+[INFO] +- org.opensymphony.quartz:quartz:jar:1.6.5:test
+[INFO] +- org.liquibase:liquibase-core:jar:2.0.3:test
+[INFO] +- joda-time:joda-time:jar:2.1:test
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | \- com.beust:jcommander:jar:1.12:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building RHQ Code Coverage 4.7.0-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[INFO]
+[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ rhq-code-coverage ---
+[INFO] org.rhq:rhq-code-coverage:jar:4.7.0-SNAPSHOT
+[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
+[INFO] +- log4j:log4j:jar:1.2.16:provided
+[INFO] +- org.testng:testng:jar:6.5.2:test
+[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.1:test
+[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
+[INFO] | +- com.beust:jcommander:jar:1.12:test
+[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
+[INFO] \- org.jetbrains:annotations:jar:7.0.2:provided
+[INFO] ------------------------------------------------------------------------
+[INFO] Reactor Summary:
+[INFO]
+[INFO] RHQ ............................................... SUCCESS [1.046s]
+[INFO] RHQ Modules ....................................... SUCCESS [0.039s]
+[INFO] RHQ Test Utils .................................... SUCCESS [0.669s]
+[INFO] RHQ Core Modules .................................. SUCCESS [0.051s]
+[INFO] RHQ Utilities ..................................... SUCCESS [1.006s]
+[INFO] RHQ Native System API ............................. SUCCESS [0.384s]
+[INFO] RHQ Enterprise Agent-Server Communications Annotations API SUCCESS [0.039s]
+[INFO] RHQ Database Utilities ............................ SUCCESS [0.839s]
+[INFO] RHQ Domain Model .................................. SUCCESS [3.727s]
+[INFO] RHQ Plugin API .................................... SUCCESS [0.226s]
+[INFO] RHQ Common Plugin Libraries ....................... SUCCESS [0.010s]
+[INFO] RHQ Drift Common Library .......................... SUCCESS [0.056s]
+[INFO] RHQ Client API .................................... SUCCESS [0.111s]
+[INFO] RHQ Plugin Container .............................. SUCCESS [0.149s]
+[INFO] RHQ Shared GUI Classes ............................ SUCCESS [0.097s]
+[INFO] RHQ Plugin Validator Maven 2 Plugin ............... SUCCESS [0.087s]
+[INFO] RHQ Arquillian Integration Modules ................ SUCCESS [0.011s]
+[INFO] RHQ Agent Plugin Archive .......................... SUCCESS [0.033s]
+[INFO] RHQ Plugins ....................................... SUCCESS [0.302s]
+[INFO] RHQ JMX Plugin .................................... SUCCESS [0.057s]
+[INFO] RHQ Arquillian Plugin Container ................... SUCCESS [0.681s]
+[INFO] RHQ Arquillian Suite Extension .................... SUCCESS [0.037s]
+[INFO] RHQ Plugin Test API ............................... SUCCESS [0.289s]
+[INFO] RHQ Plugin Test Util .............................. SUCCESS [0.213s]
+[INFO] RHQ Plugin Container Integration Tests ............ SUCCESS [0.641s]
+[INFO] RHQ JBossAS 4/5 Plugins Common Library ............ SUCCESS [0.030s]
+[INFO] RHQ File Template Bundle Plugins Common Library ... SUCCESS [0.064s]
+[INFO] RHQ Ant Bundle Plugins Common Library ............. SUCCESS [0.078s]
+[INFO] RHQ JBoss AS DMR Client ........................... SUCCESS [0.478s]
+[INFO] RHQ Platform Plugin ............................... SUCCESS [0.072s]
+[INFO] RHQ Enterprise Agent-Server Communications Layer .. SUCCESS [0.040s]
+[INFO] RHQ Enterprise Agent .............................. SUCCESS [0.358s]
+[INFO] RHQ RHQ-Agent Plugin .............................. SUCCESS [0.366s]
+[INFO] RHQ No-op Plugin .................................. SUCCESS [0.078s]
+[INFO] RHQ Augeas Plugin ................................. SUCCESS [0.488s]
+[INFO] RHQ Apache Plugin ................................. SUCCESS [0.319s]
+[INFO] RHQ Tomcat Plugin ................................. SUCCESS [0.068s]
+[INFO] RHQ Hibernate Plugin .............................. SUCCESS [0.060s]
+[INFO] RHQ JBossAS 5.x/6.x Plugin ........................ SUCCESS [0.367s]
+[INFO] RHQ JBossAS 3.2.x/4.x Plugin ...................... SUCCESS [0.070s]
+[INFO] RHQ mod_cluster Plugin ............................ SUCCESS [0.272s]
+[INFO] RHQ JBossCache 4.x Plugin ......................... SUCCESS [0.065s]
+[INFO] RHQ JBossAS 7.x Plugin ............................ SUCCESS [0.191s]
+[INFO] RHQ Server Plugin ................................. SUCCESS [0.086s]
+[INFO] RHQ JBossCache 3.x Plugin ......................... SUCCESS [3.096s]
+[INFO] RHQ Database Plugin ............................... SUCCESS [0.051s]
+[INFO] RHQ Postgres Plugin ............................... SUCCESS [0.063s]
+[INFO] RHQ Script Plugin ................................. SUCCESS [0.057s]
+[INFO] RHQ IIS Plugin .................................... SUCCESS [0.056s]
+[INFO] RHQ File Template Bundle Plugin ................... SUCCESS [0.078s]
+[INFO] RHQ Ant Bundle Plugin ............................. SUCCESS [0.095s]
+[INFO] RHQ Augeas-based Cron Plugin ...................... SUCCESS [0.066s]
+[INFO] RHQ GRUB Plugin ................................... SUCCESS [0.112s]
+[INFO] RHQ Hosts File Plugin ............................. SUCCESS [0.064s]
+[INFO] RHQ Cobbler File Plugin ........................... SUCCESS [0.067s]
+[INFO] RHQ Augeas-based Sudoers Plugin ................... SUCCESS [0.064s]
+[INFO] RHQ Network Services Plugin ....................... SUCCESS [0.097s]
+[INFO] RHQ Augeas-based Samba Plugin ..................... SUCCESS [0.073s]
+[INFO] RHQ Augeas-based Postfix Plugin ................... SUCCESS [0.065s]
+[INFO] RHQ Aliases File Plugin ........................... SUCCESS [0.054s]
+[INFO] RHQ SSHD Plugin ................................... SUCCESS [0.040s]
+[INFO] RHQ Byteman Plugin ................................ SUCCESS [0.049s]
+[INFO] RHQ IRC Server Plugin ............................. SUCCESS [0.053s]
+[INFO] RHQ Hadoop Plugin ................................. SUCCESS [0.059s]
+[INFO] RHQ Hudson Plugin ................................. SUCCESS [0.059s]
+[INFO] RHQ MySql Plugin .................................. SUCCESS [0.051s]
+[INFO] RHQ Oracle Plugin ................................. SUCCESS [0.044s]
+[INFO] RHQ Performance Test Plugin ....................... SUCCESS [0.042s]
+[INFO] RHQ Script2 Plugin ................................ SUCCESS [0.063s]
+[INFO] RHQ SnmpTrapd Plugin .............................. SUCCESS [0.063s]
+[INFO] RHQ Twitter Plugin ................................ SUCCESS [0.059s]
+[INFO] RHQ Virtualization Plugin ......................... SUCCESS [0.057s]
+[INFO] RHQ Kickstart Plugin .............................. SUCCESS [0.057s]
+[INFO] RHQ pattern Plugin ................................ SUCCESS [1.168s]
+[INFO] RHQ Cassandra Plugin .............................. SUCCESS [0.354s]
+[INFO] RHQ Validate All Plugins .......................... SUCCESS [0.044s]
+[INFO] RHQ Helpers ....................................... SUCCESS [0.007s]
+[INFO] RHQ Response-Time Filter .......................... SUCCESS [0.012s]
+[INFO] RHQ Response-Time Filter - JBoss AS7 Subsystem .... SUCCESS [0.663s]
+[INFO] bundleGen ......................................... SUCCESS [0.010s]
+[INFO] jeeGen ............................................ SUCCESS [0.011s]
+[INFO] Performance Testing Support ....................... SUCCESS [0.082s]
+[INFO] rest-docs-generator ............................... SUCCESS [0.077s]
+[INFO] RHQ Enterprise Agent Update ....................... SUCCESS [0.024s]
+[INFO] RHQ Server XML Schemas ............................ SUCCESS [0.015s]
+[INFO] RHQ Enterprise Safe Invoker ....................... SUCCESS [0.037s]
+[INFO] RHQ Enterprise Server JAR ......................... SUCCESS [1.120s]
+[INFO] RHQ Enterprise Server JBoss AS SARs ............... SUCCESS [0.241s]
+[INFO] RHQ Enterprise Server Internal Services SAR ....... SUCCESS [0.009s]
+[INFO] RHQ Enterprise Modules ............................ SUCCESS [0.008s]
+[INFO] RHQ Scripting Parent Module ....................... SUCCESS [0.007s]
+[INFO] RHQ Scripting API ................................. SUCCESS [0.008s]
+[INFO] RHQ Javascript support ............................ SUCCESS [0.039s]
+[INFO] RHQ Python support ................................ SUCCESS [0.010s]
+[INFO] RHQ Script Bindings ............................... SUCCESS [0.213s]
+[INFO] RHQ Enterprise Remote Client API .................. SUCCESS [0.061s]
+[INFO] RHQ Remote Client Dependencies .................... SUCCESS [0.193s]
+[INFO] RHQ Enterprise Remote CLI ......................... SUCCESS [0.061s]
+[INFO] RHQ Remoting Parent POM ........................... SUCCESS [0.005s]
+[INFO] RHQ REST interface ................................ SUCCESS [0.188s]
+[INFO] RHQ Enterprise Portal ............................. SUCCESS [0.155s]
+[INFO] RHQ Enterprise GUI ................................ SUCCESS [0.007s]
+[INFO] RHQ Enterprise Content HTTP Support ............... SUCCESS [0.066s]
+[INFO] RHQ Enterprise Core GUI ........................... SUCCESS [0.321s]
+[INFO] RHQ REST interface examples ....................... SUCCESS [0.004s]
+[INFO] RHQ Remoting WAR .................................. SUCCESS [0.007s]
+[INFO] RHQ Enterprise Server Plugins ..................... SUCCESS [0.283s]
+[INFO] RHQ Enterprise Server Disk Content Source Plugin .. SUCCESS [0.028s]
+[INFO] RHQ Enterprise Server Yum Content Source Plugin ... SUCCESS [0.017s]
+[INFO] RHQ Enterprise Server URL Content Source Plugin ... SUCCESS [0.024s]
+[INFO] RHQ Enterprise Server JBoss Software Plugin ....... SUCCESS [0.019s]
+[INFO] RHQ Enterprise Server Email Alert Plugin .......... SUCCESS [0.023s]
+[INFO] RHQ Enterprise Server IRC Alert Plugin ............ SUCCESS [0.020s]
+[INFO] RHQ Enterprise Server Mobicents Alert Plugin ...... SUCCESS [0.022s]
+[INFO] RHQ Enterprise Server Microblog Alert Plugin ...... SUCCESS [0.026s]
+[INFO] RHQ Enterprise Server Opertions Alert Plugin ...... SUCCESS [0.021s]
+[INFO] RHQ Enterprise Server Roles Alert Plugin .......... SUCCESS [0.020s]
+[INFO] RHQ Enterprise Server SNMP Alert Plugin ........... SUCCESS [0.016s]
+[INFO] RHQ Enterprise Server Subject Alert Plugin ........ SUCCESS [0.016s]
+[INFO] RHQ Enterprise Server Client API .................. SUCCESS [0.067s]
+[INFO] RHQ Enterprise Server CLI Script Alert Plugin ..... SUCCESS [0.042s]
+[INFO] RHQ Enterprise Server Log4J Alert Plugin .......... SUCCESS [0.016s]
+[INFO] RHQ Enterprise Server Cobbler Plugin .............. SUCCESS [0.021s]
+[INFO] RHQ Drift Server Plugin ........................... SUCCESS [0.023s]
+[INFO] RHQ File Template Bundle Server Plugin ............ SUCCESS [0.024s]
+[INFO] RHQ Ant Bundle Server Plugin ...................... SUCCESS [0.026s]
+[INFO] RHQ Validate All Server Plugins ................... SUCCESS [0.023s]
+[INFO] RHQ Enterprise Server CLI Package Type Plugin ..... SUCCESS [0.023s]
+[INFO] RHQ Enterprise Server EAR ......................... SUCCESS [0.471s]
+[INFO] RHQ Server Startup AS7 Subsystem .................. SUCCESS [0.077s]
+[INFO] RHQ Enterprise Installer Utility .................. SUCCESS [0.136s]
+[INFO] RHQ Server JAR Integration Tests .................. SUCCESS [1.897s]
+[INFO] RHQ Code Coverage ................................. SUCCESS [0.011s]
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time: 31.504s
+[INFO] Finished at: Wed Mar 27 15:29:06 CDT 2013
+[INFO] Final Memory: 117M/580M
+[INFO] ------------------------------------------------------------------------
commit bb955e4a5ccf2f15803dddaf741fe496d1cf044b
Author: John Sanda <jsanda(a)redhat.com>
Date: Wed Mar 27 21:36:13 2013 -0400
moving TokenReplacingProperties and TokenReplacingReader for use in production code
diff --git a/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingProperties.java b/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingProperties.java
new file mode 100644
index 0000000..12b36e1
--- /dev/null
+++ b/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingProperties.java
@@ -0,0 +1,300 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2005-2011 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+package org.rhq.core.util;
+
+import java.io.IOException;
+import java.io.Reader;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Properties;
+import java.util.Set;
+
+
+/**
+ * This map is basically an extension of the {@link Properties} class that can resolve the references
+ * to values of other keys inside the values.
+ * <p>
+ * I.e., if the map is initialized with the following mappings:
+ * <p>
+ * <code>
+ * name => world <br />
+ * hello => Hello ${name}!
+ * </code>
+ * <p>
+ * then the call to:
+ * <p>
+ * <code>
+ * get("hello")
+ * </code>
+ * <p>
+ * will return:
+ * <code>
+ * "Hello world!"
+ * </code>
+ * <p>
+ * To access and modify the underlying unprocessed values, one can use the "raw" counterparts of the standard
+ * map methods (e.g. instead of {@link #get(Object)}, use {@link #getRaw(Object)}, etc.).
+ *
+ * @author Lukas Krejci
+ */
+public class TokenReplacingProperties extends HashMap<String, String> {
+ private static final long serialVersionUID = 1L;
+
+ private Map<String, String> wrapped;
+ private Map<Object, String> resolved = new HashMap<Object, String>();
+
+ private class Entry implements Map.Entry<String, String> {
+ private Map.Entry<String, String> wrapped;
+ private boolean process;
+
+ public Entry(Map.Entry<String, String> wrapped, boolean process) {
+ this.wrapped = wrapped;
+ this.process = process;
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (obj == this) {
+ return true;
+ }
+
+ if (!(obj instanceof Entry)) {
+ return false;
+ }
+
+ Entry other = (Entry) obj;
+
+ String key = wrapped.getKey();
+ String otherKey = other.getKey();
+ String value = getValue();
+ String otherValue = other.getValue();
+
+ return (key == null ? otherKey == null : key.equals(otherKey)) &&
+ (value == null ? otherValue == null : value.equals(otherValue));
+ }
+
+ public String getKey() {
+ return wrapped.getKey();
+ }
+
+ public String getValue() {
+ if (process) {
+ return get(wrapped.getKey());
+ } else {
+ return wrapped.getValue();
+ }
+ }
+
+ @Override
+ public int hashCode() {
+ String key = wrapped.getKey();
+ String value = getValue();
+ return (key == null ? 0 : key.hashCode()) ^
+ (value == null ? 0 : value.hashCode());
+ }
+
+ public String setValue(String value) {
+ resolved.remove(wrapped.getKey());
+ return wrapped.setValue(value);
+ }
+
+ @Override
+ public String toString() {
+ return wrapped.toString();
+ }
+ }
+
+ public TokenReplacingProperties(Map<String, String> wrapped) {
+ this.wrapped = wrapped;
+ }
+
+ @SuppressWarnings("unchecked")
+ public TokenReplacingProperties(Properties properties) {
+ @SuppressWarnings("rawtypes")
+ Map map = properties;
+ this.wrapped = (Map<String, String>) map;
+ }
+
+ @Override
+ public String get(Object key) {
+ if (resolved.containsKey(key)) {
+ return resolved.get(key);
+ }
+
+ String rawValue = getRaw(key);
+
+ if (rawValue == null) {
+ return null;
+ }
+
+ String ret = readAll(new TokenReplacingReader(new StringReader(rawValue.toString()), this));
+
+ resolved.put(key, ret);
+
+ return ret;
+ }
+
+ public String getRaw(Object key) {
+ return wrapped.get(key);
+ }
+
+ @Override
+ public String put(String key, String value) {
+ resolved.remove(key);
+ return wrapped.put(key, value);
+ }
+
+ @Override
+ public void putAll(Map<? extends String, ? extends String> m) {
+ for(String key : m.keySet()) {
+ resolved.remove(key);
+ }
+ wrapped.putAll(m);
+ }
+
+ public void putAll(Properties properties) {
+ for(String propName : properties.stringPropertyNames()) {
+ put(propName, properties.getProperty(propName));
+ }
+ }
+
+ @Override
+ public void clear() {
+ wrapped.clear();
+ resolved.clear();
+ }
+
+ @Override
+ public boolean containsKey(Object key) {
+ return wrapped.containsKey(key);
+ }
+
+ @Override
+ public Set<String> keySet() {
+ return wrapped.keySet();
+ }
+
+ @Override
+ public boolean containsValue(Object value) {
+ for(String key : keySet()) {
+ String thisVal = get(key);
+ if (thisVal == null) {
+ if (value == null) {
+ return true;
+ }
+ } else {
+ if (thisVal.equals(value)) {
+ return true;
+ }
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Checks whether this map contains the unprocessed value.
+ *
+ * @param value
+ * @return
+ */
+ public boolean containsRawValue(Object value) {
+ return wrapped.containsValue(value);
+ }
+
+ /**
+ * The returned set <b>IS NOT</b> backed by this map
+ * (unlike in the default map implementations).
+ * <p>
+ * The {@link java.util.Map.Entry#setValue(Object)} method
+ * does modify this map though.
+ */
+ @Override
+ public Set<Map.Entry<String, String>> entrySet() {
+ Set<Map.Entry<String, String>> ret = new HashSet<Map.Entry<String, String>>();
+ for(Map.Entry<String, String> entry : wrapped.entrySet()) {
+ ret.add(new Entry(entry, true));
+ }
+
+ return ret;
+ }
+
+ public Set<Map.Entry<String, String>> getRawEntrySet() {
+ Set<Map.Entry<String, String>> ret = new HashSet<Map.Entry<String, String>>();
+ for(Map.Entry<String, String> entry : wrapped.entrySet()) {
+ ret.add(new Entry(entry, false));
+ }
+
+ return ret;
+ }
+
+ @Override
+ public String remove(Object key) {
+ resolved.remove(key);
+ return wrapped.remove(key).toString();
+ }
+
+ @Override
+ public int size() {
+ return wrapped.size();
+ }
+
+ /**
+ * Unlike in the default implementation the collection returned
+ * from this method <b>IS NOT</b> backed by this map.
+ */
+ @Override
+ public Collection<String> values() {
+ List<String> ret = new ArrayList<String>();
+ for(String key : keySet()) {
+ ret.add(get(key));
+ }
+
+ return ret;
+ }
+
+ public Collection<String> getRawValues() {
+ List<String> ret = new ArrayList<String>();
+ for(String key : keySet()) {
+ ret.add(wrapped.get(key));
+ }
+
+ return ret;
+ }
+
+ private String readAll(Reader rdr) {
+ int in = -1;
+ StringBuilder bld = new StringBuilder();
+ try {
+ while ((in = rdr.read()) != -1) {
+ bld.append((char) in);
+ }
+ } catch (IOException e) {
+ throw new IllegalStateException("Exception while reading a string.", e);
+ }
+
+ return bld.toString();
+ }
+}
\ No newline at end of file
diff --git a/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingReader.java b/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingReader.java
new file mode 100644
index 0000000..3303b76
--- /dev/null
+++ b/modules/core/util/src/main/java/org/rhq/core/util/TokenReplacingReader.java
@@ -0,0 +1,201 @@
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2005-2011 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+package org.rhq.core.util;
+
+import java.io.IOException;
+import java.io.PushbackReader;
+import java.io.Reader;
+import java.io.StringReader;
+import java.nio.CharBuffer;
+import java.util.ArrayDeque;
+import java.util.Deque;
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * Copied from http://tutorials.jenkov.com/java-howto/replace-strings-in-streams-arrays-...
+ * with fixes to {@link #read(char[], int, int)} and added support for escaping.
+ *
+ * @author Lukas Krejci
+ */
+public class TokenReplacingReader extends Reader {
+
+ private PushbackReader pushbackReader = null;
+ private Map<String, String> tokens = null;
+ private StringBuilder tokenNameBuffer = new StringBuilder();
+ private String tokenValue = null;
+ private int tokenValueIndex = 0;
+ private boolean escaping = false;
+ private Deque<String> activeTokens;
+ private Map<String, String> resolvedTokens;
+
+ public TokenReplacingReader(Reader source, Map<String, String> tokens) {
+ this.pushbackReader = new PushbackReader(source, 2);
+ this.tokens = tokens;
+ this.activeTokens = new ArrayDeque<String>();
+ this.resolvedTokens = new HashMap<String, String>();
+ }
+
+ protected TokenReplacingReader(String source, Map<String, String> tokens, Deque<String> activeTokens, Map<String, String> resolvedTokens) {
+ pushbackReader = new PushbackReader(new StringReader(source));
+ this.tokens = tokens;
+ this.activeTokens = activeTokens;
+ this.resolvedTokens = resolvedTokens;
+ }
+
+ public int read(CharBuffer target) throws IOException {
+ throw new RuntimeException("Operation Not Supported");
+ }
+
+ public int read() throws IOException {
+ if (this.tokenValue != null) {
+ if (this.tokenValueIndex < this.tokenValue.length()) {
+ return this.tokenValue.charAt(this.tokenValueIndex++);
+ }
+ if (this.tokenValueIndex == this.tokenValue.length()) {
+ this.tokenValue = null;
+ this.tokenValueIndex = 0;
+ }
+ }
+
+ int data = this.pushbackReader.read();
+
+ if (escaping) {
+ escaping = false;
+ return data;
+ }
+
+ if (data == '\\') {
+ escaping = true;
+ return data;
+ }
+
+ if (data != '$')
+ return data;
+
+ data = this.pushbackReader.read();
+ if (data != '{') {
+ this.pushbackReader.unread(data);
+ return '$';
+ }
+ this.tokenNameBuffer.delete(0, this.tokenNameBuffer.length());
+
+ data = this.pushbackReader.read();
+ while (data != '}') {
+ this.tokenNameBuffer.append((char) data);
+ data = this.pushbackReader.read();
+ }
+
+ String tokenName = tokenNameBuffer.toString();
+
+ if (resolvedTokens.containsKey(tokenName)) {
+ tokenValue = resolvedTokens.get(tokenName);
+ } else {
+ tokenValue = resolveToken(tokenName);
+ }
+
+ tokenValueIndex = 0;
+
+ if (!this.tokenValue.isEmpty()) {
+ return this.tokenValue.charAt(this.tokenValueIndex++);
+ } else {
+ return read();
+ }
+ }
+
+ public int read(char cbuf[]) throws IOException {
+ return read(cbuf, 0, cbuf.length);
+ }
+
+ public int read(char cbuf[], int off, int len) throws IOException {
+ int i = 0;
+ for (; i < len; i++) {
+ int nextChar = read();
+ if (nextChar == -1) {
+ if (i == 0) {
+ i = -1;
+ }
+ break;
+ }
+ cbuf[off + i] = (char) nextChar;
+ }
+ return i;
+ }
+
+ public void close() throws IOException {
+ this.pushbackReader.close();
+ }
+
+ public long skip(long n) throws IOException {
+ throw new UnsupportedOperationException("skip() not supported on TokenReplacingReader.");
+ }
+
+ public boolean ready() throws IOException {
+ return this.pushbackReader.ready();
+ }
+
+ public boolean markSupported() {
+ return false;
+ }
+
+ public void mark(int readAheadLimit) throws IOException {
+ throw new IOException("mark() not supported on TokenReplacingReader.");
+ }
+
+ public void reset() throws IOException {
+ throw new IOException("reset() not supported on TokenReplacingReader.");
+ }
+
+ private String readAll(Reader r) throws IOException {
+ int c;
+ StringBuilder bld = new StringBuilder();
+ while((c = r.read()) >= 0) {
+ bld.append((char)c);
+ }
+
+ return bld.toString();
+ }
+
+ private String resolveToken(String tokenName) throws IOException {
+ if (activeTokens.contains(tokenName)) {
+ throw new IllegalArgumentException("Token '" + tokenName + "' (indirectly) contains reference to itself in its value.");
+ }
+
+ activeTokens.push(tokenName);
+
+ String tokenValue = tokens.get(tokenName);
+
+ if (tokenValue != null) {
+ if (tokenValue.contains("${")) {
+ TokenReplacingReader childReader = new TokenReplacingReader(tokenValue, tokens, activeTokens, resolvedTokens);
+
+ tokenValue = readAll(childReader);
+ }
+ } else {
+ tokenValue = "${" + tokenName + "}";
+ }
+
+ resolvedTokens.put(tokenName, tokenValue);
+
+ activeTokens.pop();
+
+ return tokenValue;
+ }
+}
diff --git a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/setup/ApacheTestSetup.java b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/setup/ApacheTestSetup.java
index e0363af..908f7d7 100644
--- a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/setup/ApacheTestSetup.java
+++ b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/setup/ApacheTestSetup.java
@@ -60,7 +60,7 @@ import org.rhq.plugins.apache.util.HttpdAddressUtility;
import org.rhq.plugins.apache.util.ResourceTypes;
import org.rhq.plugins.apache.util.VHostSpec;
import org.rhq.test.ObjectCollectionSerializer;
-import org.rhq.test.TokenReplacingReader;
+import org.rhq.core.util.TokenReplacingReader;
import org.rhq.test.pc.PluginContainerTest;
public class ApacheTestSetup {
diff --git a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/upgrade/UpgradeTestBase.java b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/upgrade/UpgradeTestBase.java
index 719a3dd..7c4eb1e 100644
--- a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/upgrade/UpgradeTestBase.java
+++ b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/upgrade/UpgradeTestBase.java
@@ -66,7 +66,7 @@ import org.rhq.plugins.apache.util.ApacheDeploymentUtil.DeploymentConfig;
import org.rhq.plugins.apache.util.ResourceTypes;
import org.rhq.plugins.apache.util.VHostSpec;
import org.rhq.plugins.apache.util.VirtualHostLegacyResourceKeyUtil;
-import org.rhq.test.TokenReplacingReader;
+import org.rhq.core.util.TokenReplacingReader;
import org.rhq.test.pc.PluginContainerTest;
diff --git a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/util/ApacheDeploymentUtil.java b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/util/ApacheDeploymentUtil.java
index d5a7e45..c7f176c 100644
--- a/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/util/ApacheDeploymentUtil.java
+++ b/modules/integration-tests/apache-plugin-test/src/test/java/org/rhq/plugins/apache/util/ApacheDeploymentUtil.java
@@ -44,8 +44,8 @@ import org.rhq.core.util.file.FileUtil;
import org.rhq.core.util.stream.StreamUtil;
import org.rhq.plugins.apache.util.HttpdAddressUtility.Address;
import org.rhq.test.PortScout;
-import org.rhq.test.TokenReplacingProperties;
-import org.rhq.test.TokenReplacingReader;
+import org.rhq.core.util.TokenReplacingProperties;
+import org.rhq.core.util.TokenReplacingReader;
/**
*
diff --git a/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingProperties.java b/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingProperties.java
deleted file mode 100644
index 5708ee3..0000000
--- a/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingProperties.java
+++ /dev/null
@@ -1,300 +0,0 @@
-/*
- * RHQ Management Platform
- * Copyright (C) 2005-2011 Red Hat, Inc.
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-package org.rhq.test;
-
-import java.io.IOException;
-import java.io.Reader;
-import java.io.StringReader;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Properties;
-import java.util.Set;
-
-
-/**
- * This map is basically an extension of the {@link Properties} class that can resolve the references
- * to values of other keys inside the values.
- * <p>
- * I.e., if the map is initialized with the following mappings:
- * <p>
- * <code>
- * name => world <br />
- * hello => Hello ${name}!
- * </code>
- * <p>
- * then the call to:
- * <p>
- * <code>
- * get("hello")
- * </code>
- * <p>
- * will return:
- * <code>
- * "Hello world!"
- * </code>
- * <p>
- * To access and modify the underlying unprocessed values, one can use the "raw" counterparts of the standard
- * map methods (e.g. instead of {@link #get(Object)}, use {@link #getRaw(Object)}, etc.).
- *
- * @author Lukas Krejci
- */
-public class TokenReplacingProperties extends HashMap<String, String> {
- private static final long serialVersionUID = 1L;
-
- private Map<String, String> wrapped;
- private Map<Object, String> resolved = new HashMap<Object, String>();
-
- private class Entry implements Map.Entry<String, String> {
- private Map.Entry<String, String> wrapped;
- private boolean process;
-
- public Entry(Map.Entry<String, String> wrapped, boolean process) {
- this.wrapped = wrapped;
- this.process = process;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (obj == this) {
- return true;
- }
-
- if (!(obj instanceof Entry)) {
- return false;
- }
-
- Entry other = (Entry) obj;
-
- String key = wrapped.getKey();
- String otherKey = other.getKey();
- String value = getValue();
- String otherValue = other.getValue();
-
- return (key == null ? otherKey == null : key.equals(otherKey)) &&
- (value == null ? otherValue == null : value.equals(otherValue));
- }
-
- public String getKey() {
- return wrapped.getKey();
- }
-
- public String getValue() {
- if (process) {
- return get(wrapped.getKey());
- } else {
- return wrapped.getValue();
- }
- }
-
- @Override
- public int hashCode() {
- String key = wrapped.getKey();
- String value = getValue();
- return (key == null ? 0 : key.hashCode()) ^
- (value == null ? 0 : value.hashCode());
- }
-
- public String setValue(String value) {
- resolved.remove(wrapped.getKey());
- return wrapped.setValue(value);
- }
-
- @Override
- public String toString() {
- return wrapped.toString();
- }
- }
-
- public TokenReplacingProperties(Map<String, String> wrapped) {
- this.wrapped = wrapped;
- }
-
- @SuppressWarnings("unchecked")
- public TokenReplacingProperties(Properties properties) {
- @SuppressWarnings("rawtypes")
- Map map = properties;
- this.wrapped = (Map<String, String>) map;
- }
-
- @Override
- public String get(Object key) {
- if (resolved.containsKey(key)) {
- return resolved.get(key);
- }
-
- String rawValue = getRaw(key);
-
- if (rawValue == null) {
- return null;
- }
-
- String ret = readAll(new TokenReplacingReader(new StringReader(rawValue.toString()), this));
-
- resolved.put(key, ret);
-
- return ret;
- }
-
- public String getRaw(Object key) {
- return wrapped.get(key);
- }
-
- @Override
- public String put(String key, String value) {
- resolved.remove(key);
- return wrapped.put(key, value);
- }
-
- @Override
- public void putAll(Map<? extends String, ? extends String> m) {
- for(String key : m.keySet()) {
- resolved.remove(key);
- }
- wrapped.putAll(m);
- }
-
- public void putAll(Properties properties) {
- for(String propName : properties.stringPropertyNames()) {
- put(propName, properties.getProperty(propName));
- }
- }
-
- @Override
- public void clear() {
- wrapped.clear();
- resolved.clear();
- }
-
- @Override
- public boolean containsKey(Object key) {
- return wrapped.containsKey(key);
- }
-
- @Override
- public Set<String> keySet() {
- return wrapped.keySet();
- }
-
- @Override
- public boolean containsValue(Object value) {
- for(String key : keySet()) {
- String thisVal = get(key);
- if (thisVal == null) {
- if (value == null) {
- return true;
- }
- } else {
- if (thisVal.equals(value)) {
- return true;
- }
- }
- }
-
- return false;
- }
-
- /**
- * Checks whether this map contains the unprocessed value.
- *
- * @param value
- * @return
- */
- public boolean containsRawValue(Object value) {
- return wrapped.containsValue(value);
- }
-
- /**
- * The returned set <b>IS NOT</b> backed by this map
- * (unlike in the default map implementations).
- * <p>
- * The {@link java.util.Map.Entry#setValue(Object)} method
- * does modify this map though.
- */
- @Override
- public Set<Map.Entry<String, String>> entrySet() {
- Set<Map.Entry<String, String>> ret = new HashSet<Map.Entry<String, String>>();
- for(Map.Entry<String, String> entry : wrapped.entrySet()) {
- ret.add(new Entry(entry, true));
- }
-
- return ret;
- }
-
- public Set<Map.Entry<String, String>> getRawEntrySet() {
- Set<Map.Entry<String, String>> ret = new HashSet<Map.Entry<String, String>>();
- for(Map.Entry<String, String> entry : wrapped.entrySet()) {
- ret.add(new Entry(entry, false));
- }
-
- return ret;
- }
-
- @Override
- public String remove(Object key) {
- resolved.remove(key);
- return wrapped.remove(key).toString();
- }
-
- @Override
- public int size() {
- return wrapped.size();
- }
-
- /**
- * Unlike in the default implementation the collection returned
- * from this method <b>IS NOT</b> backed by this map.
- */
- @Override
- public Collection<String> values() {
- List<String> ret = new ArrayList<String>();
- for(String key : keySet()) {
- ret.add(get(key));
- }
-
- return ret;
- }
-
- public Collection<String> getRawValues() {
- List<String> ret = new ArrayList<String>();
- for(String key : keySet()) {
- ret.add(wrapped.get(key));
- }
-
- return ret;
- }
-
- private String readAll(Reader rdr) {
- int in = -1;
- StringBuilder bld = new StringBuilder();
- try {
- while ((in = rdr.read()) != -1) {
- bld.append((char) in);
- }
- } catch (IOException e) {
- throw new IllegalStateException("Exception while reading a string.", e);
- }
-
- return bld.toString();
- }
-}
\ No newline at end of file
diff --git a/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingReader.java b/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingReader.java
deleted file mode 100644
index bc5aef6..0000000
--- a/modules/test-utils/src/main/java/org/rhq/test/TokenReplacingReader.java
+++ /dev/null
@@ -1,201 +0,0 @@
-/*
- * RHQ Management Platform
- * Copyright (C) 2005-2011 Red Hat, Inc.
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-package org.rhq.test;
-
-import java.io.IOException;
-import java.io.PushbackReader;
-import java.io.Reader;
-import java.io.StringReader;
-import java.nio.CharBuffer;
-import java.util.ArrayDeque;
-import java.util.Deque;
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * Copied from http://tutorials.jenkov.com/java-howto/replace-strings-in-streams-arrays-...
- * with fixes to {@link #read(char[], int, int)} and added support for escaping.
- *
- * @author Lukas Krejci
- */
-public class TokenReplacingReader extends Reader {
-
- private PushbackReader pushbackReader = null;
- private Map<String, String> tokens = null;
- private StringBuilder tokenNameBuffer = new StringBuilder();
- private String tokenValue = null;
- private int tokenValueIndex = 0;
- private boolean escaping = false;
- private Deque<String> activeTokens;
- private Map<String, String> resolvedTokens;
-
- public TokenReplacingReader(Reader source, Map<String, String> tokens) {
- this.pushbackReader = new PushbackReader(source, 2);
- this.tokens = tokens;
- this.activeTokens = new ArrayDeque<String>();
- this.resolvedTokens = new HashMap<String, String>();
- }
-
- protected TokenReplacingReader(String source, Map<String, String> tokens, Deque<String> activeTokens, Map<String, String> resolvedTokens) {
- pushbackReader = new PushbackReader(new StringReader(source));
- this.tokens = tokens;
- this.activeTokens = activeTokens;
- this.resolvedTokens = resolvedTokens;
- }
-
- public int read(CharBuffer target) throws IOException {
- throw new RuntimeException("Operation Not Supported");
- }
-
- public int read() throws IOException {
- if (this.tokenValue != null) {
- if (this.tokenValueIndex < this.tokenValue.length()) {
- return this.tokenValue.charAt(this.tokenValueIndex++);
- }
- if (this.tokenValueIndex == this.tokenValue.length()) {
- this.tokenValue = null;
- this.tokenValueIndex = 0;
- }
- }
-
- int data = this.pushbackReader.read();
-
- if (escaping) {
- escaping = false;
- return data;
- }
-
- if (data == '\\') {
- escaping = true;
- return data;
- }
-
- if (data != '$')
- return data;
-
- data = this.pushbackReader.read();
- if (data != '{') {
- this.pushbackReader.unread(data);
- return '$';
- }
- this.tokenNameBuffer.delete(0, this.tokenNameBuffer.length());
-
- data = this.pushbackReader.read();
- while (data != '}') {
- this.tokenNameBuffer.append((char) data);
- data = this.pushbackReader.read();
- }
-
- String tokenName = tokenNameBuffer.toString();
-
- if (resolvedTokens.containsKey(tokenName)) {
- tokenValue = resolvedTokens.get(tokenName);
- } else {
- tokenValue = resolveToken(tokenName);
- }
-
- tokenValueIndex = 0;
-
- if (!this.tokenValue.isEmpty()) {
- return this.tokenValue.charAt(this.tokenValueIndex++);
- } else {
- return read();
- }
- }
-
- public int read(char cbuf[]) throws IOException {
- return read(cbuf, 0, cbuf.length);
- }
-
- public int read(char cbuf[], int off, int len) throws IOException {
- int i = 0;
- for (; i < len; i++) {
- int nextChar = read();
- if (nextChar == -1) {
- if (i == 0) {
- i = -1;
- }
- break;
- }
- cbuf[off + i] = (char) nextChar;
- }
- return i;
- }
-
- public void close() throws IOException {
- this.pushbackReader.close();
- }
-
- public long skip(long n) throws IOException {
- throw new UnsupportedOperationException("skip() not supported on TokenReplacingReader.");
- }
-
- public boolean ready() throws IOException {
- return this.pushbackReader.ready();
- }
-
- public boolean markSupported() {
- return false;
- }
-
- public void mark(int readAheadLimit) throws IOException {
- throw new IOException("mark() not supported on TokenReplacingReader.");
- }
-
- public void reset() throws IOException {
- throw new IOException("reset() not supported on TokenReplacingReader.");
- }
-
- private String readAll(Reader r) throws IOException {
- int c;
- StringBuilder bld = new StringBuilder();
- while((c = r.read()) >= 0) {
- bld.append((char)c);
- }
-
- return bld.toString();
- }
-
- private String resolveToken(String tokenName) throws IOException {
- if (activeTokens.contains(tokenName)) {
- throw new IllegalArgumentException("Token '" + tokenName + "' (indirectly) contains reference to itself in its value.");
- }
-
- activeTokens.push(tokenName);
-
- String tokenValue = tokens.get(tokenName);
-
- if (tokenValue != null) {
- if (tokenValue.contains("${")) {
- TokenReplacingReader childReader = new TokenReplacingReader(tokenValue, tokens, activeTokens, resolvedTokens);
-
- tokenValue = readAll(childReader);
- }
- } else {
- tokenValue = "${" + tokenName + "}";
- }
-
- resolvedTokens.put(tokenName, tokenValue);
-
- activeTokens.pop();
-
- return tokenValue;
- }
-}
10 years, 8 months
[rhq] Branch 'bug/rhq-1' - modules/core
by mazz
modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/InventoryManager.java | 82 ++++++----
1 file changed, 52 insertions(+), 30 deletions(-)
New commits:
commit c1c90d3af3f88a85116d2bdaf3f5477bebefa439
Author: John Mazzitelli <mazz(a)redhat.com>
Date: Thu Mar 28 15:33:00 2013 -0400
BZ 535289 - the agent side will now remove resources from inventory when the server indicates those resources are to be IGNORED
diff --git a/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/InventoryManager.java b/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/InventoryManager.java
index 3e998b3..d840116 100644
--- a/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/InventoryManager.java
+++ b/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/InventoryManager.java
@@ -1148,13 +1148,14 @@ public class InventoryManager extends AgentService implements ContainerService,
*/
private void synchInventory(ResourceSyncInfo syncInfo, boolean partialInventory) {
log.info("Syncing local inventory with Server inventory...");
- long startTime = System.currentTimeMillis();
- Set<Resource> syncedResources = new LinkedHashSet<Resource>();
- Set<ResourceSyncInfo> unknownResourceSyncInfos = new LinkedHashSet<ResourceSyncInfo>();
- Set<Integer> modifiedResourceIds = new LinkedHashSet<Integer>();
- Set<Integer> deletedResourceIds = new LinkedHashSet<Integer>();
- Set<Resource> newlyCommittedResources = new LinkedHashSet<Resource>();
- Set<String> allServerSideUuids = new HashSet<String>();
+ final long startTime = System.currentTimeMillis();
+ final Set<Resource> syncedResources = new LinkedHashSet<Resource>();
+ final Set<ResourceSyncInfo> unknownResourceSyncInfos = new LinkedHashSet<ResourceSyncInfo>();
+ final Set<Integer> modifiedResourceIds = new LinkedHashSet<Integer>();
+ final Set<Integer> deletedResourceIds = new LinkedHashSet<Integer>();
+ final Set<Resource> newlyCommittedResources = new LinkedHashSet<Resource>();
+ final Set<Resource> ignoredResources = new LinkedHashSet<Resource>();
+ final Set<String> allServerSideUuids = new HashSet<String>();
// rhq-980 Adding agent-side logging to report any unexpected synch failure.
try {
@@ -1167,16 +1168,17 @@ public class InventoryManager extends AgentService implements ContainerService,
log.debug("Processing Server sync info...");
processSyncInfo(syncInfo, syncedResources, unknownResourceSyncInfos, modifiedResourceIds,
- deletedResourceIds, newlyCommittedResources);
+ deletedResourceIds, newlyCommittedResources, ignoredResources);
if (log.isDebugEnabled()) {
- log.debug(String.format("DONE Processing sync info - took [%d] ms - synced [%d] Resources "
- + "- found [%d] unknown Resources and [%d] modified Resources.",
+ log.debug(String.format("DONE Processing sync info: [%d] ms: synced [%d] resources: "
+ + "[%d] unknown, [%d] modified, [%d] deleted, [%d] newly committed",
(System.currentTimeMillis() - startTime), syncedResources.size(), unknownResourceSyncInfos.size(),
- modifiedResourceIds.size()));
+ modifiedResourceIds.size(), deletedResourceIds.size(), newlyCommittedResources.size()));
}
mergeUnknownResources(unknownResourceSyncInfos);
mergeModifiedResources(modifiedResourceIds);
+ purgeIgnoredResources(ignoredResources);
if (!partialInventory) {
purgeObsoleteResources(allServerSideUuids);
}
@@ -2796,7 +2798,7 @@ public class InventoryManager extends AgentService implements ContainerService,
private void processSyncInfo(ResourceSyncInfo syncInfo, Set<Resource> syncedResources,
Set<ResourceSyncInfo> unknownResourceSyncInfos, Set<Integer> modifiedResourceIds,
- Set<Integer> deletedResourceIds, Set<Resource> newlyCommittedResources) {
+ Set<Integer> deletedResourceIds, Set<Resource> newlyCommittedResources, Set<Resource> ignoredResources) {
if (InventoryStatus.DELETED == syncInfo.getInventoryStatus()) {
// A previously deleted resource still being reported by the server. Support for this option can
@@ -2832,7 +2834,7 @@ public class InventoryManager extends AgentService implements ContainerService,
.isDisabledOrIgnoredResourceType(resource.getResourceType());
if (ignoreResource || ignoreResourceType) {
// a resource or its type has been tagged to be ignored - we need to remove it from our inventory
- deletedResourceIds.add(syncInfo.getId());
+ ignoredResources.add(resource);
} else {
if (resource.getInventoryStatus() != InventoryStatus.COMMITTED
&& syncInfo.getInventoryStatus() == InventoryStatus.COMMITTED) {
@@ -2867,33 +2869,37 @@ public class InventoryManager extends AgentService implements ContainerService,
// Recurse...
for (ResourceSyncInfo childSyncInfo : syncInfo.getChildSyncInfos()) {
- processSyncInfo(childSyncInfo, syncedResources, unknownResourceSyncInfos,
- modifiedResourceIds, deletedResourceIds, newlyCommittedResources);
+ processSyncInfo(childSyncInfo, syncedResources, unknownResourceSyncInfos, modifiedResourceIds,
+ deletedResourceIds, newlyCommittedResources, ignoredResources);
}
}
}
}
private void mergeModifiedResources(Set<Integer> modifiedResourceIds) {
- if (log.isDebugEnabled()) {
- log.debug("Merging [" + modifiedResourceIds.size() + "] modified Resources into local inventory...");
- }
- Set<Resource> modifiedResources = configuration.getServerServices().getDiscoveryServerService()
- .getResources(modifiedResourceIds, false);
- syncSchedules(modifiedResources); // RHQ-792, mtime is the indicator that schedules should be sync'ed too
- syncDriftDefinitions(modifiedResources);
- for (Resource modifiedResource : modifiedResources) {
- mergeResource(modifiedResource);
+ if (modifiedResourceIds != null && !modifiedResourceIds.isEmpty()) {
+ if (log.isDebugEnabled()) {
+ log.debug("Merging [" + modifiedResourceIds.size() + "] modified Resources into local inventory...");
+ }
+
+ Set<Resource> modifiedResources = configuration.getServerServices().getDiscoveryServerService()
+ .getResources(modifiedResourceIds, false);
+ syncSchedules(modifiedResources); // RHQ-792, mtime is the indicator that schedules should be sync'ed too
+ syncDriftDefinitions(modifiedResources);
+ for (Resource modifiedResource : modifiedResources) {
+ mergeResource(modifiedResource);
+ }
}
+ return;
}
private void mergeUnknownResources(Set<ResourceSyncInfo> unknownResourceSyncInfos) {
- if (log.isDebugEnabled()) {
- log.debug("Merging [" + unknownResourceSyncInfos.size()
- + "] unknown resources and descendants into inventory...");
- }
+ if (unknownResourceSyncInfos != null && !unknownResourceSyncInfos.isEmpty()) {
+ if (log.isDebugEnabled()) {
+ log.debug("Merging [" + unknownResourceSyncInfos.size()
+ + "] unknown resources and descendants into inventory...");
+ }
- if (!unknownResourceSyncInfos.isEmpty()) {
PluginMetadataManager pmm = this.pluginManager.getMetadataManager();
Set<Resource> unknownResources = getResourcesFromSyncInfos(unknownResourceSyncInfos);
@@ -3220,6 +3226,22 @@ public class InventoryManager extends AgentService implements ContainerService,
return pluginConfigUpdated;
}
+ private void purgeIgnoredResources(Set<Resource> ignoredResources) {
+ if (ignoredResources == null || ignoredResources.isEmpty()) {
+ return;
+ }
+
+ log.debug("Purging [" + ignoredResources.size() + "] ignored resources...");
+ this.inventoryLock.writeLock().lock();
+ try {
+ for (Resource ignoredResource : ignoredResources) {
+ uninventoryResource(ignoredResource.getId());
+ }
+ } finally {
+ this.inventoryLock.writeLock().unlock();
+ }
+ }
+
private void purgeObsoleteResources(Set<String> allUuids) {
// Remove previously synchronized Resources that no longer exist in the Server's inventory...
log.debug("Purging obsolete Resources...");
@@ -3247,7 +3269,7 @@ public class InventoryManager extends AgentService implements ContainerService,
removedResources++;
}
} else {
- log.debug("No container found for uuid: " + uuid);
+ log.debug("No obsolete resource to purge - no container for uuid: " + uuid);
}
}
}
10 years, 8 months
[rhq] modules/enterprise
by Jiri Kremser
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java | 26 +-
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java | 89 +++++-----
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties | 1
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties | 2
8 files changed, 73 insertions(+), 53 deletions(-)
New commits:
commit 28ee366c11d10e77a361bb4180d18a8360016e2f
Author: Jirka Kremser <jkremser(a)redhat.com>
Date: Thu Mar 28 17:41:13 2013 +0100
[BZ 876132] - Remote agent install form requires the ins. path to be non-empty, but the tooltip says it can be empty - Allowing blank installation path. It should search for the agent install directory if the path prefix is provided or to choose a default one.
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
index 4e80756..7fbf8a1 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/CoreGUI.java
@@ -36,6 +36,7 @@ import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.Window.Location;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.core.KeyIdentifier;
+import com.smartgwt.client.i18n.SmartGwtMessages;
import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.util.KeyCallback;
import com.smartgwt.client.util.Page;
@@ -78,6 +79,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// This must come first to ensure proper I18N class loading for dev mode
private static final Messages MSG = GWT.create(Messages.class);
private static final MessageConstants MSGCONST = GWT.create(MessageConstants.class);
+ private static final SmartGwtMessages SMART_GWT_MSG = GWT.create(SmartGwtMessages.class);
private static final String DEFAULT_VIEW = DashboardsView.VIEW_ID.getName();
private static final String LOGOUT_VIEW = "LogOut";
@@ -92,7 +94,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
+ ResourceGroupDetailView.AUTO_GROUP_VIEW + "|" //
+ ResourceGroupDetailView.AUTO_CLUSTER_VIEW //
+ ResourceGroupTopView.VIEW_ID + "|" //
- + ResourceTopView.VIEW_ID + "|" //
+ + ResourceTopView.VIEW_ID + "|" //
+ ")/[^/]*";
private static ErrorHandler errorHandler = new ErrorHandler();
@@ -109,7 +111,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// while also changing the main content. Typically we refresh only when the path is not changed.
private static boolean pendingRefresh = false;
- //spinder [BZ 731864] defining variable that can be set at build time to enable/disable TAG ui components.
+ //spinder [BZ 731864] defining variable that can be set at build time to enable/disable TAG ui components.
// This will be set to 'false' on the release branch.
private static boolean enableTagsForUI = Boolean.valueOf(MSG.enable_tags());
@@ -160,11 +162,11 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
}
});
- /* after having this enabled for a while, the majority opinion is that this is more annoying than helpful
- *
+ /* after having this enabled for a while, the majority opinion is that this is more annoying than helpful
+ *
Window.addWindowClosingHandler(new Window.ClosingHandler() {
public void onWindowClosing(Window.ClosingEvent event) {
- event.setMessage("Are you sure you want to leave RHQ?");
+ event.setMessage("Are you sure you want to leave RHQ?");
}
});
*/
@@ -431,7 +433,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
pendingMessage = message;
pendingRefresh = refresh;
- // if path starts with "#" (e.g. if caller used LinkManager to obtain some of the path), strip it off
+ // if path starts with "#" (e.g. if caller used LinkManager to obtain some of the path), strip it off
if (view.charAt(0) == '#') {
view = view.substring(1);
}
@@ -454,10 +456,10 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
// resource to an autogroup in the same tree. Try to keep the tab selection sticky as best as
// possible while moving from one view to another by grabbing the end portion of the previous
// history URL and append it to the new history URL. The suffix is assumed to follow the
- // ID (numeric) portion of the currentViewPath.
+ // ID (numeric) portion of the currentViewPath.
String suffix = currentViewPath.replaceFirst("\\D*[^/]*", "");
// make sure we're not *too* sticky, stop no deeper than the subtab level. This prevents
- // trying to render non-applicable detail views. We'll do this by chopping at the start
+ // trying to render non-applicable detail views. We'll do this by chopping at the start
// of any other numeric in the path
suffix = suffix.replaceFirst("\\d.*", "");
view += suffix;
@@ -475,6 +477,10 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
return MSGCONST;
}
+ public static SmartGwtMessages getSmartGwtMessages() {
+ return SMART_GWT_MSG;
+ }
+
public void reset() {
messageCenter.reset();
footer.reset();
@@ -511,7 +517,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
}
public void initCanvas() {
- // request a redraw of the MenuBarItem to ensure the correct session info is displayed
+ // request a redraw of the MenuBarItem to ensure the correct session info is displayed
getMember(0).markForRedraw();
// remove any current viewId so the next requested view generates new content
@@ -520,7 +526,7 @@ public class CoreGUI implements EntryPoint, ValueChangeHandler<String>, Event.Na
@Override
public void renderView(ViewPath viewPath) {
- // If the session is logged out ensure that we only navigate to the log out view, otherwise keep
+ // If the session is logged out ensure that we only navigate to the log out view, otherwise keep
// our CoreGUI session alive by refreshing the session timer each time the user performs navigation
if (UserSessionManager.isLoggedOut()) {
if (!LOGOUT_VIEW.equals(viewPath.getCurrent().getPath())) {
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
index c92114f..c1ca163 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
@@ -23,6 +23,8 @@
package org.rhq.enterprise.gui.coregui.client.admin.agent.install;
import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Map;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.types.ExpansionMode;
@@ -72,6 +74,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
private EnhancedIButton installButton;
private EnhancedIButton startButton;
private EnhancedIButton stopButton;
+ private ButtonItem findAgentInstallPathButton;
+ private ButtonItem statusCheckButton;
private VLayout agentInfoLayout;
public RemoteAgentInstallView() {
@@ -110,45 +114,45 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
connectionForm = new DynamicForm();
connectionForm.setNumCols(4);
connectionForm.setWrapItemTitles(false);
- connectionForm.setColWidths("130", "250", "110");
+ connectionForm.setColWidths("130", "450", "110");
+ final int textFieldWidth = 440;
TextItem host = new TextItem("host", MSG.common_title_host());
host.setRequired(true);
- host.setWidth("240");
+ host.setWidth(textFieldWidth);
host.setPrompt(MSG.view_remoteAgentInstall_promptHost());
host.setHoverWidth(300);
host.setEndRow(true);
TextItem port = new TextItem("port", MSG.common_title_port());
port.setRequired(false);
- port.setWidth("240");
+ port.setWidth(textFieldWidth);
port.setPrompt(MSG.view_remoteAgentInstall_promptPort());
port.setHoverWidth(300);
port.setEndRow(true);
TextItem username = new TextItem("username", MSG.common_title_user());
username.setRequired(true);
- username.setWidth("240");
+ username.setWidth(textFieldWidth);
username.setPrompt(MSG.view_remoteAgentInstall_promptUser());
username.setHoverWidth(300);
username.setEndRow(true);
PasswordItem password = new PasswordItem("password", MSG.common_title_password());
password.setRequired(false);
- password.setWidth("240");
+ password.setWidth(textFieldWidth);
password.setPrompt(MSG.view_remoteAgentInstall_promptPassword());
password.setHoverWidth(300);
password.setEndRow(true);
TextItem agentInstallPath = new TextItem("agentInstallPath", MSG.view_remoteAgentInstall_installPath());
- agentInstallPath.setRequired(true);
- agentInstallPath.setWidth("240");
+ agentInstallPath.setWidth(textFieldWidth);
agentInstallPath.setPrompt(MSG.view_remoteAgentInstall_promptInstallPath());
agentInstallPath.setHoverWidth(300);
agentInstallPath.setStartRow(true);
agentInstallPath.setEndRow(false);
- ButtonItem findAgentInstallPathButton = new ButtonItem("findAgentInstallPathButton",
+ findAgentInstallPathButton = new ButtonItem("findAgentInstallPathButton",
MSG.view_remoteAgentInstall_buttonFindAgent());
findAgentInstallPathButton.setStartRow(false);
findAgentInstallPathButton.setEndRow(true);
@@ -157,9 +161,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
findAgentInstallPathButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
- if (connectionForm.validate()) {
- findAgentInstallPath();
- }
+ findAgentInstallPath();
}
});
@@ -170,7 +172,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
agentStatus.setStartRow(true);
agentStatus.setEndRow(false);
- ButtonItem statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
+ statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
statusCheckButton.setStartRow(false);
statusCheckButton.setEndRow(true);
if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
@@ -205,11 +207,6 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
});
startButton = new EnhancedIButton(MSG.view_remoteAgentInstall_startAgent());
- // startButton.setShowIfCondition(new FormItemIfFunction() {
- // public boolean execute(FormItem formItem, Object o, DynamicForm dynamicForm) {
- // return form.getValue("agentStatus") != null && !"Agent Not Installed".equals(form.getValue("agentStatus"));
- // }
- // });
startButton.setExtraSpace(10);
startButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
@@ -234,32 +231,44 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
private void findAgentInstallPath() {
- disableButtons(true);
+ final Map<String, String> errors = new HashMap<String, String>(2);
+ if (connectionForm.getValueAsString("host") == null
+ || connectionForm.getValueAsString("host").trim().isEmpty()) {
+ errors.put("host", CoreGUI.getSmartGwtMessages().validator_requiredField());
+ }
+ if (connectionForm.getValueAsString("username") == null
+ || connectionForm.getValueAsString("username").trim().isEmpty()) {
+ errors.put("username", CoreGUI.getSmartGwtMessages().validator_requiredField());
+ }
+ connectionForm.setErrors(errors, true);
+ if (errors.isEmpty()) {
+ disableButtons(true);
- final String parentPath = getAgentInstallPath();
+ final String parentPath = connectionForm.getValueAsString("agentInstallPath");
- remoteInstallService.findAgentInstallPath(getRemoteAccessInfo(), parentPath, new AsyncCallback<String>() {
- public void onFailure(Throwable caught) {
- disableButtons(false);
- CoreGUI.getErrorHandler().handleError(MSG.view_remoteAgentInstall_error_1(), caught);
- }
+ remoteInstallService.findAgentInstallPath(getRemoteAccessInfo(), parentPath, new AsyncCallback<String>() {
+ public void onFailure(Throwable caught) {
+ disableButtons(false);
+ CoreGUI.getErrorHandler().handleError(MSG.view_remoteAgentInstall_error_1(), caught);
+ }
- public void onSuccess(String result) {
- disableButtons(false);
- if (result != null) {
- connectionForm.setValue("agentInstallPath", result);
- } else {
- String err;
- if (parentPath == null || parentPath.length() == 0) {
- err = MSG.view_remoteAgentInstall_error_2();
+ public void onSuccess(String result) {
+ disableButtons(false);
+ if (result != null) {
+ connectionForm.setValue("agentInstallPath", result);
} else {
- err = MSG.view_remoteAgentInstall_error_3(parentPath);
+ String err;
+ if (parentPath == null || parentPath.length() == 0) {
+ err = MSG.view_remoteAgentInstall_error_2();
+ } else {
+ err = MSG.view_remoteAgentInstall_error_3(parentPath);
+ }
+ CoreGUI.getErrorHandler().handleError(err);
}
- CoreGUI.getErrorHandler().handleError(err);
+ agentStatusCheck();
}
- agentStatusCheck();
- }
- });
+ });
+ }
}
private void agentStatusCheck() {
@@ -432,6 +441,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
startButton.setDisabled(disabled);
stopButton.setDisabled(disabled);
buttonsForm.setDisabled(disabled);
+ findAgentInstallPathButton.setDisabled(disabled);
+ statusCheckButton.setDisabled(disabled);
}
private RemoteAccessInfo getRemoteAccessInfo() {
@@ -453,6 +464,10 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
private String getAgentInstallPath() {
+ if (connectionForm.getValueAsString("agentInstallPath") == null
+ || connectionForm.getValueAsString("agentInstallPath").trim().isEmpty()) {
+ findAgentInstallPath();
+ }
return connectionForm.getValueAsString("agentInstallPath");
}
}
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
index 66fc511..0d731ab 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
@@ -1865,7 +1865,7 @@ view_remoteAgentInstall_installInfo = Agent Installation Information
view_remoteAgentInstall_installPath = Agent Install Path
view_remoteAgentInstall_owner = Owner
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
index 6c41b06..b4ba1e4 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
@@ -1878,7 +1878,7 @@ view_remoteAgentInstall_installInfo = Informace o instalaci agenta
view_remoteAgentInstall_installPath = Instalační cesta k agentovi
view_remoteAgentInstall_owner = Vlastník
view_remoteAgentInstall_promptHost = Hostitel, kde je, nebo kam bude, agent nainstalován
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = Přihlašovací údaje použité pro autentizaci uživatele přes SSH
view_remoteAgentInstall_promptPort = Port na němž naslouchá SSH. Pokud není specifikováno použije se 22
view_remoteAgentInstall_promptUser = Jméno uživatele jehož přihlašovací údaje jsou předány hostiteli přes SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
index 7094d93..016b160 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
@@ -1680,7 +1680,7 @@ view_remoteAgentInstall_installInfo = Informationen zur Agent-Installation
view_remoteAgentInstall_installPath = Pfad der Agent-Installation
view_remoteAgentInstall_owner = Eigentümer
##view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
##view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
##view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
##view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
index 07cebd4..f832c7d 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
@@ -1534,7 +1534,6 @@ view_remoteAgentInstall_installInfo = 에이전트 설치 정보
view_remoteAgentInstall_installPath = 에이전트 설치 경로
view_remoteAgentInstall_owner = 소유자
view_remoteAgentInstall_promptHost = 에이전트가 설치되어 있거나 앞으로 설치되는 호스트
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = SSH를 통해 호스트의 사용자를 인증하는데 사용되는 인증
view_remoteAgentInstall_promptUser = SSH를 통해 호스트로 전달되는 인증을 가진 사용자의 이름
view_remoteAgentInstall_result = 결과
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
index 929f1ef..f354bd8 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
@@ -1816,7 +1816,7 @@
#view_remoteAgentInstall_installPath = Agent Install Path
#view_remoteAgentInstall_owner = Owner
#view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
#view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
#view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
#view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
index e9bd625..e19f5f2 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
@@ -1850,7 +1850,7 @@ view_remoteAgentInstall_installInfo = \u4ee3\u7406\u5b89\u88c5\u4fe1\u606f
view_remoteAgentInstall_installPath = \u4ee3\u7406\u5b89\u88c5\u8def\u5f84
view_remoteAgentInstall_owner = \u6240\u6709\u8005
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
10 years, 8 months
[rhq] modules/enterprise
by Jiri Kremser
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java | 115 ++++------
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties | 1
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties | 2
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties | 2
7 files changed, 63 insertions(+), 63 deletions(-)
New commits:
commit 56b6e3c7eafd82d0f25625ae00c85aa4e38ee8ab
Author: Jirka Kremser <jkremser(a)redhat.com>
Date: Thu Mar 28 14:25:23 2013 +0100
[BZ 876132] - Remote agent install form requires the ins. path to be non-empty, but the tooltip says it can be empty - Tooltip has been changed. Also the whole view for this use case was improved.
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
index b48ff7d..c92114f 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/admin/agent/install/RemoteAgentInstallView.java
@@ -27,19 +27,21 @@ import java.util.ArrayList;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.smartgwt.client.types.ExpansionMode;
import com.smartgwt.client.widgets.Canvas;
+import com.smartgwt.client.widgets.HTMLFlow;
+import com.smartgwt.client.widgets.events.ClickEvent;
+import com.smartgwt.client.widgets.events.ClickHandler;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ButtonItem;
import com.smartgwt.client.widgets.form.fields.CanvasItem;
import com.smartgwt.client.widgets.form.fields.HeaderItem;
import com.smartgwt.client.widgets.form.fields.PasswordItem;
-import com.smartgwt.client.widgets.form.fields.SpacerItem;
import com.smartgwt.client.widgets.form.fields.StaticTextItem;
import com.smartgwt.client.widgets.form.fields.TextItem;
-import com.smartgwt.client.widgets.form.fields.events.ClickEvent;
-import com.smartgwt.client.widgets.form.fields.events.ClickHandler;
import com.smartgwt.client.widgets.grid.ListGrid;
import com.smartgwt.client.widgets.grid.ListGridField;
import com.smartgwt.client.widgets.grid.ListGridRecord;
+import com.smartgwt.client.widgets.layout.HLayout;
+import com.smartgwt.client.widgets.layout.Layout;
import com.smartgwt.client.widgets.layout.VLayout;
import org.rhq.core.domain.install.remote.AgentInstallInfo;
@@ -52,8 +54,9 @@ import org.rhq.enterprise.gui.coregui.client.components.view.ViewName;
import org.rhq.enterprise.gui.coregui.client.gwt.GWTServiceLookup;
import org.rhq.enterprise.gui.coregui.client.gwt.RemoteInstallGWTServiceAsync;
import org.rhq.enterprise.gui.coregui.client.util.MeasurementConverterClient;
-import org.rhq.enterprise.gui.coregui.client.util.message.Message;
+import org.rhq.enterprise.gui.coregui.client.util.enhanced.EnhancedIButton;
import org.rhq.enterprise.gui.coregui.client.util.enhanced.EnhancedVLayout;
+import org.rhq.enterprise.gui.coregui.client.util.message.Message;
/**
* @author Greg Hinkle
@@ -65,10 +68,10 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
private RemoteInstallGWTServiceAsync remoteInstallService = GWTServiceLookup.getRemoteInstallService(600000);
private DynamicForm connectionForm;
- private DynamicForm buttonsForm;
- private ButtonItem installButton;
- private ButtonItem startButton;
- private ButtonItem stopButton;
+ private Layout buttonsForm;
+ private EnhancedIButton installButton;
+ private EnhancedIButton startButton;
+ private EnhancedIButton stopButton;
private VLayout agentInfoLayout;
public RemoteAgentInstallView() {
@@ -81,60 +84,65 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
@Override
protected void onInit() {
super.onInit();
-
- addMember(getConnectionForm());
- addMember(getButtons());
+ Layout layout = new VLayout();
+ layout.setPadding(10);
+ HTMLFlow header = new HTMLFlow(MSG.view_remoteAgentInstall_connInfo());
+ header.setStyleName("headerItem");
+ header.setExtraSpace(5);
+ layout.addMember(header);
+ layout.addMember(getConnectionForm());
+ header = new HTMLFlow(MSG.common_title_operations());
+ header.setStyleName("headerItem");
+ header.setExtraSpace(5);
+ layout.addMember(header);
+ layout.addMember(getButtons());
agentInfoLayout = new VLayout();
agentInfoLayout.setWidth100();
agentInfoLayout.setHeight100();
agentInfoLayout.setMembersMargin(1);
- addMember(agentInfoLayout);
+ layout.addMember(agentInfoLayout);
+ addMember(layout);
}
private DynamicForm getConnectionForm() {
connectionForm = new DynamicForm();
- connectionForm.setWidth100();
- connectionForm.setNumCols(3);
+ connectionForm.setNumCols(4);
connectionForm.setWrapItemTitles(false);
- connectionForm.setColWidths("25%", "50%", "25%");
- connectionForm.setMargin(10);
-
- HeaderItem connectionHeader = new HeaderItem();
- connectionHeader.setDefaultValue(MSG.view_remoteAgentInstall_connInfo());
+ connectionForm.setColWidths("130", "250", "110");
TextItem host = new TextItem("host", MSG.common_title_host());
host.setRequired(true);
- host.setWidth("100%");
+ host.setWidth("240");
host.setPrompt(MSG.view_remoteAgentInstall_promptHost());
host.setHoverWidth(300);
- host.setColSpan(2);
+ host.setEndRow(true);
TextItem port = new TextItem("port", MSG.common_title_port());
port.setRequired(false);
- port.setWidth("90");
+ port.setWidth("240");
port.setPrompt(MSG.view_remoteAgentInstall_promptPort());
port.setHoverWidth(300);
- port.setColSpan(1);
+ port.setEndRow(true);
TextItem username = new TextItem("username", MSG.common_title_user());
username.setRequired(true);
- username.setWidth("100%");
+ username.setWidth("240");
username.setPrompt(MSG.view_remoteAgentInstall_promptUser());
username.setHoverWidth(300);
- username.setColSpan(2);
+ username.setEndRow(true);
PasswordItem password = new PasswordItem("password", MSG.common_title_password());
password.setRequired(false);
- password.setWidth("100%");
+ password.setWidth("240");
password.setPrompt(MSG.view_remoteAgentInstall_promptPassword());
password.setHoverWidth(300);
- password.setColSpan(2);
+ password.setEndRow(true);
TextItem agentInstallPath = new TextItem("agentInstallPath", MSG.view_remoteAgentInstall_installPath());
agentInstallPath.setRequired(true);
- agentInstallPath.setWidth("100%");
+ agentInstallPath.setWidth("240");
agentInstallPath.setPrompt(MSG.view_remoteAgentInstall_promptInstallPath());
agentInstallPath.setHoverWidth(300);
agentInstallPath.setStartRow(true);
@@ -144,8 +152,11 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
MSG.view_remoteAgentInstall_buttonFindAgent());
findAgentInstallPathButton.setStartRow(false);
findAgentInstallPathButton.setEndRow(true);
- findAgentInstallPathButton.addClickHandler(new ClickHandler() {
- public void onClick(ClickEvent clickEvent) {
+ if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
+ findAgentInstallPathButton.setWidth(100);
+ }
+ findAgentInstallPathButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
+ public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
if (connectionForm.validate()) {
findAgentInstallPath();
}
@@ -156,45 +167,35 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
agentStatus.setDefaultValue(MSG.view_remoteAgentInstall_agentStatusDefault());
agentStatus.setRedrawOnChange(true);
agentStatus.setRedrawOnChange(true);
- agentStatus.setWidth("100%");
agentStatus.setStartRow(true);
agentStatus.setEndRow(false);
ButtonItem statusCheckButton = new ButtonItem("updateStatus", MSG.view_remoteAgentInstall_updateStatus());
statusCheckButton.setStartRow(false);
statusCheckButton.setEndRow(true);
- statusCheckButton.addClickHandler(new ClickHandler() {
- public void onClick(ClickEvent clickEvent) {
+ if (findAgentInstallPathButton.getTitle().length() < 15) { //i18n may prolong the title
+ statusCheckButton.setWidth(100);
+ }
+ statusCheckButton.addClickHandler(new com.smartgwt.client.widgets.form.fields.events.ClickHandler() {
+ public void onClick(com.smartgwt.client.widgets.form.fields.events.ClickEvent clickEvent) {
if (connectionForm.validate()) {
agentStatusCheck();
}
}
});
- connectionForm.setFields(connectionHeader, host, port, username, password, agentInstallPath,
+ connectionForm.setFields(host, port, username, password, agentInstallPath,
findAgentInstallPathButton, agentStatus, statusCheckButton);
+ connectionForm.setExtraSpace(15);
return connectionForm;
}
- private DynamicForm getButtons() {
- buttonsForm = new DynamicForm();
- buttonsForm.setWidth("75%");
- buttonsForm.setNumCols(4);
- buttonsForm.setMargin(10);
- buttonsForm.setColWidths("10%", "30%", "30%", "30%");
-
- HeaderItem buttonsHeader = new HeaderItem();
- buttonsHeader.setDefaultValue(MSG.common_title_operations());
-
- SpacerItem spacerItem = new SpacerItem();
- spacerItem.setStartRow(true);
- spacerItem.setEndRow(false);
+ private Layout getButtons() {
+ buttonsForm = new HLayout();
- installButton = new ButtonItem("install", MSG.view_remoteAgentInstall_installAgent());
- installButton.setStartRow(false);
- installButton.setEndRow(false);
- installButton.setRedrawOnChange(true);
+ installButton = new EnhancedIButton(MSG.view_remoteAgentInstall_installAgent());
+ installButton.setExtraSpace(10);
installButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -203,14 +204,13 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- startButton = new ButtonItem("start", MSG.view_remoteAgentInstall_startAgent());
- startButton.setStartRow(false);
- startButton.setEndRow(false);
+ startButton = new EnhancedIButton(MSG.view_remoteAgentInstall_startAgent());
// startButton.setShowIfCondition(new FormItemIfFunction() {
// public boolean execute(FormItem formItem, Object o, DynamicForm dynamicForm) {
// return form.getValue("agentStatus") != null && !"Agent Not Installed".equals(form.getValue("agentStatus"));
// }
// });
+ startButton.setExtraSpace(10);
startButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -219,9 +219,8 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- stopButton = new ButtonItem("stop", MSG.view_remoteAgentInstall_stopAgent());
- stopButton.setStartRow(false);
- stopButton.setEndRow(true);
+ stopButton = new EnhancedIButton(MSG.view_remoteAgentInstall_stopAgent());
+ stopButton.setExtraSpace(10);
stopButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent clickEvent) {
if (connectionForm.validate()) {
@@ -230,7 +229,7 @@ public class RemoteAgentInstallView extends EnhancedVLayout {
}
});
- buttonsForm.setFields(buttonsHeader, spacerItem, installButton, startButton, stopButton);
+ buttonsForm.setMembers(installButton, startButton, stopButton);
return buttonsForm;
}
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
index 0d731ab..66fc511 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
@@ -1865,7 +1865,7 @@ view_remoteAgentInstall_installInfo = Agent Installation Information
view_remoteAgentInstall_installPath = Agent Install Path
view_remoteAgentInstall_owner = Owner
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
index b4ba1e4..6c41b06 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_cs.properties
@@ -1878,7 +1878,7 @@ view_remoteAgentInstall_installInfo = Informace o instalaci agenta
view_remoteAgentInstall_installPath = Instalační cesta k agentovi
view_remoteAgentInstall_owner = Vlastník
view_remoteAgentInstall_promptHost = Hostitel, kde je, nebo kam bude, agent nainstalován
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = Přihlašovací údaje použité pro autentizaci uživatele přes SSH
view_remoteAgentInstall_promptPort = Port na němž naslouchá SSH. Pokud není specifikováno použije se 22
view_remoteAgentInstall_promptUser = Jméno uživatele jehož přihlašovací údaje jsou předány hostiteli přes SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
index 016b160..7094d93 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties
@@ -1680,7 +1680,7 @@ view_remoteAgentInstall_installInfo = Informationen zur Agent-Installation
view_remoteAgentInstall_installPath = Pfad der Agent-Installation
view_remoteAgentInstall_owner = Eigentümer
##view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
##view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
##view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
##view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
index f832c7d..07cebd4 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ko.properties
@@ -1534,6 +1534,7 @@ view_remoteAgentInstall_installInfo = 에이전트 설치 정보
view_remoteAgentInstall_installPath = 에이전트 설치 경로
view_remoteAgentInstall_owner = 소유자
view_remoteAgentInstall_promptHost = 에이전트가 설치되어 있거나 앞으로 설치되는 호스트
+##view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = SSH를 통해 호스트의 사용자를 인증하는데 사용되는 인증
view_remoteAgentInstall_promptUser = SSH를 통해 호스트로 전달되는 인증을 가진 사용자의 이름
view_remoteAgentInstall_result = 결과
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
index f354bd8..929f1ef 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ru.properties
@@ -1816,7 +1816,7 @@
#view_remoteAgentInstall_installPath = Agent Install Path
#view_remoteAgentInstall_owner = Owner
#view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+#view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
#view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
#view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
#view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
index e19f5f2..e9bd625 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties
@@ -1850,7 +1850,7 @@ view_remoteAgentInstall_installInfo = \u4ee3\u7406\u5b89\u88c5\u4fe1\u606f
view_remoteAgentInstall_installPath = \u4ee3\u7406\u5b89\u88c5\u8def\u5f84
view_remoteAgentInstall_owner = \u6240\u6709\u8005
view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
+view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. You may try to use the Find Agent button to find the existing rhq agent directories.
view_remoteAgentInstall_promptPassword = The credentials that are used to authenticate the user on the host via SSH
view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
10 years, 8 months
[rhq] 2 commits - maven.dependency.tree pom.xml
by snegrea
maven.dependency.tree | 8846 ++++++++++++++++++++++++++++++++++++++++++++++++++
pom.xml | 8
2 files changed, 8850 insertions(+), 4 deletions(-)
New commits:
commit 011d52166dce0226ef0385958e39c565aa4fa9b8
Author: Stefan Negrea <snegrea(a)redhat.com>
Date: Thu Mar 28 08:12:21 2013 -0500
[BZ 923458] Dependency tree output after all the changes that went in for the past week. Adjusted a few depedencies to reduce the diffs between pre&post updates.
diff --git a/maven.dependency.tree b/maven.dependency.tree
index 24ead5b..1d71ab2 100644
--- a/maven.dependency.tree
+++ b/maven.dependency.tree
@@ -175,7 +175,7 @@
[INFO]
[INFO] --- maven-dependency-plugin:2.4:tree (default-cli) @ test-utils ---
[INFO] org.rhq:test-utils:jar:4.7.0-SNAPSHOT
-[INFO] +- javax.persistence:persistence-api:jar:1.0:compile
+[INFO] +- javax.persistence:persistence-api:jar:1.0:provided
[INFO] +- javax.transaction:jta:jar:1.1:compile
[INFO] +- org.testng:testng:jar:6.5.2:compile
[INFO] | +- junit:junit:jar:4.10:compile
@@ -188,8 +188,8 @@
[INFO] +- commons-beanutils:commons-beanutils:jar:1.8.2:compile
[INFO] +- org.unitils:unitils-dbunit:jar:3.1:compile
[INFO] | +- org.unitils:unitils-core:jar:3.1:compile
-[INFO] | | +- commons-lang:commons-lang:jar:2.3:compile
-[INFO] | | +- commons-collections:commons-collections:jar:3.2:compile
+[INFO] | | +- commons-lang:commons-lang:jar:2.4:compile (version managed from 2.3)
+[INFO] | | +- commons-collections:commons-collections:jar:3.2.1:compile (version managed from 3.2)
[INFO] | | \- ognl:ognl:jar:2.6.9:compile
[INFO] | +- org.unitils:unitils-database:jar:3.1:compile
[INFO] | | \- commons-dbcp:commons-dbcp:jar:1.2.2:compile
@@ -247,7 +247,6 @@
[INFO] +- jdom:jdom:jar:1.0:compile
[INFO] +- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.rhq:test-utils:jar:4.7.0-SNAPSHOT:test
-[INFO] | +- javax.persistence:persistence-api:jar:1.0:test
[INFO] | +- javax.transaction:jta:jar:1.1:test
[INFO] | +- org.jmock:jmock:jar:2.5.1:test
[INFO] | | +- org.hamcrest:hamcrest-core:jar:1.1:test
@@ -255,8 +254,8 @@
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.8.2:test
[INFO] | +- org.unitils:unitils-dbunit:jar:3.1:test
[INFO] | | +- org.unitils:unitils-core:jar:3.1:test
-[INFO] | | | +- commons-lang:commons-lang:jar:2.3:test
-[INFO] | | | +- commons-collections:commons-collections:jar:3.2:test
+[INFO] | | | +- commons-lang:commons-lang:jar:2.4:test (version managed from 2.3)
+[INFO] | | | +- commons-collections:commons-collections:jar:3.2.1:test (version managed from 3.2)
[INFO] | | | \- ognl:ognl:jar:2.6.9:test
[INFO] | | +- org.unitils:unitils-database:jar:3.1:test
[INFO] | | | \- commons-dbcp:commons-dbcp:jar:1.2.2:test
@@ -277,7 +276,8 @@
[INFO] | | | \- org.springframework:spring-test:jar:2.5.2:test
[INFO] | | +- org.springframework:spring-context:jar:2.5.2:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
-[INFO] | | \- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | +- org.springframework:spring-orm:jar:2.5.2:test
+[INFO] | | \- javax.persistence:persistence-api:jar:1.0:provided (scope managed from test)
[INFO] | +- org.unitils:unitils-dbmaintainer:jar:3.1:test
[INFO] | +- org.unitils:unitils-easymock:jar:3.1:test
[INFO] | | +- org.easymock:easymock:jar:2.3:test
@@ -289,7 +289,7 @@
[INFO] +- commons-logging:commons-logging:jar:1.1.0.jboss:provided
[INFO] +- log4j:log4j:jar:1.2.16:provided
[INFO] +- org.testng:testng:jar:6.5.2:test
-[INFO] | +- junit:junit:jar:4.10:test
+[INFO] | +- junit:junit:jar:4.10:test (version managed from 3.8.1)
[INFO] | +- org.beanshell:bsh:jar:2.0b4:test
[INFO] | +- com.beust:jcommander:jar:1.12:test
[INFO] | \- org.yaml:snakeyaml:jar:1.6:test
@@ -369,7 +369,7 @@
[INFO] | \- i18nlog:i18nlog:jar:1.0.10:compile
[INFO] +- org.hibernate:hibernate-entitymanager:jar:4.0.1.Final:provided
[INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:provided
-[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.CR2:provided
+[INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:provided
[INFO] | \-