Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3.2 #23

Merged
merged 9 commits into from
Sep 16, 2024
Merged

V3.2 #23

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,14 @@ I hope that with the introduction of PINT, the versioning problem will be solved

# News and noteworthy

* v3.2.0 - work in progress
* Updated to ph-diver 3.0.1
* Updated to phive 10
* Marked Peppol Rules 2023-11 as deprecated
* Removed old Peppol rules before 2020 (3.5.0 to 3.9.1)
* This lead to eFFF invoice also being removed, as it was depending on Peppol 3.7.0 rules
* Removed old Peppol Thirdparty rules (AT BIS2 based) (class `PeppolLegacyThirdpartyValidation`)
* Renamed class `EHFValidationG3` to `EHFValidationG3_2020_03`
* v3.1.13 - 2024-09-06
* Added support for Peppol Italy rules 3.1.0 (AGID Credit Note, Despatch Advice, Invoice, Order, Order Agreement and Order Response), Italian version
* v3.1.12 - 2024-07-29
Expand Down
21 changes: 21 additions & 0 deletions phive-rules-api/findbugs-exclude.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--

Copyright (C) 2018-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>
123 changes: 123 additions & 0 deletions phive-rules-api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (C) 2018-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.0-SNAPSHOT</version>
</parent>
<artifactId>phive-rules-api</artifactId>
<packaging>bundle</packaging>
<name>phive-rules-api</name>
<description>phive-rules API</description>
<url>https://github.com/phax/phive-rules/phive-rules-api</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>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.helger.phive</groupId>
<artifactId>phive-xml</artifactId>
</dependency>
<dependency>
<groupId>com.helger.cii</groupId>
<artifactId>ph-cii-d16b</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.helger.ubl</groupId>
<artifactId>ph-ubl20</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.helger.ubl</groupId>
<artifactId>ph-ubl21</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.helger.ubl</groupId>
<artifactId>ph-ubl22</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.helger.ubl</groupId>
<artifactId>ph-ubl23</artifactId>
<optional>true</optional>
</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.rules.api</Automatic-Module-Name>
<Export-Package>
com.helger.phive.rules.api
</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading
Loading