In a regular project you are using a handfull Software Libraries. Every Library in your project can use a different license. To get a list of all licenses which are used in your project can be difficult. You can double check the license for every single library in your project manually. But that is timeContinue reading “Getting a list of all Licenses in a Project”
Category Archives: Groovy
Groovy and Java in Mixed Mode
It sucks! It just sucks! javac is generating byte code. groovyc is generating byte code. bothe are generating byte code for the jvm. From the byte code perspective their is no different between java and groovy. And in the IDE, IntelliJ IDEA, you can easily mix Java classes with groovy classes. No Problem. No errorsContinue reading “Groovy and Java in Mixed Mode”
Differences between Groovy and Java
I found this blog entry very useful: http://groovy.codehaus.org/Differences+from+Java
Groovy Getting Started
I am playing around with Groovy. That is a dynamic language for the Java VM. It is similar to Ruby. I found this tutorial here: http://groovy.codehaus.org/Tutorial+1+-+Getting+started That is pretty helpful for beginners. Try it out.