Skip to content

Commit

Permalink
Merge pull request #13 from kfrajer/feature/build-script-update
Browse files Browse the repository at this point in the history
Update build script, artifacts to P3 lib ref specs
  • Loading branch information
fjenett authored Jan 8, 2023
2 parents 952c587 + 3b25390 commit dde7fc1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<property name="author" value="Florian Jenett"/>
<property name="copyright" value="(c) 2007 - 2013"/>
<property name="libraryName" value="XlsReader"/>
<property name="versionNumber" value="0.1.1"/>
<property name="versionNumber" value="0.1.2"/>
<property name="yourLink" value="http://bezier.de/" />
<property name="keywords" value="Excel, reader, xls, data"/>
<property name="javaVersion" value="1.5"/>
Expand Down Expand Up @@ -100,7 +100,7 @@ java version ${javaVersion}
<mkdir dir="${dist}" />
<mkdir dir="${dist}/library" />
<mkdir dir="${dist}/examples" />
<mkdir dir="${dist}/documentation" />
<mkdir dir="${dist}/reference" />

<jar jarfile="${dist}/library/${jarFile}" basedir="${bin}"/>

Expand Down Expand Up @@ -129,7 +129,7 @@ java version ${javaVersion}
</classpath>
</javadoc>

<copy todir="${dist}/documentation">
<copy todir="${dist}/reference">
<fileset dir="${javadoc}" />
</copy>

Expand All @@ -142,13 +142,13 @@ java version ${javaVersion}

<!-- finish library's distribution -->

<copy todir="${processing}/${libraryName}/documentation">
<copy todir="${processing}/${libraryName}/reference">
<fileset dir="${javadoc}" />
</copy>

<!-- add more -->

<copy todir="${dist}/source">
<copy todir="${dist}/src">
<fileset dir="${src}" />
</copy>

Expand Down Expand Up @@ -193,7 +193,7 @@ java version ${javaVersion}
<mkdir dir="web" />

<copy todir="web/documentation">
<fileset dir="${dist}/documentation" />
<fileset dir="${dist}/reference" />
</copy>

<copy todir="web/examples">
Expand Down
6 changes: 4 additions & 2 deletions release/XlsReader.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ url = https://github.com/fjenett/xlsreader-library-processing
category = DATA
sentence = A library to read from XLS (Excel) files
paragraph = XlsReader allows to read from .xls files as if they were a database
version = 504
prettyVersion = 0.1.1
version = 5
prettyVersion = 0.1.2
minRevision = 218
maxRevision = 0
Binary file modified release/XlsReader.zip
Binary file not shown.

0 comments on commit dde7fc1

Please sign in to comment.