Author Archive
Wednesday, June 10th, 2009
Maven2 for non-java build
At work I’ve been working with my coworkers on standardizing our build process. We are managing 20+ public sites, each consisting of several applications in different platforms. So the idea that I had developed was using war as any web application builds (and same could be said for jar for any non-web applications. [...]
Comments Off - Posted in technology by yujin
Saturday, August 25th, 2007
svn repository layout setup
A few pointers on setting up svn repository/project through dreamhost.
http://svnbook.red-bean.com/en/1.4/index.html
http://wiki.dreamhost.com/Subversion
mkdir tmpDir
cd tmpDir
mkdir -p project-name/branches project-name/tags project-name/trunk
svn import . file:///[REPO DIR] –message ‘Initial repository layout’
if using eclipse to do initial commit, don’t create trunk directory in the above step. subclipse requires to enter directory that does not already exist in the repository when initially sharing [...]
