|
From: <tho...@us...> - 2013-11-10 16:11:17
|
Revision: 7523
http://bigdata.svn.sourceforge.net/bigdata/?rev=7523&view=rev
Author: thompsonbry
Date: 2013-11-10 16:11:10 +0000 (Sun, 10 Nov 2013)
Log Message:
-----------
Apparently com.sun.jini.reggie.ConstrainableRegistrarProxy was in reggie.jar and that file was not included in the lookupstarter.jar manifest. Including that jar in the classpath appears to be enough for the LUS to start. I am going to commit this change to CI and then verify that lookup is properly started and stopped on ci.bigdata.com
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 15:01:49 UTC (rev 7522)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 16:11:10 UTC (rev 7523)
@@ -1693,7 +1693,7 @@
<jar destfile="${bigdata-test.lib}/lookupstarter.jar" index="false">
<manifest>
<attribute name="Manifest-Version" value="1.0" />
- <attribute name="Class-Path" value="log4j.jar jsk-platform.jar jsk-lib.jar start.jar bigdata.jar" />
+ <attribute name="Class-Path" value="log4j.jar jsk-platform.jar jsk-lib.jar start.jar reggie.jar bigdata.jar" />
<attribute name="Main-Class" value="com.bigdata.service.jini.util.LookupStarter" />
</manifest>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|