signservice-commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.idsec.signservice.commons</groupId> <artifactId>signservice-commons</artifactId> <version>2.3.1</version> </dependency>
<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> <artifactId>signservice-commons</artifactId> <packaging>jar</packaging> <parent> <groupId>se.idsec.signservice.commons</groupId> <artifactId>signservice-commons-parent</artifactId> <version>2.3.1</version> </parent> <name>IDsec Solutions :: SignService :: Commons :: Utilities</name> <description>SignService XML Commons</description> <url>https://github.com/idsec-solutions/signservice-commons</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/idsec-solutions/signservice-commons.git</connection> <developerConnection>scm:git:https://github.com/idsec-solutions/signservice-commons.git</developerConnection> <url>https://github.com/idsec-solutions/signservice-commons/tree/master</url> </scm> <organization> <name>IDsec Solutions AB</name> <url>https://www.idsec.se</url> </organization> <developers> <developer> <name>Martin Lindström</name> <email>martin@idsec.se</email> <organization>IDsec Solutions AB</organization> <organizationUrl>https://www.idsec.se</organizationUrl> </developer> <developer> <name>Stefan Santesson</name> <email>stefan@idsec.se</email> <organization>IDsec Solutions AB</organization> <organizationUrl>https://www.idsec.se</organizationUrl> </developer> </developers> <properties> </properties> <dependencies> <!-- XML Security --> <dependency> <groupId>org.apache.santuario</groupId> <artifactId>xmlsec</artifactId> </dependency> <!-- Bouncy Castle --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> </dependency> <!-- Credentials support --> <dependency> <groupId>se.swedenconnect.security</groupId> <artifactId>credentials-support</artifactId> </dependency> <dependency> <groupId>se.swedenconnect.security</groupId> <artifactId>algorithm-registry</artifactId> </dependency> <!-- Misc --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- Test --> <dependency> <groupId>se.swedenconnect.opensaml</groupId> <artifactId>opensaml-security-ext</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>SignService Commons - ${project.version}</doctitle> <windowtitle>SignService Commons - ${project.version}</windowtitle> </configuration> </plugin> </plugins> </build> </project>