signservice-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.swedenconnect.signservice</groupId> <artifactId>signservice-core</artifactId> <version>1.1.3</version> </dependency>
<!-- ~ Copyright 2022-2025 Sweden Connect ~ ~ 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> <artifactId>signservice-core</artifactId> <packaging>jar</packaging> <parent> <groupId>se.swedenconnect.signservice</groupId> <artifactId>signservice-parent</artifactId> <version>1.1.3</version> </parent> <name>Sweden Connect :: SignService :: Core</name> <description>SignService Core Library</description> <url>https://docs.swedenconnect.se/signservice</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/swedenconnect/signservice.git</connection> <developerConnection>scm:git:https://github.com/swedenconnect/signservice.git</developerConnection> <url>https://github.com/swedenconnect/signservice/tree/main</url> </scm> <organization> <name>Sweden Connect</name> <url>https://www.swedenconnect.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> <developer> <name>Magnus Hoflin</name> <email>magnus.hoflin@digg.se</email> <organization>DIGG</organization> <organizationUrl>https://www.digg.se</organizationUrl> </developer> <developer> <name>Henric Norlander</name> <email>extern.henric.norlander@digg.se</email> <organization>DIGG</organization> <organizationUrl>https://www.digg.se</organizationUrl> </developer> </developers> <properties> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!-- For Servlet-API specific classes --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>se.idsec.signservice.commons</groupId> <artifactId>signservice-commons</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <!-- Ignore coverage for exception classes --> <exclude>**/*Exception.class</exclude> <!-- Ignore simple enums --> <exclude>**/AuthenticationErrorCode.class</exclude> <exclude>**/*SignatureRequirement.class</exclude> <exclude>**/signature/SignatureType.class</exclude> <exclude>**/signature/AdESType.class</exclude> <exclude>**/engine/SignServiceErrorCode.class</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>SignService Core - ${project.version}</doctitle> <windowtitle>SignService Core - ${project.version}</windowtitle> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>