Eclipse Birthday!

 

Eclipse is 5 years old! Just about month ago Google got 8. Who could have thought that Eclipse is younger than Google!

Help us to spread the word and sign your Eclipse greeting card at eclipse birthday central.

There are eclipse-funded parties all over the world, find your local from http://www.eclipse.org/community/eclipsebirthday5/birthdayparties.php

Unfortunately November is very busy for me so very likely there is no official eclipse birthday party in Estonia.

Just a pint of Guinness with friends.

Share:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • digg
  • Reddit
Comments (0) Sunday, October 29, 3:31 am

Maven 2, Java 5, JUnit 4 and Eclipse with 3 steps!

STEP 1 - Create project
mvn archetype:create -DgroupId=com.timegt.core -DartifactId=timegt-core

STEP 2 - Fix pom.xml
1. replace name and url
2. replace 3.8.1 with 4.1 for junit-4.1 support
3. add this for JDK 5.0 support:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>

STEP 3 - Generate eclipse project settings and download/link sources
mvn eclipse:eclipse -DdownloadSource
Voila! Ready to go :)

Open Eclipse and Import existing project into workspace.

Project structure, sample class and sample junit test is now created and eclipse is ready to rock!

After that you can do
mvn compile
mvn test
mvn package
mvn install
mvn clean
or whatever makes you happy.

Repeat “mvn eclipse:eclipse” whenever you change maven dependencies.

Share:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • digg
  • Reddit
Comments (0) Thursday, October 19, 5:12 pm

Codehoop homepage now officially open

 

Open Source Java Consulting and Development Startup (web2.0 beta:P) Company CODEHOOP launched it’s homepage at http://www.codehoop.com
Feel free to provide any kind of feedback :)

all the best to your life,

Ahti.

Share:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • digg
  • Reddit
Comments (0) Monday, October 16, 7:28 pm