Skip to content
Snippets Groups Projects
Commit 524d9d8e authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

build.xml cleaning

parent 2ec02785
No related branches found
No related tags found
1 merge request!103Misc edits
......@@ -11,6 +11,8 @@
<property name="dist.dir" value="dist/" />
<property name="javadoc.dir" value="../nshmp-haz.gh-pages/javadoc" />
<defaultexcludes add="**/Scratch*.java"/>
<path id="library.classpath">
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
......@@ -38,7 +40,6 @@
<!-- Compile to classes/ -->
<javac srcdir="${src.dir}"
destdir="${classes.dir}"
excludes="**/Scratch*.java"
classpathref="library.classpath"
nowarn="true"
fork="true"
......@@ -64,6 +65,7 @@
<target name="javadoc">
<defaultexcludes echo="true"/>
<!-- Clean the docs directory; .git data preserved by defaultexcludes -->
<delete includeEmptyDirs="true" failonerror="yes" verbose="no">
<fileset dir="${javadoc.dir}" />
......@@ -82,9 +84,8 @@
docencoding="UTF-8"
charset="UTF-8">
<fileset dir="${src.dir}" defaultexcludes="yes">
<fileset dir="${src.dir}">
<include name="**/*.java" />
<exclude name="**/Scratch*.java" />
</fileset>
<link href="http://docs.oracle.com/javase/7/docs/api/" />
......
......@@ -60,10 +60,8 @@ public final class CalcConfig {
private static final String DEFAULT_OUT = "curves";
/**
* The resource from which {@code this} was derived. If this configuration
* was built using {@link Builder#extend(Builder)}, this field will reflect
* the field of the extending resource. If this configuration was built only
* from {@link Builder#withDefaults()}, this field will be empty.
* The resource from which {@code this} was derived. This field may be
* empty.
*/
public final transient Optional<Path> resource;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment