Skip to content

Commit

Permalink
Started Zugferd validation
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Dec 5, 2024
1 parent 3d26bed commit 3ba766f
Show file tree
Hide file tree
Showing 26 changed files with 2,075 additions and 0 deletions.
1 change: 1 addition & 0 deletions phive-rules-zugferd/docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Source: https://www.ferd-net.de/standards/paket-downloads/index.html
Binary file added phive-rules-zugferd/docs/ZF232_DE.zip
Binary file not shown.
Binary file added phive-rules-zugferd/docs/ZF232_EN.zip
Binary file not shown.
Binary file added phive-rules-zugferd/docs/ZF23_DE.zip
Binary file not shown.
Binary file added phive-rules-zugferd/docs/ZF23_EN.zip
Binary file not shown.
Binary file added phive-rules-zugferd/docs/zugferd22de.zip
Binary file not shown.
Binary file added phive-rules-zugferd/docs/zugferd22en.zip
Binary file not shown.
21 changes: 21 additions & 0 deletions phive-rules-zugferd/findbugs-exclude.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
Copyright (C) 2020-2024 Philip Helger (www.helger.com)
philip[at]helger[dot]com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<FindBugsFilter>
<!-- Docs: http://findbugs.sourceforge.net/manual/filter.html -->
</FindBugsFilter>
96 changes: 96 additions & 0 deletions phive-rules-zugferd/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2020-2024 Philip Helger (www.helger.com)
philip[at]helger[dot]com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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.phive.rules</groupId>
<artifactId>phive-rules-parent-pom</artifactId>
<version>3.2.2-SNAPSHOT</version>
</parent>
<artifactId>phive-rules-zugferd</artifactId>
<packaging>bundle</packaging>
<name>phive-rules-zugferd</name>
<description>ZUGFeRD CII validation rules for phive</description>
<url>https://github.com/phax/phive-rules/phive-rules-zugferd</url>
<inceptionYear>2024</inceptionYear>

<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>

<organization>
<name>Philip Helger</name>
<url>http://www.helger.com</url>
</organization>

<developers>
<developer>
<id>philip</id>
<name>Philip Helger</name>
<email>ph(at)helger.com</email>
<url>http://www.helger.com</url>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-commons</artifactId>
</dependency>
<dependency>
<groupId>com.helger.phive.rules</groupId>
<artifactId>phive-rules-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Automatic-Module-Name>com.helger.phive.zugferd</Automatic-Module-Name>
<Export-Package>
com.helger.phive.zugferd
</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 3ba766f

Please sign in to comment.