svnno****@sourc*****
svnno****@sourc*****
2009年 4月 15日 (水) 08:11:46 JST
Revision: 3279 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3279 Author: daisuke_m Date: 2009-04-15 08:11:46 +0900 (Wed, 15 Apr 2009) Log Message: ----------- pullスクリプト修正。 Modified Paths: -------------- hestia/trunk/jiemamy-hestia/mvn_install.bat hestia/trunk/jiemamy-hestia/pull.bat Added Paths: ----------- hestia/trunk/jiemamy-hestia/pull_offline.bat -------------- next part -------------- Modified: hestia/trunk/jiemamy-hestia/mvn_install.bat =================================================================== --- hestia/trunk/jiemamy-hestia/mvn_install.bat 2009-04-14 18:08:15 UTC (rev 3278) +++ hestia/trunk/jiemamy-hestia/mvn_install.bat 2009-04-14 23:11:46 UTC (rev 3279) @@ -26,6 +26,6 @@ ) ELSE ( SET MAVEN_OPTS=-Xmx512M ) -call mvn -o clean install +call mvn clean install pause Modified: hestia/trunk/jiemamy-hestia/pull.bat =================================================================== --- hestia/trunk/jiemamy-hestia/pull.bat 2009-04-14 18:08:15 UTC (rev 3278) +++ hestia/trunk/jiemamy-hestia/pull.bat 2009-04-14 23:11:46 UTC (rev 3279) @@ -28,30 +28,30 @@ ) cd ..\jiemamy-commons\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-entity-io\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-zeus\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-test-helper\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-artemis\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-html-exporter\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-jpa-importer\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-jpa-exporter\ -call mvn -o install -Dmaven.test.skip=true +call mvn install -Dmaven.test.skip=true cd ..\jiemamy-hestia\ -call mvn -o clean package -Dmaven.test.skip=true +call mvn clean package -Dmaven.test.skip=true pause Added: hestia/trunk/jiemamy-hestia/pull_offline.bat =================================================================== --- hestia/trunk/jiemamy-hestia/pull_offline.bat (rev 0) +++ hestia/trunk/jiemamy-hestia/pull_offline.bat 2009-04-14 23:11:46 UTC (rev 3279) @@ -0,0 +1,57 @@ + @ echo off + +:CHANGE_DIR +REM ==== change to root directory of jiemamy-hestia +cd /d %~dp0 + +IF DEFINED JAVA6_HOME GOTO SET_JAVA_HOME + +:JAVA_CHECK +REM ==== search Java6 +FOR /d %%J IN ("C:\Program Files\Java\jdk1.6.*") DO set JAVA6_HOME=%%J +IF DEFINED JAVA6_HOME goto SET_JAVA_HOME + +echo Java6 not found. +pause +exit + +:SET_JAVA_HOME +REM ==== set environment JAVA_HOME as Java6 +set JAVA_HOME=%JAVA6_HOME% + +:RUN_MAVEN +REM ==== build jiemamy +IF DEFINED MAVEN_OPTS ( + SET MAVEN_OPTS=%MAVEN_OPTS% -Xmx512M +) ELSE ( + SET MAVEN_OPTS=-Xmx512M +) + +cd ..\jiemamy-commons\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-entity-io\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-zeus\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-test-helper\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-artemis\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-html-exporter\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-jpa-importer\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-jpa-exporter\ +call mvn -o install -Dmaven.test.skip=true + +cd ..\jiemamy-hestia\ +call mvn -o clean package -Dmaven.test.skip=true + +pause