Skip to content

Commit

Permalink
Started new submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Feb 3, 2025
1 parent b235e66 commit a236d06
Show file tree
Hide file tree
Showing 10 changed files with 1,122 additions and 0 deletions.
21 changes: 21 additions & 0 deletions peppol-ap-helper/findbugs-exclude.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
Copyright (C) 2014-2025 Philip Helger
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>
105 changes: 105 additions & 0 deletions peppol-ap-helper/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2014-2025 Philip Helger
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.7.3-SNAPSHOT</version>
</parent>
<artifactId>peppol-ap-helper</artifactId>
<packaging>bundle</packaging>
<name>peppol-ap-helper</name>
<description>Library having some commonly used helper functionality for Peppol Access Points</description>
<url>https://github.com/phax/peppol-commons/peppol-ap-helper</url>
<inceptionYear>2025</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.peppol</groupId>
<artifactId>peppol-id</artifactId>
</dependency>
<dependency>
<groupId>com.helger.peppol</groupId>
<artifactId>peppol-directory-businesscard</artifactId>
</dependency>
<dependency>
<groupId>com.helger.peppol</groupId>
<artifactId>peppol-smp-client</artifactId>
</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>
<extensions>true</extensions>
<configuration>
<instructions>
<Automatic-Module-Name>com.helger.peppol.sbdh</Automatic-Module-Name>
<Export-Package>
com.helger.peppol.aphelper
</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit a236d06

Please sign in to comment.