peppol-smp-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.holodeckb2b.bdxr.smp.client</groupId> <artifactId>peppol-smp-client</artifactId> <version>3.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.holodeckb2b.bdxr.smp.client</groupId> <artifactId>parent</artifactId> <version>3.2.0</version> </parent> <artifactId>peppol-smp-client</artifactId> <packaging>jar</packaging> <name>Holodeck SMP Client: PEPPOL SMP</name> <description> This project contains the Java classes needed to create a SMP client that can be used in the Peppol network. It supports the lookup Participants in the Peppol SML and processing of the SMP response XML documents as defined by the PEPPOL SMP specification's XSD. </description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>generic-smp-client</artifactId> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <!-- Dependencies for testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.holodeckb2b.commons</groupId> <artifactId>generic-utils</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <configuration> <sources> <source>src/main/resources/xsd/peppol-smp-1.0.xsd</source> </sources> </configuration> </plugin> </plugins> </build> </project>