osci-bibliothek-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek-lib</artifactId> <version>2.4.4</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>de.osci</groupId> <artifactId>osci-client-bibliothek</artifactId> <version>2.4.4</version> </parent> <artifactId>osci-bibliothek-lib</artifactId> <packaging>pom</packaging> <properties> <!-- schema class generation (use 3.3.x version of plugin to be compatible with other dependencies) --> <cxf.xjc.version>3.3.3</cxf.xjc.version> <!-- dependencies names and versions --> <commonslogging.artifact.name>commons-logging</commonslogging.artifact.name> <commonslogging.version>1.2</commonslogging.version> <bouncycastle.version>1.80</bouncycastle.version> <servlet.api.artifact.name>javax.servlet-api</servlet.api.artifact.name> <servlet.api.version>4.0.1</servlet.api.version> <xsd-metadata.name>xsd-osci-messagemetadata</xsd-metadata.name> <xsd-metadata.version>2.0.2</xsd-metadata.version> <xsd-wss.name>xsd-oasis-200401-wss-wssecurity-secext</xsd-wss.name> <xsd-wss.version>1.0.0</xsd-wss.version> <xsd-ws-addr.name>xsd-ws-addr</xsd-ws-addr.name> <xsd-ws-addr.version>1.0.1</xsd-ws-addr.version> <xsd-xoev.name>xsd-xoev-basisdatentypen</xsd-xoev.name> <xsd-xoev.version>1.1.0</xsd-xoev.version> <jaxb-api.name>jakarta.xml.bind-api</jaxb-api.name> <jaxb-api.version>2.3.3</jaxb-api.version> <jaxb-impl.name>jaxb-impl</jaxb-impl.name> <jaxb-impl.version>2.3.7</jaxb-impl.version> <jakarta.activation-api.name>jakarta.activation-api</jakarta.activation-api.name> <jakarta.activation.name>jakarta.activation</jakarta.activation.name> <jakarta.activation.version>1.2.2</jakarta.activation.version> <slf4j.version>2.0.13</slf4j.version> </properties> <modules> <module>schema-ws-addr</module> <module>schema-xoev-basisdatentypen</module> <module>schema-wssecurity-secext</module> <module>schema-message-meta-data</module> <module>osci-schema</module> <module>osci-bibliothek</module> <module>osci-bibliothek-sample</module> <module>extension-message-meta-data</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>${servlet.api.artifact.name}</artifactId> <version>${servlet.api.version}</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>${commonslogging.artifact.name}</artifactId> <version>${commonslogging.version}</version> </dependency> <!-- JAXB for marshalling MMD--> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>${jaxb-api.name}</artifactId> <version>${jaxb-api.version}</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>${jaxb-impl.name}</artifactId> <version>${jaxb-impl.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>${bouncycastle.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek</artifactId> <type>test-jar</type> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <!-- schema class generation --> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-xjc-plugin</artifactId> <version>${cxf.xjc.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.5.0</version> </plugin> </plugins> </pluginManagement> </build> </project>