How to create eclipse plugin to checkout project and configure it - eclipse

I want to automate the project check out and configuration, for that I am trying to create plugin. I tried to search the web but no luck so far.
I have started with the basic example templates but how to code checkout and configuration, can't figure out. Please suggest.
Thank you.

Related

Publish stream in github

I'm starting working on a little TypeScript plugin that I will put into Github.
I use Gulp to build my project and I think I will add this plugins to npm & bower at begining.
In many project in Github, you can see this kind of "images"( example of boostrap ):
After some research, I didn't find a tutorial to add this "images" in my readme...
If someone have a tutorial :)
Thanks
I found after looking in all link in my Github project
You just need to go in Settings > Integrations & services
After just click in browse directory button to get some services needed to your project.
It seems to be the same for npm and others..

Redmine 2.6.1 See Project in tree view

I am looking for a way to get redmine to show the projects list as a tree view.
I have looked a lot in internet and so far have found two plugins that should do it but none of them work.
The first on was: redmine_projects_accordion (https://github.com/reubenmallaby/redmine_projects_accordion) and the other was: Projects_Tree_View (http://www.redmine.org/plugins/projectstreeview).
I am using redmine 2.6.1
Thanks for the help!
If anyone is looking also for a solution to this I found one! There is a project call Redmine Projects Treeview. Here you can download a plugin that does work with version 2.6.1.
Here is the link: http://sourceforge.net/projects/projectstreeview/
Thanks to the CSS Ninja here is an explanition on how this works:
http://www.thecssninja.com/css/css-tree-menu
Here is also the Project website:
http://projectstreeview.sourceforge.net/
In order to make it work download the files from here: http://sourceforge.net/p/projectstreeview/code/HEAD/tree/ extract the folder projectstreeview-code-81-trunk from the zip files and rename it to "projects_treeview" and put it in the plugin folder of redmine. Restart Redmine and it should work.
Hope this helps someone else....

Generating Scala Play project for IntelliJ

I am new to Play Framework. I wished to make a simple hello world project using SBT (without activator), but unless I did something wrong it seems to me that not all of the files and folders are generated.
Followed the instructions here: http://www.playframework.com/documentation/2.3.x/IDE
Can anyone direct me to some resource that could help me?
Thank you!
First, follow "Create a new application without Activator" section here:
http://www.playframework.com/documentation/2.3.1/NewApplication
Then run "idea" in SBT console to generate .idea and .idea_modules directories with IntelliJ IDEA configuration. Afterwards, use File - Open dialog in the IDE.
The steps above will create an empty application. You will have to create a controller, a view and routes file yourself if you don't want to install activator. Still I advise you to install activator where you'll find plenty of templates including "hello playframework" that would fit your needs.

Weka in Eclipse (for my Google App Engine)

I have never used Weka, but for my GAE Project I'm going to need it. I checked jar files on Weka website to use in Eclipse but I'm not sure which one should be downloaded. So I checked another web site and there are lots of jar files about Weka. I'm looking for a basic version of it. Could you please tell me which one is best for me. Here the links for download:
http://grepcode.com/snapshot/repo1.maven.org/maven2/nz.ac.waikato.cms.weka/weka-dev/3.7.5
http://www.cms.waikato.ac.nz/ml/weka/
All files of Weka:
http://sourceforge.net/projects/weka/files/
Thank you.
You should download all project, then build it by maven.
You can use SVN to checkout code from this link:
https://svn.cms.waikato.ac.nz/svn/weka/trunk/weka

Automate Tomcat adding to Eclipse

I'm trying to write a script (Perl) that will automate the adding of Tomcat server for a Java project under Eclipse.
The project is checked out via SVN, and I want, once the project is downloaded via SVN, to run a script that will automatically configure the remaining bits of the project. In this context, I need to find how can I edit which Eclipse's configuration files to automate the adding of a Tomcat server. Actually the script will also modify other configuration files, but I'm facing a hard time trying to find which files to edit and how to add Tomcat.
Any insights will be welcome, thanks in advance.
There is a plugin for eclipse called Escripts. You can create xml like scripts to automate actions like doing wizard actions. I tried to check the documentation, but the homepage of the Escripts is giving back http 500 for me (http://escripts.sf.net). I have written a mail to the author, if he answers, I will let you know. The update site looks like working (uncheck the categorize by groups to see the uncategorized plugin): http://escripts.sf.net/updates .
Some examples you can found at http://escripts.svn.sourceforge.net/viewvc/escripts/trunk/net.sf.escripts.tests/src/net/sf/escripts/tests/
What you should enter in the script is a wizard with id org.eclipse.wst.server.ui.new.server. The plugin, that is containing it is org.eclipse.wst.server.ui. Take a look at the plugin.xml in that plugin. Without the documentation, this is what I can remember of.
Have you tried the following files in the Eclipse workspace?
.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.jdt.core.prefs
.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.jdt.launching.prefs
.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.wst.server.core.prefs
.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.jst.server.tomcat.core.prefs
I took the following files and dropped them into a new instance of eclipse and it created the Tomcat server under Server->Runtime Environment.
http://dl.dropbox.com/u/9591144/StackOverflow/org.eclipse.jdt.core.prefs
http://dl.dropbox.com/u/9591144/StackOverflow/org.eclipse.jdt.launching.prefs
http://dl.dropbox.com/u/9591144/StackOverflow/org.eclipse.jst.server.tomcat.core.prefs
http://dl.dropbox.com/u/9591144/StackOverflow/org.eclipse.wst.server.core.prefs