[JBoss JIRA] (JBIDE-10230) Plugins are missing Description
by Aslak Knutsen (Created) (JIRA)
Plugins are missing Description
-------------------------------
Key: JBIDE-10230
URL: https://issues.jboss.org/browse/JBIDE-10230
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Cleanup
Affects Versions: 3.3.0.M4
Reporter: Aslak Knutsen
Assignee: Max Rydahl Andersen
Using the Plugin name as description is not very informative
Plugins missing proper Description:
* Context and Dependency Injection Tools
* JBoss Central
* JBoss JAX-RS Tools
* JBoss Portlet
* JBoss Runtime AS Detector
* JBoss Runtime Detector Core
* JBoss Runtime Seam Detector
* JBoss Tools Community Project Examples
* JBoss Tools Java Standard Tools
* JBoss Tools JSF
* JBoss Tools Usage Reporting
* JBoss WebServices Tools
* Project Examples
* Seam 3 Tools
* Struts Tools
* JBoss GWT Integration (Experimental)
* JBoss Tools Community Project Examples
* JBoss BIRT Integration
* Deltacloud Development Tools (Experimental)
* JBoss Maven CDI Configurator
* JBoss Maven Hibernate Configurator
* JBoss Maven JAX-RS Configurator
* JBoss Maven JSF Configurator
* JBoss Maven Portlet Configurator
* JBoss Maven Seam Integration
* JBoss Maven Integration
* JBoss WebServices Tools
Plugins with poor description:
* Seam 2 Tools
* JBoss AS Tools Server / EGit integration
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] (JBIDE-10712) When creating a domain, the openshift-java-client is not waiting for the domain to get propagated
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-10712:
----------------------------------------
Summary: When creating a domain, the openshift-java-client is not waiting for the domain to get propagated
Key: JBIDE-10712
URL: https://issues.jboss.org/browse/JBIDE-10712
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 3.3.0.M5
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 3.3.0.Beta2
The rhc-tooling is waiting for the namespace to propagate when it creates a domain:
https://github.com/openshift/os-client-tools/blob/master/express/bin/rhc-...
{code}
if !app_info.empty? && opt['namespace'] != user_info['user_info']['namespace']
#
# Confirm that the host(s) exist in DNS
#
puts "Now your new domain name(s) are being propagated worldwide (this might take a minute)..."
# Allow DNS to propogate
sleep 15
app_info.each_key do |appname|
fqdn = "#{appname}-#{opt['namespace']}.#{user_info['user_info']['rhc_domain']}"
# Now start checking for DNS
loop = 0
sleep_time = 2
while loop < RHC::MAX_RETRIES && !RHC::hostexist?(fqdn)
sleep sleep_time
loop+=1
puts " retry # #{loop} - Waiting for DNS: #{fqdn}"
sleep_time = RHC::delay(sleep_time)
end
if loop >= RHC::MAX_RETRIES
puts "Host could not be found: #{fqdn}"
dns_success = false
end
end
puts "You can use rhc-domain-info to view any url changes. Be sure to update any links"
puts "including the url in your local git config: <local_git_repo>/.git/config"
end
if dns_success
puts "Alteration successful."
else
puts "Alteration successful but at least one of the urls is still updating in DNS."
end
puts ""
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] (JBIDE-10719) WizardUtils#runInWizard returns a Future<IStatus> but is process synchronously (not asynchronously as the signature would suggest)
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-10719:
----------------------------------------
Summary: WizardUtils#runInWizard returns a Future<IStatus> but is process synchronously (not asynchronously as the signature would suggest)
Key: JBIDE-10719
URL: https://issues.jboss.org/browse/JBIDE-10719
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 3.3.0.M5
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 3.3.0.Beta1
WizardUtils#runInWizard is returning a Future<IStatus> as if the method would not wait for it's job to get finished. This is actually not the case. The job is joined and the method is only returning when the job was executed.
{code}
public static Future<IStatus> runInWizard(final Job job, final DelegatingProgressMonitor delegatingMonitor,
IWizardContainer container) throws InvocationTargetException, InterruptedException {
JobResultFuture future = new JobResultFuture(job);
container.run(true, false, new IRunnableWithProgress() {
@Override
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException
if (delegatingMonitor == null) {
monitor.beginTask(job.getName(), IProgressMonitor.UNKNOWN);
} else {
delegatingMonitor.add(monitor);
delegatingMonitor.beginTask(job.getName(), IProgressMonitor.UNKNOWN);
}
job.schedule();
job.join();
if (delegatingMonitor == null) {
monitor.done();
} else {
delegatingMonitor.done();
}
}
});
return future;
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years
[JBoss JIRA] (JBIDE-10647) document how to switch between branches when building JBT locally
by Nick Boldt (JIRA)
Nick Boldt created JBIDE-10647:
----------------------------------
Summary: document how to switch between branches when building JBT locally
Key: JBIDE-10647
URL: https://issues.jboss.org/browse/JBIDE-10647
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Build/Releng
Affects Versions: 3.3.0.Beta1
Reporter: Nick Boldt
Assignee: Nick Boldt
Fix For: 3.3.0.Beta1
(2012-01-16 12:09:33) maxandersen: nboldt: if I build parent and say jmx from trunk, then switch to branch it will pick that up if i'm not rebuilding everything.
12:10
(2012-01-16 12:10:11) nboldt: ah, true
(2012-01-16 12:10:32) nboldt: but that's an osgi issue
(2012-01-16 12:11:36) nboldt: eg., if tycho sees locally jmx_3.3.0.....Beta1 (built from trunk) and you switch to branch and rebuild something that needs jmx, it'll look at staging/_composite_/3.3.indigo/ site for a newer version of jmx (with M5 suffix) and compare that to your locally-build version
(2012-01-16 12:12:09) nboldt: I can't solve that w/ diffferent parent poms in nexus, even if they're differently versioned 3.3.M5 vs. 3.3.trunk
(2012-01-16 12:12:21) nboldt: instead of both having 0.0.3-SNAPSHOT
(2012-01-16 12:13:03) nboldt: the problem there is that your ~/.m2 cache contains a newer version of the plugin/feature than what's on the site from which upstream bits are sourced, so Tycho picks the local bits (and throws a warning in your build log)
(2012-01-16 12:13:25) maxandersen: that is not happening when building full via mvn - then it uses the local ones over the remote ones.
(2012-01-16 12:13:33) nboldt: so, yes, in that scenario, you DO have to nuke the ~/.m2 folder (or better, move it so you can have two versions of the ~/.m2 cache for trunk vs. branch)
(2012-01-16 12:13:58) nboldt: maxandersen: of course, because you asked it to rebuild locally from source rather than resolving from binary)
(2012-01-16 12:14:34) nboldt: so there are two workarounds to the "multiple component build dependencies across branch/trunk" -- a) have two different ~/.m2 caches and switch them as you switch parent poms
(2012-01-16 12:14:50) nboldt: b) rebuild everything locally when you switch branches
12:15
(2012-01-16 12:15:23) nboldt: I feel like this should be documented somewhere
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years