Skip to content

Commit

Permalink
Merge pull request #394 from phax/master
Browse files Browse the repository at this point in the history
Updated readme and utility version
  • Loading branch information
oriol authored Sep 11, 2024
2 parents a4a24a7 + cf8de3d commit 4f2a818
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 24 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Official Schematron eInvoicing-EN16931 artefacts for CEN/TC 434.
This repository does not contain eInvoicing-EN16931 rules for any CIUS.

Latest release
* UBL & CII: **v1.3.10** (2023-04-08) - [https://github.com/ConnectingEurope/eInvoicing-EN16931/releases/tag/validation-1.3.10](https://github.com/ConnectingEurope/eInvoicing-EN16931/releases/tag/validation-1.3.10)
* UBL & CII: **v1.3.12** (2024-04-10) - [https://github.com/ConnectingEurope/eInvoicing-EN16931/releases/tag/validation-1.3.12](https://github.com/ConnectingEurope/eInvoicing-EN16931/releases/tag/validation-1.3.12)
* EDIFACT: **v1.0.0** (2018-02-08) - https://github.com/ConnectingEurope/eInvoicing-EN16931/releases/tag/eInvoicing-EN16931-1.0.0

For each syntax a separate folder exists where all related artefacts are to be published.
Expand All @@ -31,6 +31,12 @@ That was Licensed under the Apache License, Version 2.0

# News and noteworthy

* v1.3.12 - 2024-04-10 (UBL and CII only)
* See all fixed issues: https://github.com/ConnectingEurope/eInvoicing-EN16931/issues?q=is%3Aissue+is%3Aclosed+milestone%3A1.3.12
* v1.3.11 - 2023-10-04 (UBL and CII only)
* See all fixed issues: https://github.com/ConnectingEurope/eInvoicing-EN16931/issues?q=is%3Aissue+is%3Aclosed+milestone%3A1.3.11
* v1.3.10 - 2023-04-11 (UBL and CII only)
* See all fixed issues: https://github.com/ConnectingEurope/eInvoicing-EN16931/issues?q=is%3Aissue+is%3Aclosed+milestone%3A1.3.10
* v1.3.9 - 2022-10-10 (UBL and CII only)
* See all fixed issues: https://github.com/ConnectingEurope/eInvoicing-EN16931/issues?q=is%3Aissue+is%3Aclosed+milestone%3A1.3.9
* Updated code lists and minor fixes
Expand Down
39 changes: 22 additions & 17 deletions pom-license.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>1.11.4</version>
<version>2.0.6</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.3.12</version>
Expand All @@ -30,22 +30,27 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>templates/license-template.txt</header>
<excludes>
<exclude>**/.git*</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
<exclude>**/*.pdf</exclude>
<exclude>**/*.doc</exclude>
<exclude>**/*.docx</exclude>
<exclude>**/*.ods</exclude>
<exclude>**/*.TXT</exclude>
<exclude>**/*.cmd</exclude>
<exclude>**/*.sh</exclude>
<exclude>cii/schema/**</exclude>
<exclude>edifact/examples/**</exclude>
<exclude>edifact/schema/**</exclude>
</excludes>
<licenseSets>
<licenseSet>
<header>templates/license-template.txt</header>
<excludes>
<exclude>**/.git*</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
<exclude>**/*.pdf</exclude>
<exclude>**/*.doc</exclude>
<exclude>**/*.docx</exclude>
<exclude>**/*.ods</exclude>
<exclude>**/*.TXT</exclude>
<exclude>**/*.cmd</exclude>
<exclude>**/*.sh</exclude>
<exclude>**/*.asice</exclude>
<exclude>cii/schema/**</exclude>
<exclude>edifact/examples/**</exclude>
<exclude>edifact/schema/**</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down
6 changes: 4 additions & 2 deletions pom-preprocess.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>1.11.4</version>
<version>2.0.6</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.3.12</version>
Expand All @@ -29,7 +29,7 @@
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>6.3.0</version>
<version>8.0.3</version>
<executions>
<execution>
<id>cii</id>
Expand All @@ -39,6 +39,7 @@
<configuration>
<sourceFile>${basedir}/cii/schematron/EN16931-CII-validation.sch</sourceFile>
<targetFile>${basedir}/cii/schematron/preprocessed/EN16931-CII-validation-preprocessed.sch</targetFile>
<keepTitles>true</keepTitles>
</configuration>
</execution>
<!--
Expand All @@ -61,6 +62,7 @@
<configuration>
<sourceFile>${basedir}/ubl/schematron/EN16931-UBL-validation.sch</sourceFile>
<targetFile>${basedir}/ubl/schematron/preprocessed/EN16931-UBL-validation-preprocessed.sch</targetFile>
<keepTitles>true</keepTitles>
</configuration>
</execution>
</executions>
Expand Down
4 changes: 2 additions & 2 deletions pom-validate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>1.11.4</version>
<version>2.0.6</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.3.12</version>
Expand All @@ -29,7 +29,7 @@
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>6.3.0</version>
<version>8.0.3</version>
<executions>
<execution>
<id>cii</id>
Expand Down
67 changes: 67 additions & 0 deletions pom-xslt-preprocessed.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under European Union Public Licence (EUPL) version 1.2.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>2.0.6</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.3.12</version>
<name>centc434-validation-rules</name>
<description>EN16931 - CEN/TC 434 validation rules</description>
<url>https://github.com/CenPC434/validation</url>
<inceptionYear>2016</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>8.0.3</version>
<executions>
<!--
-->
<execution>
<id>cii</id>
<goals>
<goal>convert</goal>
</goals>
<configuration>
<schematronDirectory>${basedir}/cii/schematron/preprocessed</schematronDirectory>
<xsltDirectory>${basedir}/cii/xslt</xsltDirectory>
</configuration>
</execution>
<!--
-->
<execution>
<id>ubl</id>
<goals>
<goal>convert</goal>
</goals>
<configuration>
<schematronDirectory>${basedir}/ubl/schematron/preprocessed</schematronDirectory>
<xsltDirectory>${basedir}/ubl/xslt</xsltDirectory>
</configuration>
</execution>
</executions>
<configuration>
<schematronPattern>*.sch</schematronPattern>
<xsltHeader> Schematron version 1.3.12 - Last update: 2024-04-06 </xsltHeader>
<showProgress>true</showProgress>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions pom-xslt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>1.11.4</version>
<version>2.0.6</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.3.12</version>
Expand All @@ -29,7 +29,7 @@
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>6.3.0</version>
<version>8.0.3</version>
<executions>
<!--
-->
Expand Down

0 comments on commit 4f2a818

Please sign in to comment.