Skip to content

Commit

Permalink
Added reference to JSAP arg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
timabell committed Nov 28, 2010
1 parent 815174b commit ebfda18
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3.8.1"/>
<classpathentry kind="lib" path="lib/JSAP-2.1.jar"/>
<classpathentry kind="output" path="output"/>
</classpath>
4 changes: 2 additions & 2 deletions .externalToolBuilders/Jar_Builder.launch
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_21"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.eclipse.ant.internal.launching.remote.InternalAntRunner"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="SchemaSpy"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="schemaspy"/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_BUILDER_ENABLED" value="true"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/SchemaSpy/build.xml}"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/schemaspy/build.xml}"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,"/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
<stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/>
Expand Down
13 changes: 13 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@
<property name="dest" value="output"/>
<property name="dist" value="dist"/>
<property name="src" value="src"/>
<property name="lib.dir" value="lib/"/>
<path id="project.class.path">
<pathelement location="${dest}"/>
</path>

<path id="external.jars">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>

<path id="project.classpath">
<pathelement location="${src.dir}"/>
<path refid="external.jars" />
</path>

<!--Patternset to exclude files from the output directory:-->
<patternset id="dest.exclude">
<exclude name="package cache/"/>
Expand All @@ -17,6 +28,7 @@
<patternset refid="dest.exclude"/>
<include name="**/*.*"/>
</fileset>
<zipgroupfileset dir="${lib.dir}" includes="**/*.jar" />
<manifest>
<attribute name="Main-Class" value="net.sourceforge.schemaspy.Main"/>
<attribute name="Implementation-Version"
Expand Down Expand Up @@ -53,6 +65,7 @@
debuglevel="source,lines"
source="1.5"
target="1.5"
classpathref="project.classpath"
/>
</target>

Expand Down
Binary file added lib/JSAP-2.1.jar
Binary file not shown.
1 change: 1 addition & 0 deletions lib/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
JASP command line parser from http://sourceforge.net/projects/jsap/ & http://martiansoftware.com/jsap/

0 comments on commit ebfda18

Please sign in to comment.