Changes between Version 2 and Version 3 of waue/2009/0812d/start_config
- Timestamp:
- Aug 13, 2009, 10:09:05 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
waue/2009/0812d/start_config
v2 v3 3 3 {{{ 4 4 # This file controls what file are to be put on classpath or command line. 5 6 5 # 7 8 6 # Format is as follows: 9 10 7 # Each line contains entry for one JAR file. 11 12 8 # Format of line: 13 14 9 # 15 16 10 # SUBJECT [ [!] CONDITION [AND|OR] ]* 17 18 11 # 19 20 12 # where SUBJECT: 21 22 13 # ends with ".class" is the Main class to run. 23 24 14 # ends with ".xml" is a configuration file for the command line 25 26 15 # ends with "/" is a directory from which add all jar and zip files from. 27 28 16 # ends with "/*" is a directory from which add all unconsidered jar and zip files from. 29 30 17 # Containing = are used to assign system properties. 31 32 18 # all other subjects are treated as files to be added to the classpath. 33 34 19 # 35 36 20 # Subjects may include system properties with $(propertyname) syntax. 37 38 21 # 39 40 22 # Files starting with "/" are considered absolute, all others are relative to 41 42 23 # the home directory. 43 44 24 # 45 46 25 # CONDITION is one of: 47 48 26 # always 49 50 27 # never 51 52 28 # available classname # true if class on classpath 53 54 29 # property name # true of set 55 56 30 # java OPERATOR version # java version compared to literal 57 58 31 # nargs OPERATOR number # number of command line args compared to literal 59 60 32 # OPERATOR := one of "<",">","<=",">=","==","!=" 61 62 33 # 63 64 34 # CONTITIONS can be combined with AND OR or !, with AND being the assume 65 66 35 # operator for a list of CONDITIONS. 67 68 36 # Classpath operations are evaluated on the fly, so once a class or jar is 69 70 37 # added to the classpath, subsequent available conditions will see that class. 71 72 38 # 73 39 }}}