#
# Building UCC packages
#

You need Java 6 and Apache Maven. 
Check the versions given in the pom.xml file. 
If not already done, build the jars from the root dir :

 cd .. ; mvn clean install -DskipTests

#
# Creating distribution packages
#

The following commands create the distribution packages
in tgz, deb and rpm formats (Maven 2!)

#tgz
 mvn assembly:assembly -DskipTests

#deb
 mvn package -DskipTests -Ppackman -Dpackage.type=deb -Ddistribution=Debian -Dpackage.release=0 -Dpackage.version=6.0.0

#rpm redhat
 mvn package -DskipTests -Ppackman -Dpackage.type=rpm -Ddistribution=RedHat -Dpackage.release=0 -Dpackage.version=6.0.0

