Monday, June 25, 2007

SVN and CVS

SVN wiki
SVN - is Subversion
TortoiseSVN official and wiki
Tigris official

CVS wiki
CVS - is Concurrent Versions System
TortoiseCVS official and wiki

Links:
List of revision control software
SVN vs CVS
CVS to SVN Crossover Guide

Saturday, June 23, 2007

Ant

official and wiki

This is the project build tool.

Ant run plugin in maven.

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
...

Classpath in antrun

<classpath refid="maven.dependency.classpath" />

<classpath>
<pathelement location="${localRepository}/org/apache/axis2/axis2/1.2/axis2-1.2.jar"/>
<path refid="maven.dependency.classpath"/>
</classpath>

<classpath>
<fileset dir="${localRepository}/org/apache/axis2/axis2/1.2/">
<include name="axis2-1.2.jar"/>
</fileset>
</classpath>

<classpath>
<pathelement path="${classpath}" />
<fileset dir="${basedir}/target">
<include name="**/rmi-client-1.6.dir/*.jar" />
</fileset>
</classpath>

Links:

Java parameters