[JBoss JIRA] (JBIDE-15362) Page is just simply rendered in VPE editor
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15362?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15362:
----------------------------------
Labels: (was: new_and_noteworthy)
> Page is just simply rendered in VPE editor
> ------------------------------------------
>
> Key: JBIDE-15362
> URL: https://issues.jboss.org/browse/JBIDE-15362
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: visual-page-editor-core
> Affects Versions: 4.1.0.Final
> Reporter: Jiri Peterka
> Assignee: Yahor Radtsevich
> Fix For: 4.1.1.Alpha2, 4.2.0.Alpha1
>
> Attachments: login-real-page.png, login-vpe-page.png, screenshot-PR161.png, standard-vpe-page.png
>
>
> Not sure if this is not supported or if it's a bug. Thing is that page is not rendered with style but only very simple. See real output and output in VPE editor.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (JBIDE-15589) fix compilation error in openshift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15589?page=com.atlassian.jira.plugi... ]
Andre Dietisheim closed JBIDE-15589.
------------------------------------
nothing for QE to verify here.
> fix compilation error in openshift
> ----------------------------------
>
> Key: JBIDE-15589
> URL: https://issues.jboss.org/browse/JBIDE-15589
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Alpha1
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.2.0.Alpha1
>
>
> Jenkins is red for openshift-master since 3 days:
> {code}
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 47.448s
> [INFO] Finished at: Mon Sep 30 14:21:53 CEST 2013
> [INFO] Final Memory: 62M/747M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.18.1:compile (default-compile) on project org.jboss.tools.openshift.express.ui: Compilation failure: Compilation failure:
> [ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[60,0]
> [ERROR] if ((result == CheckboxMessageDialog.INCLUDE_APPS) || (result == MessageDialog.OK)) {
> [ERROR] ^^^^^^^^^^^^
> [ERROR] INCLUDE_APPS cannot be resolved or is not a field
> [ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[63,0]
> [ERROR] final boolean includeApps = ((result & CheckboxMessageDialog.INCLUDE_APPS) > 0);
> [ERROR] ^^^^^^^^^^^^
> [ERROR] INCLUDE_APPS cannot be resolved or is not a field
> [ERROR] 2 problems (2 errors)
> [ERROR] -> [Help 1]
> {code}
> The compilation error is caused by a commit in jbosstools-base which renamed INCLUDE_APPS to CHECKBOX_SELECTED.
> {code: Alexey Karsakov on the 2013-9-27 [JBIDE-15348]}
> +++ b/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/dialog/CheckboxMessageDialog.java
> @@ -30,10 +30,10 @@
> */
> public class CheckboxMessageDialog extends MessageDialog {
> - public static final int INCLUDE_APPS = 2;
> + public static final int CHECKBOX_SELECTED = 2;
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (JBIDE-15589) fix compilation error in openshift
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-15589:
----------------------------------------
Summary: fix compilation error in openshift
Key: JBIDE-15589
URL: https://issues.jboss.org/browse/JBIDE-15589
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.2.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.2.0.Alpha1
Jenkins is red for openshift-master since 3 days:
{code}
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 47.448s
[INFO] Finished at: Mon Sep 30 14:21:53 CEST 2013
[INFO] Final Memory: 62M/747M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.18.1:compile (default-compile) on project org.jboss.tools.openshift.express.ui: Compilation failure: Compilation failure:
[ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[60,0]
[ERROR] if ((result == CheckboxMessageDialog.INCLUDE_APPS) || (result == MessageDialog.OK)) {
[ERROR] ^^^^^^^^^^^^
[ERROR] INCLUDE_APPS cannot be resolved or is not a field
[ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[63,0]
[ERROR] final boolean includeApps = ((result & CheckboxMessageDialog.INCLUDE_APPS) > 0);
[ERROR] ^^^^^^^^^^^^
[ERROR] INCLUDE_APPS cannot be resolved or is not a field
[ERROR] 2 problems (2 errors)
[ERROR] -> [Help 1]
{code}
The compilation error is caused by a commit in jbosstools-base which renamed INCLUDE_APPS to CHECKBOX_SELECTED.
{code: Alexey Karsakov on the 2013-9-27 [JBIDE-15348]}
+++ b/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/dialog/CheckboxMessageDialog.java
@@ -30,10 +30,10 @@
*/
public class CheckboxMessageDialog extends MessageDialog {
- public static final int INCLUDE_APPS = 2;
+ public static final int CHECKBOX_SELECTED = 2;
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (JBIDE-15577) Hibernate Console problem while creating session factory
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15577?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-15577:
---------------------------------------------
is your console configuration set to use hibernate 4 or 3 ?
can you provide a sample project (i.e. on github) that reproduce the issue ?
> Hibernate Console problem while creating session factory
> --------------------------------------------------------
>
> Key: JBIDE-15577
> URL: https://issues.jboss.org/browse/JBIDE-15577
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: hibernate, testing-tools
> Affects Versions: 4.2.x
> Environment: Eclipse 4.3 (kepler), hibernate tools 3.7.0, Hibernate 4.2.2, jdk1.6.0.38
> Reporter: Guillaume JOUVELOT
>
> When I try to use hibernate console in order to test HQL queries I've the following error message from eclipse :
> {color:red}java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;{color}
> And the eclipse log file :
> !ENTRY org.hibernate.eclipse.console 4 4 2013-09-27 15:57:20.198
> !MESSAGE Problems while creating sessionfactory
> !SUBENTRY 1 org.hibernate.eclipse.console 4 150 2013-09-27 15:57:20.198
> !MESSAGE java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
> !STACK 0
> java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
> at org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider.<clinit>(C3P0ConnectionProvider.java:58)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.hibernate.connection.ConnectionProviderFactory.initializeConnectionProviderFromConfig(ConnectionProviderFactory.java:174)
> at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:102)
> at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:84)
> at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:438)
> at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:91)
> at org.hibernate.cfg.Configuration.buildSettingsInternal(Configuration.java:2163)
> at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2159)
> at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1383)
> at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:954)
> at org.hibernate.console.ConsoleConfiguration$5.execute(ConsoleConfiguration.java:278)
> at org.hibernate.console.execution.DefaultExecutionContext.execute(DefaultExecutionContext.java:63)
> at org.hibernate.console.ConsoleConfiguration.execute(ConsoleConfiguration.java:107)
> at org.hibernate.console.ConsoleConfiguration.buildSessionFactory(ConsoleConfiguration.java:273)
> at org.hibernate.eclipse.console.workbench.LazySessionFactoryAdapter.getChildren(LazySessionFactoryAdapter.java:43)
> at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.getChildren(BasicWorkbenchAdapter.java:100)
> at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.fetchDeferredChildren(BasicWorkbenchAdapter.java:106)
> at org.eclipse.ui.progress.DeferredTreeContentManager$1.run(DeferredTreeContentManager.java:235)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
> !SUBENTRY 2 org.hibernate.eclipse.console 4 150 2013-09-27 15:57:20.198
> !MESSAGE java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
> !STACK 0
> java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
> at org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider.<clinit>(C3P0ConnectionProvider.java:58)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.hibernate.connection.ConnectionProviderFactory.initializeConnectionProviderFromConfig(ConnectionProviderFactory.java:174)
> at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:102)
> at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:84)
> at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:438)
> at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:91)
> at org.hibernate.cfg.Configuration.buildSettingsInternal(Configuration.java:2163)
> at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2159)
> at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1383)
> at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:954)
> at org.hibernate.console.ConsoleConfiguration$5.execute(ConsoleConfiguration.java:278)
> at org.hibernate.console.execution.DefaultExecutionContext.execute(DefaultExecutionContext.java:63)
> at org.hibernate.console.ConsoleConfiguration.execute(ConsoleConfiguration.java:107)
> at org.hibernate.console.ConsoleConfiguration.buildSessionFactory(ConsoleConfiguration.java:273)
> at org.hibernate.eclipse.console.workbench.LazySessionFactoryAdapter.getChildren(LazySessionFactoryAdapter.java:43)
> at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.getChildren(BasicWorkbenchAdapter.java:100)
> at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.fetchDeferredChildren(BasicWorkbenchAdapter.java:106)
> at org.eclipse.ui.progress.DeferredTreeContentManager$1.run(DeferredTreeContentManager.java:235)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
> I've well configured my session factory.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (JBIDE-13323) integration-tests: cannot build CDI bot tests
by Jakub Niedermertl (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13323?page=com.atlassian.jira.plugi... ]
Jakub Niedermertl reassigned JBIDE-13323:
-----------------------------------------
Assignee: Jakub Niedermertl (was: Jaroslav Jankovič)
> integration-tests: cannot build CDI bot tests
> ---------------------------------------------
>
> Key: JBIDE-13323
> URL: https://issues.jboss.org/browse/JBIDE-13323
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: qa
> Affects Versions: 4.0.0.Final
> Environment: clean (empty) .m2 repo
> Reporter: Pavol Srna
> Assignee: Jakub Niedermertl
> Fix For: 4.0.0.Final
>
>
> {code}
> psrna@psrna-laptop:~/data/jbosstools-integration-tests/tests$ mvn verify -Dmaven.test.skip -Dswtbot.test.skip
> [INFO] Scanning for projects...
> [INFO] Computing target platform for MavenProject: org.jboss.tools.cdi.tests:org.jboss.tools.cdi.bot.test:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.bot.test/pom.xml
> [INFO] Adding repository http://p2-reddeer.rhcloud.com/master
> [INFO] Adding repository http://p2-reddeer.rhcloud.com/master
> [INFO] Adding repository http://download.jboss.org/jbosstools/updates/nightly/core/4.0.juno
> [INFO] Adding repository http://download.jboss.org/jbosstools/updates/nightly/core/4.0.juno
> [INFO] Adding repository http://download.jboss.org/jbosstools/updates/nightly/coretests/4.0.juno
> [INFO] Adding repository http://download.jboss.org/jbosstools/updates/nightly/coretests/4.0.juno
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Resolving dependencies of MavenProject: org.jboss.tools.cdi.tests:org.jboss.tools.cdi.bot.test:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.bot.test/pom.xml
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Resolving class path of MavenProject: org.jboss.tools.cdi.tests:org.jboss.tools.cdi.bot.test:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.bot.test/pom.xml
> [INFO] Computing target platform for MavenProject: org.jboss.tools.cdi:org.jboss.tools.cdi.reddeer:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.reddeer/pom.xml
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Resolving dependencies of MavenProject: org.jboss.tools.cdi:org.jboss.tools.cdi.reddeer:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.reddeer/pom.xml
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Loading repository 'http://download.jboss.org/jbosstools/updates/juno/SR0c/REPO' from mirror 'target-platform-minimum' at 'http://jawa32.mw.lab.eng.brq.redhat.com:8081/nexus/content/repositories/j...'
> [INFO] Resolving class path of MavenProject: org.jboss.tools.cdi:org.jboss.tools.cdi.reddeer:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.reddeer/pom.xml
> [INFO] Computing target platform for MavenProject: org.jboss.tools.cdi.tests:org.jboss.tools.cdi.seam3.bot.test:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.seam3.bot.test/pom.xml
> [INFO] Resolving dependencies of MavenProject: org.jboss.tools.cdi.tests:org.jboss.tools.cdi.seam3.bot.test:4.0.0-SNAPSHOT @ /home/psrna/data/jbosstools-integration-tests/tests/org.jboss.tools.cdi.seam3.bot.test/pom.xml
> [INFO] Cannot complete the request. Generating details.
> [INFO] Cannot complete the request. Generating details.
> [INFO] {osgi.ws=cocoa, osgi.os=macosx, osgi.arch=x86, org.eclipse.update.install.features=true}
> [ERROR] Cannot resolve project dependencies:
> [ERROR] Software being installed: org.jboss.tools.cdi.seam3.bot.test 4.0.0.qualifier
> [ERROR] Missing requirement: org.jboss.tools.cdi.reddeer 4.0.0.qualifier requires 'bundle org.jboss.reddeer.swt 0.0.0' but it could not be found
> [ERROR] Cannot satisfy dependency: org.jboss.tools.cdi.bot.test 4.0.0.qualifier depends on: bundle org.jboss.tools.cdi.reddeer 0.0.0
> [ERROR] Cannot satisfy dependency: org.jboss.tools.cdi.seam3.bot.test 4.0.0.qualifier depends on: bundle org.jboss.tools.cdi.bot.test 1.2.0
> [ERROR]
> [ERROR] Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "No solution found because the problem is unsatisfiable."] -> [Help 1]
> org.apache.maven.InternalErrorException: Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "No solution found because the problem is unsatisfiable."]
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:168)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:616)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
> Caused by: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.bot.test 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.swt 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.jface 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.eclipse 0.0.0.", "Unable to satisfy dependency from org.jboss.tools.cdi.reddeer 4.0.0.qualifier to bundle org.jboss.reddeer.workbench 0.0.0.", "No solution found because the problem is unsatisfiable."]
> at org.eclipse.tycho.p2.resolver.AbstractResolutionStrategy.newResolutionException(AbstractResolutionStrategy.java:77)
> at org.eclipse.tycho.p2.resolver.ProjectorResolutionStrategy.resolve(ProjectorResolutionStrategy.java:89)
> at org.eclipse.tycho.p2.impl.resolver.P2ResolverImpl.resolveProject(P2ResolverImpl.java:122)
> at org.eclipse.tycho.p2.impl.resolver.P2ResolverImpl.resolveProject(P2ResolverImpl.java:80)
> at org.eclipse.tycho.p2.resolver.P2TargetPlatformResolver.doResolvePlatform(P2TargetPlatformResolver.java:377)
> at org.eclipse.tycho.p2.resolver.P2TargetPlatformResolver.resolveDependencies(P2TargetPlatformResolver.java:354)
> at org.eclipse.tycho.core.resolver.DefaultTychoDependencyResolver.resolveProject(DefaultTychoDependencyResolver.java:103)
> at org.eclipse.tycho.core.maven.TychoMavenLifecycleParticipant.afterProjectsRead(TychoMavenLifecycleParticipant.java:82)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:274)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
> ... 11 more
> [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/InternalErrorException
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months