[JBoss JIRA] (JBIDE-13368) When having Java 7 and Java 6 installed EAP servers are not choosing Java 6 and fails to launch
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13368?page=com.atlassian.jira.plugi... ]
Rob Stryker resolved JBIDE-13368.
---------------------------------
Release Notes Text: Choosing the best matching VM to launch a server with did not give preference to exact matches of the execution environment, as it should have, and instead chose the first VM matching the execution environment. This led to sub-optimal choices.
Resolution: Done
> When having Java 7 and Java 6 installed EAP servers are not choosing Java 6 and fails to launch
> -----------------------------------------------------------------------------------------------
>
> Key: JBIDE-13368
> URL: https://issues.jboss.org/browse/JBIDE-13368
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JBossAS/Servers
> Environment: Version: 5.0.2.GA
> Build id: v20130103-0154-H238-GA
> Build date: 20130103-0154
> SOA-P 5.2.GA
> Reporter: Len DiMaggio
> Assignee: Rob Stryker
> Priority: Blocker
> Labels: respin-b
> Fix For: 3.3.2
>
> Attachments: JBIDE-13368.3.3.x.patch, Screenshot-1.png
>
>
> When a SOA-P 5.2 server is started in JBDS 5.0.2 and 5.0.1 - this exception is raised:
> Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/bootstrap/BaseServerConfig
> at org.jboss.bootstrap.AbstractServerImpl.doInit(AbstractServerImpl.java:190)
> at org.jboss.bootstrap.AbstractServerImpl.init(AbstractServerImpl.java:173)
> at org.jboss.bootstrap.AbstractServerImpl.init(AbstractServerImpl.java:143)
> at org.jboss.Main.boot(Main.java:218)
> at org.jboss.Main$1.run(Main.java:556)
> at java.lang.Thread.run(Thread.java:722)
> Caused by: java.lang.ClassNotFoundException: org.jboss.bootstrap.BaseServerConfig
> at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
> at java.security.AccessController.doPrivileged(Native Method)
> at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
> ... 6 more
> The root problem from EAP side is that this stacktrace occurs because it is launched with Java 7, same actually happens from command line.
> Now, the question is why does Java 7 get selected when the server is setup to run with Java Execution Environment 1.6 - that is the tooling bug here and which Rob made a patch for.
> To describe in cases:
> 1) Thus if the user have only Java 6 configured in Eclipse this issue should not occur.
> 2) If the user has only Java 7 configured in Eclipse this error is expected
> 3) If the user has both Java 6 and Java 7 configured and server adapter is configured to use Java 1.6 Execution Environment (which it is by default) then one would expect it to pick Java 6.
> Case 1 and 2 works - its case 3 that is failing.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13175) Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13175?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-13175 at 1/25/13 5:35 AM:
-------------------------------------------------------------------
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
* You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch (and get another remote tracking branch) so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
was (Author: adietish):
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
* You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch (and get another remote tracking branch) so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
> Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
> -----------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13175
> URL: https://issues.jboss.org/browse/JBIDE-13175
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.0.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha1
>
> Attachments: 1-local-change.png, no-local-changes.png, no_changes_yes.png
>
>
> # EXEC: launch *OpenShift Application* wizard and create a new application / import existing one
> # ASSERT: you get the OpenShift application imported to your workspace
> # EXEC: in *Servers* view, select the adapter for your OpenShift application and pick *Publish* from its context menu
> Result:
> The adapter tells you that there are no local changes. If you look at your local project you'll see in the git-decoration that the local git repo is ahead of 1 commit of the remote, so there is a local commit that could be pushed/published.
> !no-local-changes.png!
> Expected result:
> The adapter should tell you that there are local changes and ask you if you want to publish them.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13175) Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13175?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-13175 at 1/25/13 5:34 AM:
-------------------------------------------------------------------
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
* You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch (and get another remote tracking branch) so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
was (Author: adietish):
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
* You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
> Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
> -----------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13175
> URL: https://issues.jboss.org/browse/JBIDE-13175
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.0.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha1
>
> Attachments: 1-local-change.png, no-local-changes.png, no_changes_yes.png
>
>
> # EXEC: launch *OpenShift Application* wizard and create a new application / import existing one
> # ASSERT: you get the OpenShift application imported to your workspace
> # EXEC: in *Servers* view, select the adapter for your OpenShift application and pick *Publish* from its context menu
> Result:
> The adapter tells you that there are no local changes. If you look at your local project you'll see in the git-decoration that the local git repo is ahead of 1 commit of the remote, so there is a local commit that could be pushed/published.
> !no-local-changes.png!
> Expected result:
> The adapter should tell you that there are local changes and ask you if you want to publish them.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13175) Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13175?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-13175:
------------------------------------------
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
> Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
> -----------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13175
> URL: https://issues.jboss.org/browse/JBIDE-13175
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.0.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha1
>
> Attachments: 1-local-change.png, no-local-changes.png, no_changes_yes.png
>
>
> # EXEC: launch *OpenShift Application* wizard and create a new application / import existing one
> # ASSERT: you get the OpenShift application imported to your workspace
> # EXEC: in *Servers* view, select the adapter for your OpenShift application and pick *Publish* from its context menu
> Result:
> The adapter tells you that there are no local changes. If you look at your local project you'll see in the git-decoration that the local git repo is ahead of 1 commit of the remote, so there is a local commit that could be pushed/published.
> !no-local-changes.png!
> Expected result:
> The adapter should tell you that there are local changes and ask you if you want to publish them.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13175) Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13175?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-13175 at 1/25/13 5:30 AM:
-------------------------------------------------------------------
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
* You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
was (Author: adietish):
after reading a lot of code and a lot of git manuals and even testing a lot, I'm completely sure that there's no way to do a diff btw. an local and a remote without fetching the remote first.
To prove it, do the following:
* git clone an openshift repo to your local machine. You'll get a local branch with 2 branches:
{code}
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/origin/master
{code}
You'll be able to do a diff btw. those 2:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat master origin/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
* Now add the origin as *openshift* to your repo:
{code}
[adietish@adietish-thinkpad aa]$ git remote -v
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (fetch)
origin ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/ (push)
[adietish@adietish-thinkpad aa]$ git remote add openshift ssh://31d6dc5619f24750b09941de420c133e@aa-myops.rhcloud.com/~/git/aa.git/
{code}
* and try to diff, it wont work:
{code}
[adietish@adietish-thinkpad aa]$ git diff --shortstat openshift origin/master
fatal: ambiguous argument 'openshift': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
{code}
* you have to first fetch so that the diff works:
{code}
[adietish@adietish-thinkpad aa]$ git fetch openshift
>From ssh://aa-myops.rhcloud.com/~/git/aa
* [new branch] master -> openshift/master
[adietish@adietish-thinkpad aa]$ git branch -a
* master
remotes/openshift/master
remotes/origin/master
[adietish@adietish-thinkpad aa]$ git diff master --shortstat openshift/master
1 files changed, 0 insertions(+), 4 deletions(-)
{code}
> Openshift server adapter: on first push it says that it has no local changes. Even though local clone has 1 commit more than remote
> -----------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13175
> URL: https://issues.jboss.org/browse/JBIDE-13175
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.0.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha1
>
> Attachments: 1-local-change.png, no-local-changes.png, no_changes_yes.png
>
>
> # EXEC: launch *OpenShift Application* wizard and create a new application / import existing one
> # ASSERT: you get the OpenShift application imported to your workspace
> # EXEC: in *Servers* view, select the adapter for your OpenShift application and pick *Publish* from its context menu
> Result:
> The adapter tells you that there are no local changes. If you look at your local project you'll see in the git-decoration that the local git repo is ahead of 1 commit of the remote, so there is a local commit that could be pushed/published.
> !no-local-changes.png!
> Expected result:
> The adapter should tell you that there are local changes and ask you if you want to publish them.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13417) Maven plugin org.jboss.tools.tycho-plugins:repository-utils fails to update p2repository archive in full jbosstools build
by Mickael Istria (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13417?page=com.atlassian.jira.plugi... ]
Mickael Istria updated JBIDE-13417:
-----------------------------------
Fix Version/s: 4.1.0.Alpha1
> Maven plugin org.jboss.tools.tycho-plugins:repository-utils fails to update p2repository archive in full jbosstools build
> -------------------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13417
> URL: https://issues.jboss.org/browse/JBIDE-13417
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Build/Releng
> Reporter: Denis Golovin
> Assignee: Mickael Istria
> Fix For: 4.1.0.Alpha1
>
>
> Noticed that base/site build fails with error during the full jbosstools build with error below, but it is fine for component build. The problem is that jbosstools-maven-plugins module is not using jbosstools/parent and thus using tycho version 0.15.0 which is defined in jbosstools-maven-plugins/pom.xml After setting it to the same version as in jbosstools/parent/pom.xml problem is gone.
> {code}[ERROR] Failed to execute goal org.jboss.tools.tycho-plugins:repository-utils:0.0.1-SNAPSHOT:generate-repository-facade (generate-facade) on project server.site: Execution generate-facade of goal org.jboss.tools.tycho-plugins:repository-utils:0.0.1-SNAPSHOT:generate-repository-facade failed: A required class was missing while executing org.jboss.tools.tycho-plugins:repository-utils:0.0.1-SNAPSHOT:generate-repository-facade: org/jboss/tools/tycho/sitegenerator/GenerateRepositoryFacadeMojo$2
> [ERROR] -----------------------------------------------------
> [ERROR] realm = plugin>org.jboss.tools.tycho-plugins:repository-utils:0.0.1-SNAPSHOT
> [ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
> [ERROR] urls[0] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/jboss/tools/tycho-plugins/repository-utils/0.0.1-SNAPSHOT/repository-utils-0.0.1-SNAPSHOT.jar
> [ERROR] urls[1] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
> [ERROR] urls[2] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
> [ERROR] urls[3] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
> [ERROR] urls[4] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/eclipse/tycho/tycho-packaging-plugin/0.15.0/tycho-packaging-plugin-0.15.0.jar
> [ERROR] urls[5] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar
> [ERROR] urls[6] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar
> [ERROR] urls[7] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
> [ERROR] urls[8] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar
> [ERROR] urls[9] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar
> [ERROR] urls[10] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar
> [ERROR] urls[11] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.jar
> [ERROR] urls[12] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.jar
> [ERROR] urls[13] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/net/sf/saxon/saxon/8.7/saxon-8.7.jar
> [ERROR] urls[14] = file:/home/eskimo/Projects/jbds/jbosstools-fork-submodules/../.m2/jbosstools-fork-submodules-maximum1/master/net/sf/saxon/saxon-dom/8.7/saxon-dom-8.7.jar
> [ERROR] Number of foreign imports: 1
> [ERROR] import: Entry[import from realm ClassRealm[project>org.jboss.tools:base:4.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]]
> [ERROR]
> [ERROR] -----------------------------------------------------: org.jboss.tools.tycho.sitegenerator.GenerateRepositoryFacadeMojo$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
13 years, 2 months