How to connect from Mylyn to Redmine? - eclipse

How to connect from Mylyn to Redmine?
Are there any connectors?
This site pretends to have one https://github.com/danmunn/redmine_mylyn_connector
but contains only instruction to install something on server side. How eclipse can know there is some server?
UPDATE
Plugin from here Mylyn & Redmine Integration is not working, saying "error 404".

Related

How do I deploy to Websphere developer server 8.5 via Eclipse Mars?

How does one deploy a web app from Eclipse Mars to a local install of IBM Websphere Application Server Developer 8.5 ?
I installed the app server from IBM's Installation Manager, upon completion it says its location is:
C:\Program Files (x86)\IBM\WebSphere\AppServer\profiles\AppSrv01
I tested the app itself using the "First Steps" window which popped up after install, and it looks like it is running fine.
Now, I want to test creating a simple hello world web application in Eclipse Mars, and be able to deploy it to this installed Websphere instance and be able to debug (stop at breakpoints). However, I can't seem to figure this part out.
When I go to my Servers tab in Eclipse and attempt to add a Websphere server, I didn't have any options. So I started downloading some IBM Websphere Developer Tools that I could find. I managed to now have these options for adding server:
"WebSphere Application Server Liberty"
"WebSphere Application Server traditional V8.5"
I tried using both, but they don't seem to be compatible with my installed version of WebSphere, because I keep getting the error of "The WebSphere Application Server traditional installation directory is not correct." when I try to plug in the Installation directory.
I suspect I should have a separate option for
"WebSphere Application Server developer V8.5"
or such, however no matter what I search for online, in the Eclipse marketplace, in the Eclipse sites, I can't find anything to install that gives me that option.
You have to use "WebSphere Application Server traditional V8.5" and point it to the installation root not the profile root - so to C:\Program Files (x86)\IBM\WebSphere\AppServer in your case.
For the future, it is not recommended to install WebSphere in the Program Files (x86) folder, I'd suggest something simpler like c:\IBM.
I used the below link Eclipse Mars WAS Plugin . Not sure it still works. For Oxygen working version use Eclipse Oxygen WAS Plugin

Debugging Bluemix remotely from Eclipse

I tried to do remote debug of a Bluemix application in Eclipse. I enabled application debug. Then I did debug to Server but my Bluemix server didn't appear in the list. A local Liberty server appears and I can debug on that but not on my Bluemix server. I tried to create a new server with the same address in the dialogue but then it complains that the server and space already exists. Is this a known bug or am I doing something wrong?
Cheers
W
Liberty remote debugging is working fine with Eclipse plugin, so I suppose you are doing something wrong.
Have you successfully installed Bluemix Eclipse tool?
Check you followed the steps reported in this guide
https://www.ng.bluemix.net/docs/manageapps/eclipsetools/eclipsetools.html
And then follow these steps to enable remote debugging.
https://developer.ibm.com/bluemix/2015/09/25/remote-debug-java-applications-on-bluemix/
The latest March 2016 refresh release has addressed the general debug mode issues, including the problem with IBM JDK in debug mode. You'll need to update both the IBM Eclipse Tools for Bluemix and also the Eclipse Tools for Cloud Foundry (see https://developer.ibm.com/wasdev/downloads/#asset/tools-IBM_Eclipse_Tools_for_Bluemix for detailed installation instructions). Therefore, I would recommend to do a fresh install with Mars SR2 JEE Package to see if the debug problem is resolved.

Eclipse plugin to SonarQube 4.0 not finding provisioned project or creating new project

I am running the SonarQube plugin with m2e integration inside Eclipse Keplar. I am trying to run with a SonarQube 4.0 standalone server, running from the command-line on a win7 64 box.
When installing and reloading Eclipse the sonar plugin detected m2e and turned on the Sonar "nature" for me, including a project tag. The install also configured the SonarQube Eclipse properties to point to the localhost:9000 server. I can log in to the running server with chrome, and the Eclipse properties has a "test connection" option which passes. I am using empty user and password.
Problem 1: When I try and run SonarQube->Analyze on my project it completes and populates my project with issues. Great, except that this information is not pushed to the server and the start of the console log states:
Retrieve remote issues of project XXXXX...
Project not found on remote SonarQube server [com.company.xxxx:XXXX]
Start SonarQube analysis on XXXX...
INFO: SonarQube Server 4.0
I have tried to provision a project for com.company.xxxx:XXXX, and I have turned the security for provisioning off to act like SonarQube 3, but the project analysis does not get added to the server.
So the plugin can clearly contact the server. I have tried to add the admin credentials to the plugin to get past any permission issues. I have overridden the default maven-generated tag name to something else, and also added provisioning for the new name. I keep getting "Project not found" messages.
Am I missing something? The tutorial on the SonarQube tutorial makes it seem like this is correctly configured, but web searches are not coming up with similar experiences.
This appears to be a result of the Maven integration. Updates are only pushed to the server when running directly against the Maven repository. When running locally the analysis data is compared to the server data to find deltas, but the server data itself is not updated. This actually makes a lot of sense in a team environment, but was a surprise when the SonarQube tutorial calls out Maven integration but not this caveat.
After performing an analysis from the SonarQube server directly against the Maven repo (without Eclipse in the picture at all) the project was created and populated with the data. This data was then available in Eclipse and local analysis would delta against that data (although it would not update it, which also makes sense).

Is there anyway for netbean users get connected to clearcase remote client server?

Just want to ask can netbean IDE get connected to clearcase remote client server which eclipse users can install a CCRC plugin to talk to that server? Thanks
I didn't find any CCRC plugging for netbean IDE.
So unless you use the CCRC API to somehow integrate the basic features (checkout, checking, lshistory, lsvtree,...) there doesn't seem to be a netbean-ready solution.

subclipse in a cluster environment

I want to set up a svn repository to be used by 4 linux systems in a cluster.
I have installed subclipse plugin for eclipse. created repository in one of the systems.
I am able to use the repository from the same system through eclipse .
But How can i connect to the svn from other systems across the cluster ???
need some ideas on using URLs to access svn.
Please help
Usually, you set up Subversion under an Apache HTTP server, so that other machines can access Subversion using the HTTP (or HTTPS) protocol.
Here are some step by step instructions for installing Subversion and an Apache HTTP server, and configuring Apache.