[Teiid-Designer/teiid-designer] 2e8b7b: Fixes teiid server version testing
by phantomjinx
Branch: refs/heads/master
Home: https://github.com/Teiid-Designer/teiid-designer
Commit: 2e8b7b24b42e4bdcbba7dd979cb72fa515aaf751
https://github.com/Teiid-Designer/teiid-designer/commit/2e8b7b24b42e4bdcb...
Author: Paul Richardson <p.g.richardson(a)redhat.com>
Date: 2015-03-25 (Wed, 25 Mar 2015)
Changed paths:
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/version/spi/TeiidServerVersion.java
Log Message:
-----------
Fixes teiid server version testing
* Comparisons have been historically lexographical and this fails when
testing, for example 8.2 against 8.10, as "2" is bigger than "10".
* Need to try and parse numerically first and compare and fallback to
lexographical comparison if parsing fails
Commit: ce10fe0970dc29a7016605e22bcf28604d5feff5
https://github.com/Teiid-Designer/teiid-designer/commit/ce10fe0970dc29a70...
Author: Paul Richardson <p.g.richardson(a)redhat.com>
Date: 2015-03-25 (Wed, 25 Mar 2015)
Changed paths:
M plugins/org.teiid.designer.core/src/org/teiid/designer/core/ModelerCore.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/i18n.properties
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/SetDefaultServerAction.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/editor/TeiidServerEditor.java
M plugins/org.teiid.designer.spi/schema/teiidRuntimeClient.exsd
M plugins/org.teiid.designer.spi/src/org/teiid/designer/messages.properties
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/registry/TeiidRuntimeRegistry.java
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/spi/IExecutionAdminFactory.java
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/version/spi/TeiidServerVersion.java
M plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/i18n.properties
M plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/preferences/DefaultTeiidServerPreferenceContributor.java
M plugins/teiid/org.teiid.runtime.client/plugin.xml
M plugins/teiid/org.teiid.runtime.client/src/org/teiid/runtime/client/admin/ExecutionAdminFactory.java
M tests/org.teiid.designer.query.ui.test/src/org/teiid/query/ui/sqleditor/component/TestDisplayNodeFactory.java
M tests/org.teiid.designer.schema.tools.test/src/org/teiid/designer/schema/tools/NameUtilTest.java
M tests/org.teiid.designer.transformation.test/src/org/teiid/designer/transformation/aspects/validation/rules/TestMappingClassTransformationValidationHelper.java
Log Message:
-----------
TEIIDDES-2459: Minimal support for unsupported Teiid versions
* Allows connection to later versions of teiid instance than that
explicitly supported and tested by Designer.
* teiidRuntimeClient.exsd
* plugin.xml
* Since there is only 1 teiid plugin that covers multiple teiid versions,
makes little sense to mandate the versions in the plugin extension point
* TeiidRuntimeRegistry
* Registers the admin factory without mapping to teiid versions
* Search method attempts to find a factory with FULL support for the given
version then falls back to finding a factory with only WORKS support
* getSupportedVersions simply returns a list of values from the
ITeiidServerVersion.Version enum, which illustrates the supported and
tested versions
* SetDefaultServerAction
* Checks the level of support of the server and asks the user if they
wish to continue to set the server as default if not supported.
Commit: be1be948e926d88dfe029092c6ece98ee6e89007
https://github.com/Teiid-Designer/teiid-designer/commit/be1be948e926d88df...
Author: Paul Richardson <p.g.richardson(a)redhat.com>
Date: 2015-03-26 (Thu, 26 Mar 2015)
Changed paths:
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/DqpUiPlugin.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/i18n.properties
A plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/ServerVersionGuard.java
Log Message:
-----------
TEIIDDES-2459: Adds version guard listener
* In addition to dialog question when calling the SetDefaultServerAction,
a warning should be displayed if a server is added and its the first
* ServerVersionGuard listener for default server changes and displays a
warning if the server version is greater than the default
Commit: c7d55512a786f2dd8b3ed565d383a4afa5636e91
https://github.com/Teiid-Designer/teiid-designer/commit/c7d55512a786f2dd8...
Author: phantomjinx <p.g.richardson(a)phantomjinx.co.uk>
Date: 2015-03-26 (Thu, 26 Mar 2015)
Changed paths:
M plugins/org.teiid.designer.core/src/org/teiid/designer/core/ModelerCore.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/DqpUiPlugin.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/i18n.properties
A plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/ServerVersionGuard.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/SetDefaultServerAction.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/editor/TeiidServerEditor.java
M plugins/org.teiid.designer.spi/schema/teiidRuntimeClient.exsd
M plugins/org.teiid.designer.spi/src/org/teiid/designer/messages.properties
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/registry/TeiidRuntimeRegistry.java
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/spi/IExecutionAdminFactory.java
M plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/version/spi/TeiidServerVersion.java
M plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/i18n.properties
M plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/preferences/DefaultTeiidServerPreferenceContributor.java
M plugins/teiid/org.teiid.runtime.client/plugin.xml
M plugins/teiid/org.teiid.runtime.client/src/org/teiid/runtime/client/admin/ExecutionAdminFactory.java
M tests/org.teiid.designer.query.ui.test/src/org/teiid/query/ui/sqleditor/component/TestDisplayNodeFactory.java
M tests/org.teiid.designer.schema.tools.test/src/org/teiid/designer/schema/tools/NameUtilTest.java
M tests/org.teiid.designer.transformation.test/src/org/teiid/designer/transformation/aspects/validation/rules/TestMappingClassTransformationValidationHelper.java
Log Message:
-----------
Merge pull request #437 from phantomjinx/master
TEIIDDES-2459
Compare: https://github.com/Teiid-Designer/teiid-designer/compare/131651ce90c7...c...
9 years, 10 months
Build failed in Jenkins: jbosstools-teiid-komodo #646 ()
by ci-builds@redhat.com
See <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
------------------------------------------
[...truncated 11124 lines...]
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-shared-i... (3 KB at 17.9 KB/sec)
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-filterin...
Downloading: http://snapshots.jboss.org/maven2/org/apache/maven/shared/maven-filtering...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/apache/ma...
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/apache/ma... (6 KB at 32.9 KB/sec)
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-reposito...
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-reposito... (4 KB at 13.0 KB/sec)
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-common-a...
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-common-a... (2 KB at 10.4 KB/sec)
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-shared-c...
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-shared-c... (3 KB at 17.9 KB/sec)
Downloading: http://repository.jboss.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk1...
Downloading: http://repository.jboss.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1....
Downloading: http://repository.jboss.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-ove...
Downloading: http://repository.jboss.org/maven2/commons-cli/commons-cli/1.2/commons-cl...
Downloading: http://repository.jboss.org/maven2/org/codehaus/plexus/plexus-interpolati...
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/file-managemen...
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-filterin...
Downloading: http://repository.jboss.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8...
Downloading: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-reposito...
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/file-managemen... (31 KB at 76.5 KB/sec)
Downloaded: http://repository.jboss.org/maven2/org/apache/maven/shared/maven-reposito... (23 KB at 70.4 KB/sec)
Downloading: http://snapshots.jboss.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14...
Downloading: http://snapshots.jboss.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5...
Downloading: http://snapshots.jboss.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over...
Downloading: http://snapshots.jboss.org/maven2/commons-cli/commons-cli/1.2/commons-cli...
Downloading: http://snapshots.jboss.org/maven2/org/codehaus/plexus/plexus-interpolatio...
Downloading: http://snapshots.jboss.org/maven2/org/apache/maven/shared/maven-filtering...
Downloading: http://snapshots.jboss.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/slf...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/slf...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/jcl...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/commons-cli/c...
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/codehaus/...
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/slf... (9 KB at 52.2 KB/sec)
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/apache/ma...
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/jcl... (17 KB at 40.8 KB/sec)
Downloading: https://repository.jboss.org/nexus/content/groups/developer/org/codehaus/...
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/slf4j/slf... (22 KB at 54.3 KB/sec)
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/commons-cli/c... (41 KB at 83.5 KB/sec)
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/apache/ma... (43 KB at 131.5 KB/sec)
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/codehaus/... (60 KB at 106.0 KB/sec)
Downloaded: https://repository.jboss.org/nexus/content/groups/developer/org/codehaus/... (227 KB at 318.4 KB/sec)
[INFO] Reading assembly descriptor: assembly/cli.xml
[WARNING] NOTE: Currently, inclusion of module dependencies may produce unpredictable results if a version conflict occurs.
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[INFO] Copying files to <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
[WARNING] Assembly file: <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...> is not a regular file (it may be a directory). It cannot be attached to the project build for installation or deployment.
[WARNING] NOTE: Currently, inclusion of module dependencies may produce unpredictable results if a version conflict occurs.
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[WARNING] The following patterns were never triggered in this artifact exclusion filter:
o 'org.jboss.tools.komodo.plugins:*'
o 'org.jboss.tools.komodo.plugins.lib:*'
[INFO] Building zip: <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ komodo.build ---
[INFO] Installing <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...> to <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
[INFO] Installing <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...> to <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
[INFO] Installing <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...> to <http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-teiid-komo...>
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] komodo ............................................ SUCCESS [2:02.702s]
[INFO] Komodo Target Platform ............................ SUCCESS [0.433s]
[INFO] plugins ........................................... SUCCESS [0.124s]
[INFO] org.komodo.spi .................................... SUCCESS [23.807s]
[INFO] org.komodo.utils .................................. SUCCESS [0.566s]
[INFO] libs .............................................. SUCCESS [0.065s]
[INFO] org.komodo.modeshape.lib .......................... SUCCESS [59.467s]
[INFO] Komodo Teiid Client ............................... SUCCESS [52.095s]
[INFO] org.komodo.modeshape.teiid.sql.sequencer .......... SUCCESS [11.836s]
[INFO] org.komodo.core ................................... SUCCESS [0.516s]
[INFO] org.komodo.modeshape.vdb .......................... SUCCESS [0.352s]
[INFO] org.komodo.relational ............................. SUCCESS [1.181s]
[INFO] org.komodo.importer ............................... SUCCESS [0.294s]
[INFO] org.komodo.utils.logger.modeshape ................. SUCCESS [0.203s]
[INFO] features .......................................... SUCCESS [0.078s]
[INFO] org.komodo.engine.feature ......................... SUCCESS [0.276s]
[INFO] org.komodo.shell-api .............................. SUCCESS [0.294s]
[INFO] org.komodo.shell.lib .............................. SUCCESS [1.180s]
[INFO] org.komodo.shell .................................. SUCCESS [0.461s]
[INFO] org.komodo.eclipse.shell .......................... SUCCESS [0.348s]
[INFO] org.komodo.eclipse.spi ............................ SUCCESS [0.186s]
[INFO] org.komodo.eclipse.sql.ui ......................... SUCCESS [0.467s]
[INFO] org.komodo.eclipse.teiid.client ................... SUCCESS [0.527s]
[INFO] org.komodo.ui.feature ............................. SUCCESS [0.264s]
[INFO] tests ............................................. SUCCESS [0.031s]
[INFO] org.komodo.test.utils ............................. SUCCESS [0.298s]
[INFO] org.komodo.core.test .............................. SUCCESS [1:02.194s]
[INFO] org.komodo.eclipse.test.utils ..................... SUCCESS [0.198s]
[INFO] org.komodo.teiid.client.test ...................... SUCCESS [3:15.231s]
[INFO] org.komodo.utils.test ............................. SUCCESS [7.599s]
[INFO] org.komodo.relational.test ........................ SUCCESS [32.161s]
[INFO] org.komodo.importer.test .......................... SUCCESS [16.180s]
[INFO] org.komodo.shell.test ............................. SUCCESS [15.425s]
[INFO] org.komodo.modeshape.teiid.sql.sequencer.test ..... SUCCESS [53.861s]
[INFO] org.komodo.modeshape.vdb.test ..................... SUCCESS [12.289s]
[INFO] integration-tests ................................. SUCCESS [0.029s]
[INFO] org.komodo.eclipse.teiid-8.4.client.test .......... FAILURE [4:02.004s]
[INFO] org.komodo.eclipse.teiid-8.7.client.test .......... FAILURE [0.160s]
[INFO] Teiid Komodo ...................................... SUCCESS [7.684s]
[INFO] Komodo Build ...................................... SUCCESS [36.319s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 21:28.202s
[INFO] Finished at: Wed Mar 25 15:43:02 EDT 2015
[INFO] Final Memory: 125M/669M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.6:unpack (unpack-for-teiid-testing) on project org.komodo.eclipse.teiid-8.4.client.test: Unable to resolve artifact. Could not transfer artifact org.jboss.as:jboss-as-dist:zip:7.2.0.Alpha1-redhat-4 from/to jboss-earlyaccess (https://maven.repository.redhat.com/earlyaccess/all/): GET request of: org/jboss/as/jboss-as-dist/7.2.0.Alpha1-redhat-4/jboss-as-dist-7.2.0.Alpha1-redhat-4.zip from jboss-earlyaccess failed
[ERROR] org.jboss.as:jboss-as-dist:zip:7.2.0.Alpha1-redhat-4
[ERROR]
[ERROR] from the specified remote repositories:
[ERROR] jboss-deprecated (https://repository.jboss.org/nexus/content/repositories/deprecated/, releases=true, snapshots=false),
[ERROR] jboss-developer-repository-group (https://repository.jboss.org/nexus/content/groups/developer/, releases=true, snapshots=true),
[ERROR] snapshots.jboss.org (http://snapshots.jboss.org/maven2, releases=true, snapshots=true),
[ERROR] repository.jboss.org (http://repository.jboss.org/maven2, releases=true, snapshots=false),
[ERROR] jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true),
[ERROR] sonatype (http://oss.sonatype.org/content/repositories/snapshots, releases=false, snapshots=true),
[ERROR] jboss-maven2-release-repository (https://repository.jboss.org/nexus/content/groups/m2-proxy/, releases=true, snapshots=true),
[ERROR] redhat-techpreview-all-repository (http://maven.repository.redhat.com/techpreview/all/, releases=true, snapshots=false),
[ERROR] jboss-earlyaccess (https://maven.repository.redhat.com/earlyaccess/all/, releases=true, snapshots=false),
[ERROR] jboss-releases (https://repository.jboss.org/nexus/content/repositories/releases/, releases=true, snapshots=true),
[ERROR] jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, releases=true, snapshots=true),
[ERROR] central (http://repo.maven.apache.org/maven2, releases=true, snapshots=false): Premature end of Content-Length delimited message body (expected: 128612031; received: 10485760
[ERROR] -> [Help 1]
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.6:unpack (unpack-for-teiid-testing) on project org.komodo.eclipse.teiid-8.7.client.test: Unable to resolve artifact. Failure to transfer org.jboss.as:jboss-as-dist:zip:7.2.0.Alpha1-redhat-4 from https://maven.repository.redhat.com/earlyaccess/all/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-earlyaccess has elapsed or updates are forced. Original error: Could not transfer artifact org.jboss.as:jboss-as-dist:zip:7.2.0.Alpha1-redhat-4 from/to jboss-earlyaccess (https://maven.repository.redhat.com/earlyaccess/all/): GET request of: org/jboss/as/jboss-as-dist/7.2.0.Alpha1-redhat-4/jboss-as-dist-7.2.0.Alpha1-redhat-4.zip from jboss-earlyaccess failed
[ERROR] org.jboss.as:jboss-as-dist:zip:7.2.0.Alpha1-redhat-4
[ERROR]
[ERROR] from the specified remote repositories:
[ERROR] jboss-deprecated (https://repository.jboss.org/nexus/content/repositories/deprecated/, releases=true, snapshots=false),
[ERROR] jboss-developer-repository-group (https://repository.jboss.org/nexus/content/groups/developer/, releases=true, snapshots=true),
[ERROR] snapshots.jboss.org (http://snapshots.jboss.org/maven2, releases=true, snapshots=true),
[ERROR] repository.jboss.org (http://repository.jboss.org/maven2, releases=true, snapshots=false),
[ERROR] jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true),
[ERROR] sonatype (http://oss.sonatype.org/content/repositories/snapshots, releases=false, snapshots=true),
[ERROR] jboss-maven2-release-repository (https://repository.jboss.org/nexus/content/groups/m2-proxy/, releases=true, snapshots=true),
[ERROR] redhat-techpreview-all-repository (http://maven.repository.redhat.com/techpreview/all/, releases=true, snapshots=false),
[ERROR] jboss-earlyaccess (https://maven.repository.redhat.com/earlyaccess/all/, releases=true, snapshots=false),
[ERROR] jboss-releases (https://repository.jboss.org/nexus/content/repositories/releases/, releases=true, snapshots=true),
[ERROR] jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, releases=true, snapshots=true),
[ERROR] central (http://repo.maven.apache.org/maven2, releases=true, snapshots=false)
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :org.komodo.eclipse.teiid-8.4.client.test
Build step 'Invoke top-level Maven targets' marked build as failure
Terminating xvnc.
$ vncserver -kill :78
Killing Xvnc process ID 5518
Archiving artifacts
Recording test results
9 years, 10 months