-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #394 from phax/master
Updated readme and utility version
- Loading branch information
Showing
6 changed files
with
104 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters