|
From: Michael R. <mr...@us...> - 2002-01-10 20:47:23
|
Update of /cvsroot/openorb/NamingService In directory usw-pr-cvs1:/tmp/cvs-serv12447/NamingService Modified Files: build.bat build.sh Log Message: When creating the tarballs the ManagementBoard plugins are built. The three packages INS, IR, Trading have plugins for the Board and and depend on the board plugin interfaces. Added the Board to the path. Index: build.bat =================================================================== RCS file: /cvsroot/openorb/NamingService/build.bat,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- build.bat 2002/01/09 12:26:06 1.1.1.1 +++ build.bat 2002/01/10 20:47:20 1.2 @@ -6,5 +6,6 @@ for %%i in (..\OpenORB\dist\*.jar) do call cp.bat %%i for %%i in (..\TransactionService\dist\*.jar) do call cp.bat %%i for %%i in (..\PersistentStateService\dist\*.jar) do call cp.bat %%i +for %%i in (..\ManagementBoard\dist\*.jar) do call cp.bat %%i %JAVA% -classpath "%CP%" -Dant.home=lib org.apache.tools.ant.Main %1 %2 %3 %4 %5 %6 -buildfile src/build.xml Index: build.sh =================================================================== RCS file: /cvsroot/openorb/NamingService/build.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- build.sh 2002/01/10 09:01:29 1.2 +++ build.sh 2002/01/10 20:47:20 1.3 @@ -24,6 +24,7 @@ CLASSPATH=`echo ../OpenORB/dist/*.jar | tr ' ' ':'`:$CLASSPATH CLASSPATH=`echo ../TransactionService/dist/*.jar | tr ' ' ':'`:$CLASSPATH CLASSPATH=`echo ../PersistentStateService/dist/*.jar | tr ' ' ':'`:$CLASSPATH +CLASSPATH=`echo ../ManagementBoard/dist/*.jar | tr ' ' ':'`:$CLASSPATH CLASSPATH=$JAVA_HOME/lib/tools.jar:$CLASSPATH # Change the attributs for the antRun file |