Skip to content

Commit

Permalink
Merge pull request #200 from storecove/feature/phase4-profile-dbnalli…
Browse files Browse the repository at this point in the history
…ance

Add DBNAlliance profile
  • Loading branch information
phax authored Dec 20, 2023
2 parents 2cbe9a7 + 2d691a5 commit 8c9fd26
Show file tree
Hide file tree
Showing 14 changed files with 2,162 additions and 1 deletion.
21 changes: 21 additions & 0 deletions phase4-profile-dbnalliance/findbugs-exclude.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
Copyright (C) 2020-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.
-->
<FindBugsFilter>
<!-- Docs: http://findbugs.sourceforge.net/manual/filter.html -->
</FindBugsFilter>
89 changes: 89 additions & 0 deletions phase4-profile-dbnalliance/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2020-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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.helger.phase4</groupId>
<artifactId>phase4-parent-pom</artifactId>
<version>2.6.1-SNAPSHOT</version>
</parent>
<artifactId>phase4-profile-dbnalliance</artifactId>
<packaging>bundle</packaging>
<name>phase4-profile-dbnalliance</name>
<description>DBNAlliance AS4 profile</description>
<url>https://github.com/phax/phase4/phase4-profile-dbnalliance</url>
<inceptionYear>2023</inceptionYear>

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

<dependencies>
<dependency>
<groupId>com.helger.phase4</groupId>
<artifactId>phase4-lib</artifactId>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</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>
<dependency>
<groupId>com.helger.photon</groupId>
<artifactId>ph-oton-app</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.phase4.profile.dbnalliance</Automatic-Module-Name>
<Export-Package>com.helger.phase4.profile.dbnalliance.*</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=com.helger.phase4.profile.IAS4ProfileRegistrarSPI</Provide-Capability>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 8c9fd26

Please sign in to comment.