Skip to content

Commit

Permalink
Switched to 9.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Jan 22, 2024
1 parent 481834c commit 3257e78
Show file tree
Hide file tree
Showing 13 changed files with 1,676 additions and 1,675 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,10 @@ They depend on several other libraries so I suggest you are going for the Maven

# News and noteworthy

* v9.2.4 - work in progress
* v9.3.0 - work in progress
* Via `CRLCache.setDownloader` a custom downloader can be configured. The default solution uses the Java runtime HttpURLConnection.
* `PredefinedProcessIdentifierManager` now internally works with the full URI encoded process ID and not just the value
* Improved the CRL caching API and unified it with the Peppol certificate revocation checker cache
* v9.2.3 - 2024-01-10
* Changed the default checking mode in `CertificateRevocationChecker` from `OCSP` to `CRL_BEFORE_OCSP` due to https://github.com/phax/phase4/issues/124#issuecomment-1884398195
* v9.2.2 - 2024-01-08
Expand Down
2 changes: 1 addition & 1 deletion peppol-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.helger.peppol</groupId>
<artifactId>peppol-commons-parent-pom</artifactId>
<version>9.2.4-SNAPSHOT</version>
<version>9.3.0-SNAPSHOT</version>
</parent>
<artifactId>peppol-commons</artifactId>
<packaging>bundle</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ public final IMPLTYPE executionDurationWarn (@Nullable final Duration a)
* @param a
* The cache to be used. Must not be <code>null</code>.
* @return this for chaining
* @since 9.2.4
* @since 9.3.0
*/
@Nonnull
public final IMPLTYPE crlCache (@Nonnull final CRLCache a)
Expand Down
314 changes: 157 additions & 157 deletions peppol-directory-businesscard/pom.xml
Original file line number Diff line number Diff line change
@@ -1,157 +1,157 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2015-2023 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.peppol</groupId>
<artifactId>peppol-commons-parent-pom</artifactId>
<version>9.2.4-SNAPSHOT</version>
</parent>
<artifactId>peppol-directory-businesscard</artifactId>
<packaging>bundle</packaging>
<name>peppol-directory-business</name>
<description>The Peppol Directory Business Card data model</description>
<url>https://github.com/phax/peppol-commons/peppol-directory-businesscard</url>
<inceptionYear>2015</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.commons</groupId>
<artifactId>ph-datetime</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-jaxb</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-jaxb-adapter</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-json</artifactId>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Automatic-Module-Name>com.helger.peppol.businesscard</Automatic-Module-Name>
<Export-Package>
com.helger.peppol.businesscard.generic,
com.helger.peppol.businesscard.helper,
com.helger.peppol.businesscard.v1,
com.helger.peppol.businesscard.v2,
com.helger.peppol.businesscard.v3
</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>${jaxb-plugin.group}</groupId>
<artifactId>${jaxb-plugin.artifact}</artifactId>
<version>${jaxb-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<bindingDirectory>${basedir}/src/main/jaxb</bindingDirectory>
<schemaDirectory>${basedir}/src/main/resources/schemas</schemaDirectory>
<extension>true</extension>
<specVersion>2.1</specVersion>
<args>
<arg>-no-header</arg>
<arg>-Xph-default-locale</arg>
<arg>en_US</arg>
<arg>-Xph-annotate</arg>
<arg>-Xph-fields-private</arg>
<arg>-Xph-code-quality</arg>
<arg>-Xph-implements</arg>
<arg>java.io.Serializable</arg>
<arg>-Xph-equalshashcode</arg>
<arg>-Xph-tostring</arg>
<arg>-Xph-list-extension</arg>
<arg>-Xph-csu</arg>
<arg>-Xph-cloneable2</arg>
</args>
</configuration>
<dependencies>
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-jaxb-plugin</artifactId>
<version>${ph-jaxb-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2015-2023 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.peppol</groupId>
<artifactId>peppol-commons-parent-pom</artifactId>
<version>9.3.0-SNAPSHOT</version>
</parent>
<artifactId>peppol-directory-businesscard</artifactId>
<packaging>bundle</packaging>
<name>peppol-directory-business</name>
<description>The Peppol Directory Business Card data model</description>
<url>https://github.com/phax/peppol-commons/peppol-directory-businesscard</url>
<inceptionYear>2015</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.commons</groupId>
<artifactId>ph-datetime</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-jaxb</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-jaxb-adapter</artifactId>
</dependency>
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-json</artifactId>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Automatic-Module-Name>com.helger.peppol.businesscard</Automatic-Module-Name>
<Export-Package>
com.helger.peppol.businesscard.generic,
com.helger.peppol.businesscard.helper,
com.helger.peppol.businesscard.v1,
com.helger.peppol.businesscard.v2,
com.helger.peppol.businesscard.v3
</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>${jaxb-plugin.group}</groupId>
<artifactId>${jaxb-plugin.artifact}</artifactId>
<version>${jaxb-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<bindingDirectory>${basedir}/src/main/jaxb</bindingDirectory>
<schemaDirectory>${basedir}/src/main/resources/schemas</schemaDirectory>
<extension>true</extension>
<specVersion>2.1</specVersion>
<args>
<arg>-no-header</arg>
<arg>-Xph-default-locale</arg>
<arg>en_US</arg>
<arg>-Xph-annotate</arg>
<arg>-Xph-fields-private</arg>
<arg>-Xph-code-quality</arg>
<arg>-Xph-implements</arg>
<arg>java.io.Serializable</arg>
<arg>-Xph-equalshashcode</arg>
<arg>-Xph-tostring</arg>
<arg>-Xph-list-extension</arg>
<arg>-Xph-csu</arg>
<arg>-Xph-cloneable2</arg>
</args>
</configuration>
<dependencies>
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-jaxb-plugin</artifactId>
<version>${ph-jaxb-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 3257e78

Please sign in to comment.