May 2012 M T W T F S S « Jan 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Blogroll
Funny stuff
-
RSS Links
-
Meta
Category Archives: General
Build a mixed Scala 2.8/Java application from scratch with Maven
In this tutorial I will show you how to build an application by Maven that consists of Java and Scala source files. The project automatically uses the latest Scala 2.8-Snapshot until it’s released (Maven will look for the latest version of the Scala language each time you build it).
We will setup the project to use [...]
Eclipse: assign keyboard shortcut to a specific run configuration
A few days ago, i tried to find a possibility to assign a keyboard shortcut to a specific run configuration in eclipse (i have 4 different confs in my current project).
As it seems to me that there is no built-in solution nor a plugin to set a keyboard shortcut to a specific run conf, and [...]
Scala – an alternative console scripting language?
[EDIT 15.01.2011]
This post doesn’t reflect my opinion about Scala as a console scripting language anymore. I’m currently using Python for everyday-tasks, which i find pretty much simpler and quicker to solve problems. As you often have to use Java libraries inside Scala, writing code is often still cumbersome and full of Java-style-boilerplate. So the script [...]
Eclipse: Color your console
I just discovered a very useful plugin for Eclipse: Grep Console.
With Grep Console, you can color lines in your Eclipse console if they match a specific regular expression. For example my beloved “BUILD SUCCESS” when working with Maven – which looks like this:
Posted in General 2 Comments
Repository-visualization with Gource
During the lecture “software project”, me and my team (5 members) made a web application with JBoss Seam 2.2. After 2 semesters of hard work, we had a subversion-repository with as much as 999 revisions.
Now i discovered Gource, with which you can visualize the development of a repository over the time. So Gource created the [...]
Posted in General Leave a comment
Build a mixed Scala 2.8/Java application from scratch with Maven [Eclipse Settings]