Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
rkottmann committed Jun 24, 2019
1 parent 2473f4c commit 9d90cfc
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,18 @@ All notable changes to the Schematron Rules and this project will be documented
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]
## v2019-06-24


### Added

- License

### Changed

- compatible with XRechnung 1.2.1
- Add CEN license statement

### Fixed

- BUG in the creation of `<xsl:template name="identifier-with-scheme-and-version">`
- BUG in the creation of `<xsl:template name="identifier-with-scheme-and-version">`
28 changes: 14 additions & 14 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8" ?>
<project basedir="." name="xrechnung-visualization" default="test">
<!-- project directory structure -->
<property name="dist.dir" location="${basedir}/dist" />
Expand All @@ -10,19 +10,20 @@
<!-- Test resources -->
<property name="validator.jar" value="validationtool-1.0.1-standalone.jar" />

<property name="github.group.url" value="https://github.com/itplr-kosit"/>
<property name="xrechnung.version.full" value="1.2.0" />
<property name="validator.download.url"
value="${github.group.url}/validationtool/releases/download/validationtool-1_0_1/validationtool-dist-1.0.1-standalone.zip"/>
<property name="xrechnung.version.major.minor" value="1.2" />
<property name="xrechnung.version.full" value="${xrechnung.version.major.minor}.1" />

<property name="validator.config.proj.name" value="validator-configuration-xrechnung"/>
<property name="github.group.url" value="https://github.com/itplr-kosit" />

<property name="validator.config.download.url"
value="${github.group.url}/${validator.config.proj.name}/releases/download/release-2018-12-19/${validator.config.proj.name}_${xrechnung.version.full}_2018-12-19.zip"/>

<property name="validator.config.release.version" value="release-2018-12-19" />
<property name="validator.config.zip"
value="validator-configuration-xrechnung_1.2.0_2018-12-19.zip" />
<property name="validator.download.url" value="${github.group.url}/validationtool/releases/download/validationtool-1_0_1/validationtool-dist-1.0.1-standalone.zip" />

<property name="validator.config.proj.name" value="validator-configuration-xrechnung" />

<property name="validator.config.release.date" value="2019-06-24" />
<property name="validator.config.download.url" value="${github.group.url}/${validator.config.proj.name}/releases/download/release-${validator.config.release.date}/${validator.config.proj.name}_${xrechnung.version.full}_${validator.config.release.date}.zip" />

<property name="validator.config.release.version" value="release-${validator.config.release.date}" />
<property name="validator.config.zip" value="validator-configuration-xrechnung_${xrechnung.version.full}_${validator.config.release.date}.zip" />
<property name="validator.repository.dir" location="${build.dir}/xrechnung-configuration-repository" />
<!-- vnu html validator -->
<property name="vnu.jar" value="vnu.jar" />
Expand Down Expand Up @@ -190,8 +191,7 @@
<target name="test" depends="test-testsuite, test-xr-transformation, test-html" description="Validates source UBL or CII XML against XRechnung,
transforms to XR Sem Model and schema validates results" />
<target name="dist" depends="test">
<zip
destfile="${dist.dir}/xrechnung-${xrechnung.version.full}-${ant.project.name}-${build.date}.zip" basedir="${src.dir}" excludes="download/**,test/**" />
<zip destfile="${dist.dir}/xrechnung-${xrechnung.version.full}-${ant.project.name}-${build.date}.zip" basedir="${src.dir}" excludes="download/**,test/**" />
</target>
<target name="clean">
<!-- Delete the ${build} and ${dist} directory trees -->
Expand Down

0 comments on commit 9d90cfc

Please sign in to comment.