-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using CladosCalculator to bug hunt and fix
Also fixed a few things using the unit tests. Mostly calculator fixes, though
- Loading branch information
Showing
31 changed files
with
263 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,101 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project name="Clados" default="dist" basedir="."> | ||
<description> | ||
|
||
<description> | ||
simple example build file | ||
</description> | ||
<!-- set global properties for this build --> | ||
<property name="src" location="src"/> | ||
<property name="build" location="build"/> | ||
<property name="junit" location="junit"/> | ||
<property name="dist" location="dist"/> | ||
</description> | ||
|
||
<property name="appHome" value="https://github.com/InterworldTransport/CladosCalculator" /> | ||
<property name="srcDir" value="src"/> | ||
<property name="docDir" value="doc" /> | ||
<property name="buildDir" value="build"/> | ||
<property name="junit" value="junit"/> | ||
<property name="distDir" value="dist"/> | ||
<property name="copyleft" value="<p> | ||
-------------------------------------------------------------------------------- | ||
<br> | ||
Clados_API_Documentation<br> | ||
-------------------------------------------------------------------------------- | ||
<br> | ||
Copyright © 2020 Alfred Differ. All rights reserved. | ||
<p> | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
<p> | ||
Use of this code or executable objects derived from it by the Licensee | ||
states their willingness to accept the terms of the license. | ||
<p> | ||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see https://www.gnu.org/licenses/."/> | ||
|
||
<target name="init"> | ||
<!-- Create the time stamp --> | ||
<tstamp/> | ||
<!-- Create the build directory structure used by compile --> | ||
<mkdir dir="${build}"/> | ||
</target> | ||
<target name="init"> | ||
<!-- Create the time stamp --> | ||
<tstamp/> | ||
<!-- Create the build directory structure used by compile --> | ||
<mkdir dir="${buildDir}"/> | ||
</target> | ||
|
||
<target name="clean" | ||
description="clean up"> | ||
<!-- Delete the ${buildDir} and ${distDir} directory trees --> | ||
<delete dir="${buildDir}"/> | ||
<delete dir="${distDir}"/> | ||
<delete dir="${docDir}"/> | ||
</target> | ||
|
||
<target name="compile" | ||
depends="init" | ||
description="compile the source"> | ||
<target name="compile" | ||
depends="init" | ||
description="compile the source"> | ||
<!-- Compile the Java code from ${src} into ${build} --> | ||
<javac includeantruntime="false" | ||
srcdir="${src}" | ||
destdir="${build}" /> | ||
<javac includeantruntime="false" | ||
srcdir="${srcDir}" | ||
destdir="${buildDir}"> | ||
<exclude name="com/interworldtransport/cladosGTest/**"/> | ||
<exclude name="com/interworldtransport/cladosFTest/**"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="dist" | ||
depends="compile" | ||
description="generate the distribution"> | ||
<target name="dist" | ||
depends="compile" | ||
description="generate the distribution"> | ||
<!-- Create the distribution directory --> | ||
<mkdir dir="${dist}/lib"/> | ||
<mkdir dir="${distDir}/lib"/> | ||
|
||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --> | ||
<jar jarfile="${dist}/lib/Clados-${DSTAMP}.jar" | ||
basedir="${build}"/> | ||
<jar jarfile="${distDir}/lib/clados-${DSTAMP}.jar" | ||
basedir="${buildDir}"/> | ||
</target> | ||
|
||
<target name="javadoc"> | ||
<javadoc access="public" | ||
author="true" | ||
classpath="/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.launcher_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.suite.api_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.migrationsupport_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.commons_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit_4.12.0.v201504281640/junit.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.engine_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.api_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.apiguardian_1.0.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.vintage.engine_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.opentest4j_1.0.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.engine_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.runner_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.hamcrest.core_1.3.0.v20180420-1519.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.params_5.1.0.v20180327-1502.jar" | ||
destdir="doc" | ||
doctitle="CladosOne" | ||
nodeprecated="false" | ||
nodeprecatedlist="false" | ||
noindex="false" | ||
nonavbar="false" | ||
notree="false" | ||
overview="/Users/alfredwdiffer/eclipse-workspace/CladosOne/src/overview.html" | ||
packagenames="com.interworldtransport.cladosFExceptions,com.interworldtransport.cladosF,com.interworldtransport.cladosGExceptions,com.interworldtransport.cladosG" | ||
source="10" | ||
sourcepath="src" | ||
splitindex="true" | ||
use="true" | ||
version="true"> | ||
<javadoc author="true" | ||
bottom="${copyleft}" | ||
classpath="/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.launcher_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.suite.api_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.migrationsupport_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.commons_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit_4.12.0.v201504281640/junit.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.engine_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.api_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.apiguardian_1.0.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.vintage.engine_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.opentest4j_1.0.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.engine_5.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.platform.runner_1.1.0.v20180327-1502.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.hamcrest.core_1.3.0.v20180420-1519.jar:/Users/alfredwdiffer/.p2/pool/plugins/org.junit.jupiter.params_5.1.0.v20180327-1502.jar" | ||
destdir="${docDir}" | ||
doctitle="CladosOne" | ||
nodeprecated="false" | ||
nodeprecatedlist="false" | ||
noindex="false" | ||
nonavbar="false" | ||
notree="false" | ||
overview="/Users/alfredwdiffer/eclipse-workspace/CladosOne/src/overview.html" | ||
packagenames="com.interworldtransport.cladosFExceptions,com.interworldtransport.cladosF,com.interworldtransport.cladosGExceptions,com.interworldtransport.cladosG" | ||
source="10" | ||
sourcepath="src" | ||
splitindex="true" | ||
use="true" | ||
version="true"> | ||
<link href="http://hamcrest.org/JavaHamcrest/javadoc/1.3/"/> | ||
<link href="http://ota4j-team.github.io/opentest4j/docs/current/api/"/> | ||
<link href="https://apiguardian-team.github.io/apiguardian/docs/current/api/"/> | ||
<link href="http://junit.org/junit5/docs/current/api/"/> | ||
<link href="http://junit.org/junit4/javadoc/latest/"/> | ||
</javadoc> | ||
</target> | ||
|
||
<target name="clean" | ||
description="clean up"> | ||
<!-- Delete the ${build} and ${dist} directory trees --> | ||
<delete dir="${build}"/> | ||
<delete dir="${dist}"/> | ||
</target> | ||
|
||
</project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.