Linux上使用SVN下载代码并编译
Linux上使用SVN下载代码并编译
1.利用SVN下载源代码
检出程序源码
svn checkout http://ip/svn/projectname/Code/Trunk projectname
输入linux的root密码
SVN的用户名和密码
更新
svn update
2.使用ANT编译程序
ANT下载页面
http://ant.apache.org/bindownload.cgi
下载文件
apache-ant-1.7.1-bin.tar.gz
解开压缩
tar -zxvf apache-ant-1.7.1-bin.tar.gz
移动到安装目录
mv apache-ant-1.7.1 /usr/local/
配置
vi /etc/profile
ANT_HOME=/usr/local/apache-ant-1.7.1
export ANT_HOME
在PATH中添加 :$ANT_HOME/bin
执行/etc/profile令设置生效
3.更新代码和编译的脚本
给执行权限
chmod +x build4debug.sh
update4debug.sh,放置在/usr/local/bin下面,内容如下:
#!/bin/sh
echo "CVS update start... "
cd /usr/tmp/projectname
svn update
echo "SVN update OK"
sleep 1
echo "ANT war start... "
ant clean
ant war
echo "ANT war OK"
问题一:
执行/etc/profile报错:
[root@projectname bin]# /etc/profile
-bash: /etc/profile: Permission denied
目前不知道有其它办法没有,重启可以生效