Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/api-webpage-sitemap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.3.0
uses: peter-evans/create-pull-request@v3.4.0
with:
title: "Automated sitemap update"
body: >
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - 2020-09-15
## [Unreleased] - 2020-09-18
### Added

### Changed
* Modernized API documentation website (https://jpt.cicirello.org/) to html5 with search and no frames.

### Deprecated

Expand Down
19 changes: 14 additions & 5 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
</description>
<!-- global properties for this build -->
<property name="VERSION" value="2.0.1"/>
<property name="JDKVERSION" value="1.8"/>
<property name="junit" location="build/junit-4.12.jar"/>
<property name="hamcrest" location="build/hamcrest-core-1.3.jar"/>
<property name="src" location="src"/>
Expand All @@ -30,13 +31,16 @@
<target name="compile" depends="init"
description="compile the source">
<!-- Compile the Java code from ${src} into ${bin} -->
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false">
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false"
source="${JDKVERSION}" target="${JDKVERSION}">
<!--
<compilerarg value="-Xlint:unchecked"/>
-->
<compilerarg value="-Xlint:deprecation"/>
</javac>
<!-- Compile the JUnit tests from ${testsrc} into ${testbin} -->
<javac srcdir="${testsrc}" destdir="${testbin}" classpath="${junit};${bin}" includeantruntime="false"/>
<javac srcdir="${testsrc}" destdir="${testbin}" classpath="${junit};${bin}"
includeantruntime="false" source="${JDKVERSION}" target="${JDKVERSION}"/>
</target>

<target name="test" depends="compile"
Expand Down Expand Up @@ -71,9 +75,13 @@
<!-- Create directory for bin of examples and replication programs -->
<mkdir dir="${examplebin}"/>
<!-- Compile basic examples -->
<javac srcdir="${examples}" destdir="${examplebin}" classpath="${dist}/jpt-${VERSION}.jar;${examples}" includeantruntime="false"/>
<javac srcdir="${examples}" destdir="${examplebin}"
classpath="${dist}/jpt-${VERSION}.jar;${examples}" includeantruntime="false"
source="${JDKVERSION}" target="${JDKVERSION}"/>
<!-- Compile experiment replication programs -->
<javac srcdir="${replication}" destdir="${examplebin}" classpath="${dist}/jpt-${VERSION}.jar;${replication}" includeantruntime="false"/>
<javac srcdir="${replication}" destdir="${examplebin}"
classpath="${dist}/jpt-${VERSION}.jar;${replication}" includeantruntime="false"
source="${JDKVERSION}" target="${JDKVERSION}"/>
</target>

<target name="docs" depends="dist"
Expand All @@ -85,7 +93,8 @@
overview="src/overview.html"
author="false"
version="false"
additionalparam="-notimestamp">
additionalparam="-notimestamp --no-module-directories"
source="${JDKVERSION}">
<link href="https://docs.oracle.com/javase/8/docs/api/" packagelistLoc="build/java-package-list" offline="true" />
<bottom><![CDATA[Copyright &copy; 2005-2019 Vincent A. Cicirello. <a href=\"https://www.cicirello.org/\" target=_top>https://www.cicirello.org/</a>]]></bottom>
</javadoc>
Expand Down
Binary file modified dist/jpt-2.0.1.jar
Binary file not shown.
61 changes: 0 additions & 61 deletions docs/api/allclasses-frame.html

This file was deleted.

Loading