[JBoss JIRA] (JBTIS-622) Add new test - create a Fuse project and test if the Camel Editor works
by Tomáš Sedmík (JIRA)
Tomáš Sedmík created JBTIS-622:
----------------------------------
Summary: Add new test - create a Fuse project and test if the Camel Editor works
Key: JBTIS-622
URL: https://issues.jboss.org/browse/JBTIS-622
Project: JBoss Tools Integration Stack
Issue Type: Task
Components: Fuse IDE, QE
Affects Versions: 4.3.0.Beta1
Reporter: Tomáš Sedmík
Assignee: Tomáš Sedmík
Fix For: 4.3.0.Final
# create a Fuse project from all available archetypes
# check whether Camel Editor is opened and is opened properly (contains components)
I believe this could be incorporated into _FuseProjectTest_ class
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21859) Collect usage on LiveReload
by Radim Hopp (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21859?page=com.atlassian.jira.plugi... ]
Radim Hopp closed JBIDE-21859.
------------------------------
I'm not sure what I did wrong yesterday, but when I tried it today, it works. I'm already seeing it also in analytics. Sorry for confusion.
> Collect usage on LiveReload
> ---------------------------
>
> Key: JBIDE-21859
> URL: https://issues.jboss.org/browse/JBIDE-21859
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: livereload
> Affects Versions: 4.3.1.Beta2
> Reporter: Xavier Coulon
> Assignee: Xavier Coulon
> Priority: Critical
> Fix For: 4.3.1.CR1
>
>
> Measure number of installations, LiveReload server starts and maybe even number of requests, grouped by day.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-22036) batch property is incorrectly renamed in job.xml when refactoring
by Rastislav Wagner (JIRA)
Rastislav Wagner created JBIDE-22036:
----------------------------------------
Summary: batch property is incorrectly renamed in job.xml when refactoring
Key: JBIDE-22036
URL: https://issues.jboss.org/browse/JBIDE-22036
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: batch
Affects Versions: 4.3.1.CR1
Reporter: Rastislav Wagner
my job.xml:
{code}
<?xml version="1.0" encoding="UTF-8"?>
<job id="myJob" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/jobXML_1_0.xsd"
version="1.0">
<step id="step1" >
<batchlet ref="myBatchlet">
<properties>
<property name="namedProperty" value="A"/>
</properties>
</batchlet>
</step>
</job>
{code}
my batchlet:
{code}
package batch;
import javax.batch.api.AbstractBatchlet;
import javax.batch.api.BatchProperty;
import javax.inject.Inject;
import javax.inject.Named;
@Named
public class MyBatchlet extends AbstractBatchlet {
@Inject
@BatchProperty(name = "namedProperty") String myProp;
public MyBatchlet() {
// TODO Auto-generated constructor stub
}
@Override
public String process() throws Exception {
// TODO Auto-generated method stub
return null;
}
}
{code}
When I rename myProp in MyBatchelet to let's say myProp1 the value in job.xml will get changed to myProp1. This will result in warning because Im using @BatchProperty(name ="namedProperty")
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21997) Aeri causes NPE when running unittests
by Marcel Bruch (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21997?page=com.atlassian.jira.plugi... ]
Marcel Bruch commented on JBIDE-21997:
--------------------------------------
Nick,
I can't provide any insights on the updated jetty dependencies. We do not reference any jetty bundle or jetty package in aeri.
> Aeri causes NPE when running unittests
> --------------------------------------
>
> Key: JBIDE-21997
> URL: https://issues.jboss.org/browse/JBIDE-21997
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: aeri, target-platform
> Affects Versions: 4.3.1.CR1
> Reporter: Aurélien Pupier
> Assignee: Nick Boldt
> Priority: Critical
> Fix For: 4.3.1.CR1
>
>
> an Eclipse bug was fixed 4 weeks ago in AERi and we need this fix to launch Integration tests for JBoss Fuse Tooling.
> We need the version containing the fix of https://bugs.eclipse.org/bugs/show_bug.cgi?id=488868
> Seems that we need to use the org.eclipse.epp.logging.aeri.core_1.100.0.v20160304-1116.jar although we are using org.eclipse.epp.logging.aeri.core_1.100.0.v20160211-1103
> Please take care because the version number are both 1.100.0
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21989) Show In - Web Browser from context menu of J2EE module on OS3 Server Adapter opens localhost
by Marián Labuda (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21989?page=com.atlassian.jira.plugi... ]
Marián Labuda commented on JBIDE-21989:
---------------------------------------
Which linked issue do you have in mind? JBIDE-21994? At the moment on nightly build of JBT it is still opening http://localhost/, it is probably caused, as you wrote, by set "localhost" in hostname. I checked it via server editor, and created 2 distinct server adapter - one with default routing which means if there is precisely one routing, it is correctly used when calling Show In - Web Browser on Server adapter, but not on J2EE module. Another one has selected a specific route and this was also used as hostname - in this case Show In - Web Browser works fine for J2EE module.
> Show In - Web Browser from context menu of J2EE module on OS3 Server Adapter opens localhost
> --------------------------------------------------------------------------------------------
>
> Key: JBIDE-21989
> URL: https://issues.jboss.org/browse/JBIDE-21989
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.CR1
> Reporter: Marián Labuda
> Assignee: Rob Stryker
> Priority: Critical
> Labels: openshift_v3, server_adapter
> Fix For: 4.3.1.CR1
>
>
> When selecting Show In - Web Browser from context menu of Java EE module under an OpenShift 3 connection, it opens a localhost, what is wrong (it does not use root). Such module can be e.g. jboss-kitchensink when using application based on eap s2i template with param CONTEXT_DIR kitchensink.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-22035) Stopping of J2EE module does not work
by Marián Labuda (JIRA)
[ https://issues.jboss.org/browse/JBIDE-22035?page=com.atlassian.jira.plugi... ]
Marián Labuda updated JBIDE-22035:
----------------------------------
Labels: openshift_v3 server_adapter (was: )
> Stopping of J2EE module does not work
> -------------------------------------
>
> Key: JBIDE-22035
> URL: https://issues.jboss.org/browse/JBIDE-22035
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.1.CR1
> Reporter: Marián Labuda
> Labels: openshift_v3, server_adapter
>
> Stopping of J2EE Web module lying under an OpenShift 3 Server Adapter does nothing. After discussion with Rob in JBIDE-21989, stop of J2EE module should create an .undeploy marker and rsync it, but that's not happening. Only output from rsync when stopping J2EE module is following
> {code}sent 46 bytes received 1,333 bytes 2,758.00 bytes/sec
> total size is 8,523,390 speedup is 6,180.85
> sending incremental file list
> ROOT.war.isdeploying
> sent 1,428 bytes received 149 bytes 3,154.00 bytes/sec
> total size is 8,523,390 speedup is 5,404.81{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-22035) Stopping of J2EE module does not work
by Marián Labuda (JIRA)
Marián Labuda created JBIDE-22035:
-------------------------------------
Summary: Stopping of J2EE module does not work
Key: JBIDE-22035
URL: https://issues.jboss.org/browse/JBIDE-22035
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.3.1.CR1
Reporter: Marián Labuda
Stopping of J2EE Web module lying under an OpenShift 3 Server Adapter does nothing. After discussion with Rob in JBIDE-21989, stop of J2EE module should create an .undeploy marker and rsync it, but that's not happening. Only output from rsync when stopping J2EE module is following
{code}sent 46 bytes received 1,333 bytes 2,758.00 bytes/sec
total size is 8,523,390 speedup is 6,180.85
sending incremental file list
ROOT.war.isdeploying
sent 1,428 bytes received 149 bytes 3,154.00 bytes/sec
total size is 8,523,390 speedup is 5,404.81{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months
[JBoss JIRA] (JBIDE-21949) Allow user to turn on/off showing console when output changes
by Marián Labuda (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21949?page=com.atlassian.jira.plugi... ]
Marián Labuda closed JBIDE-21949.
---------------------------------
Follow-up issue has been created. Closing this once as verified on nightly build of JBT tooling with OpenShift plugins version of B258.
> Allow user to turn on/off showing console when output changes
> -------------------------------------------------------------
>
> Key: JBIDE-21949
> URL: https://issues.jboss.org/browse/JBIDE-21949
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift, server
> Affects Versions: 4.3.1.CR1
> Reporter: Marián Labuda
> Assignee: Xavier Coulon
> Priority: Critical
> Fix For: 4.3.1.CR1
>
>
> At the moment every publish to OpenShift via rsync show console with output from rsync (done in JBIDE-21326). User is forced to see console output. It would be nice if I could disable/enable showing console output when content changes. Something like server's console output has - toggle button Show Console Output When Standard Out Changes.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 11 months