mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
24826298ca
4 changed files with 28 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -38,7 +38,7 @@ src/generated
|
||||||
.settings
|
.settings
|
||||||
.vscode
|
.vscode
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
|
*.xpr
|
||||||
# Testing stuff
|
# Testing stuff
|
||||||
xrechnung
|
xrechnung
|
||||||
|
|
||||||
|
|
|
||||||
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -5,16 +5,27 @@ 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/)
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 1.4.1
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Allow more than 3 customLevel elements in scenarios (see xrechnung
|
||||||
|
configuration [ issue 49](https://github.com/itplr-kosit/validator-configuration-xrechnung/issues/49))
|
||||||
|
- Remove saxon signature from java8 uber-jar (see [67](https://github.com/itplr-kosit/validator/issues/67))
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- date conversion when using [ConfigurationBuilder#date(Date)](https://github.com/itplr-kosit/validator/blob/d7beb1040418ae5cbeb9427532fd87482f55756c/src/main/java/de/kosit/validationtool/config/ConfigurationBuilder.java#L109)
|
|
||||||
|
- date conversion when
|
||||||
|
using [ConfigurationBuilder#date(Date)](https://github.com/itplr-kosit/validator/blob/d7beb1040418ae5cbeb9427532fd87482f55756c/src/main/java/de/kosit/validationtool/config/ConfigurationBuilder.java#L109)
|
||||||
- [CLI] [#51](https://github.com/itplr-kosit/validator/issues/51) Suffix of report xml is missing
|
- [CLI] [#51](https://github.com/itplr-kosit/validator/issues/51) Suffix of report xml is missing
|
||||||
- [#53](https://github.com/itplr-kosit/validator/issues/53) Fix copyright and licensing information
|
- [#53](https://github.com/itplr-kosit/validator/issues/53) Fix copyright and licensing information
|
||||||
- [#56](https://github.com/itplr-kosit/validator/issues/56) `namespace` element content needs trimming
|
- [#56](https://github.com/itplr-kosit/validator/issues/56) `namespace` element content needs trimming
|
||||||
- [DAEMON] [#57](https://github.com/itplr-kosit/validator/issues/57) Reading large inputs correctly
|
- [DAEMON] [#57](https://github.com/itplr-kosit/validator/issues/57) Reading large inputs correctly
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- read saxon XdmNode with InputFactory
|
- read saxon XdmNode with InputFactory
|
||||||
- [CLI] custom output without the various log messages
|
- [CLI] custom output without the various log messages
|
||||||
- [CLI] options to set the log level (`-X` = full debug output, `-l <level>` set a specific level)
|
- [CLI] options to set the log level (`-X` = full debug output, `-l <level>` set a specific level)
|
||||||
|
|
|
||||||
17
pom.xml
17
pom.xml
|
|
@ -21,7 +21,7 @@
|
||||||
<name>KoSIT XML Prüftool Implementierung</name>
|
<name>KoSIT XML Prüftool Implementierung</name>
|
||||||
|
|
||||||
<groupId>de.kosit</groupId>
|
<groupId>de.kosit</groupId>
|
||||||
<version>1.4.1-SNAPSHOT</version>
|
<version>1.4.2-SNAPSHOT</version>
|
||||||
|
|
||||||
<artifactId>validationtool</artifactId>
|
<artifactId>validationtool</artifactId>
|
||||||
<description>KoSIT XML Validator against XSD and Schematron based on defined scenarios.</description>
|
<description>KoSIT XML Validator against XSD and Schematron based on defined scenarios.</description>
|
||||||
|
|
@ -273,11 +273,18 @@
|
||||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||||
<mainClass>de.kosit.validationtool.cmd.CommandLineApplication</mainClass>
|
<mainClass>de.kosit.validationtool.cmd.CommandLineApplication</mainClass>
|
||||||
</transformer>
|
</transformer>
|
||||||
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
|
|
||||||
<!-- Signatur von saxon entfernen - sonst läuft die standalone-anwendung nicht -->
|
|
||||||
<resource>META-INF/TE-050AC.SF</resource>
|
|
||||||
</transformer>
|
|
||||||
</transformers>
|
</transformers>
|
||||||
|
<filters>
|
||||||
|
<filter>
|
||||||
|
<artifact>*:*</artifact>
|
||||||
|
<excludes>
|
||||||
|
<exclude>META-INF/*.SF</exclude>
|
||||||
|
<exclude>META-INF/*.DSA</exclude>
|
||||||
|
<exclude>META-INF/*.RSA</exclude>
|
||||||
|
<exclude>**/module-info.class</exclude>
|
||||||
|
</excludes>
|
||||||
|
</filter>
|
||||||
|
</filters>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,7 @@
|
||||||
<xs:complexType name="CreateReportType">
|
<xs:complexType name="CreateReportType">
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element ref="s:resource" />
|
<xs:element ref="s:resource" />
|
||||||
<xs:element maxOccurs="3" minOccurs="0" name="customLevel" type="s:CustomErrorLevel" />
|
<xs:element maxOccurs="unbounded" minOccurs="0" name="customLevel" type="s:CustomErrorLevel" />
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue