File tree 4 files changed +20
-6
lines changed
src/openmap/com/bbn/openmap
4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,21 @@ changes will not be reflected in the application unless:
149
149
The second option is usually the easiest, but your needs may require
150
150
one of the other options.
151
151
152
+ External Dependencies
153
+ ---------------------
154
+
155
+ The source code has been broken out into separate directories for code
156
+ that depends on other packages.
157
+
158
+ - src/openmap and src/ext: This code should compile without any special packages.
159
+ - src/corba: The missing classes can be generated by building with ant. The idl files
160
+ are used to create the generated class files.
161
+ - src/j3d: This code will compile if the Java 3D package is installed.
162
+ - src/svg: This code will compile if Batik (v 1.7) is installed.
163
+
164
+ If you check OpenMap out from svn (instructions on the download page on the website), these
165
+ external packages are included.
166
+
152
167
Bug Tracking Software
153
168
---------------------
154
169
BBN maintains a Bugzilla site for tracking bugs and suggestions for
Original file line number Diff line number Diff line change @@ -119,10 +119,10 @@ done
119
119
120
120
if [ " $VISIBROKER_HOME " = " " ] ; then
121
121
# echo $JAVACMD -Xmx256m -classpath "$LOCALCLASSPATH" -Dopenmap.configDir=$OPENMAP_HOME/share $JAVA_ARGS com.bbn.openmap.app.OpenMap $OPENMAP_ARGS
122
- $JAVACMD -Xmx512m -classpath " $LOCALCLASSPATH " -Dopenmap.configDir=$OPENMAP_HOME /share -Ddebug.showprogress $JAVA_ARGS com.bbn.openmap.app.OpenMap $OPENMAP_ARGS
122
+ $JAVACMD -Xmx512m -classpath " $LOCALCLASSPATH " -Dopenmap.configDir=$OPENMAP_HOME /share -Ddebug.showprogress $JAVA_ARGS com.bbn.openmap.app.Main $OPENMAP_ARGS
123
123
else
124
124
# echo $JAVACMD -Xmx256m -Xbootclasspath:"$LOCALCLASSPATH" -Dopenmap.configDir=$OPENMAP_HOME/share $JAVA_ARGS com.bbn.openmap.app.OpenMap $OPENMAP_ARGS
125
- $JAVACMD -Xmx512m -Xbootclasspath:" $LOCALCLASSPATH " -Dopenmap.configDir=$OPENMAP_HOME /share -Ddebug.showprogress $JAVA_ARGS com.bbn.openmap.app.OpenMap $OPENMAP_ARGS
125
+ $JAVACMD -Xmx512m -Xbootclasspath:" $LOCALCLASSPATH " -Dopenmap.configDir=$OPENMAP_HOME /share -Ddebug.showprogress $JAVA_ARGS com.bbn.openmap.app.Main $OPENMAP_ARGS
126
126
fi
127
127
128
128
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ rem subdirectory. Add other jar files as available.
17
17
set CLASSPATH = %OPENMAP_HOME% ;%OPENMAP_HOME% \classes\openmap;%OPENMAP_HOME% \share;%OPENMAP_HOME% \lib\milStd2525_png.jar;%OPENMAP_HOME% \lib\openmap.jar;%OPENMAP_HOME% \lib\omsvg.jar;%OPENMAP_HOME% \lib\omj3d.jar;%OPENMAP_HOME% \lib\omcorba_vb.jar;
18
18
19
19
rem OK, now run OpenMap
20
- %JAVABIN% -Xmx64m -Dopenmap.configDir=%OPENMAP_HOME% \share -Ddebug.showprogress com.bbn.openmap.app.OpenMap
20
+ %JAVABIN% -Xmx64m -Dopenmap.configDir=%OPENMAP_HOME% \share -Ddebug.showprogress com.bbn.openmap.app.Main
Original file line number Diff line number Diff line change @@ -148,11 +148,10 @@ public class MapBean
148
148
/**
149
149
* OpenMap version.
150
150
*/
151
- public static final String version = "5.0b " ;
151
+ public static final String version = "5.0 " ;
152
152
153
153
/**
154
- * Suppress the copyright message on initialization. But remember, the
155
- * OpenMap License says you can't do this!
154
+ * Suppress the copyright message on initialization.
156
155
*/
157
156
public static boolean suppressCopyright = false ;
158
157
You can’t perform that action at this time.
0 commit comments