signservice-integration-rest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-rest</artifactId> <version>2.3.2</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> <artifactId>signservice-integration-rest</artifactId> <groupId>se.idsec.signservice.integration</groupId> <packaging>jar</packaging> <version>2.3.2</version> <name>IDsec Solutions :: SignService :: Integration REST Service</name> <description>SignService Integration REST Service</description> <url>https://github.com/idsec-solutions/signservice-integration-rest</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-integration-rest.git</connection> <developerConnection>scm:git:https://github.com/idsec-solutions/signservice-integration-rest.git </developerConnection> <url>https://github.com/idsec-solutions/signservice-integration-rest/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> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>21</java.version> <sign.bom.version>2.2.1</sign.bom.version> <sign.api.version>2.3.1</sign.api.version> <sign.integration.version>2.3.2</sign.integration.version> <spring.boot.version>3.4.3</spring.boot.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>se.idsec.signservice.commons</groupId> <artifactId>signservice-bom</artifactId> <version>${sign.bom.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>se.swedenconnect.security</groupId> <artifactId>credentials-support</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-api</artifactId> <version>${sign.api.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-impl</artifactId> <version>${sign.integration.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-xml</artifactId> <version>${sign.integration.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-pdf</artifactId> <version>${sign.integration.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>se.idsec.signservice.commons</groupId> <artifactId>signservice-commons</artifactId> <version>2.2.1</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- Dependency convergence fixes --> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <version>2.36.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.13.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-impl</artifactId> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-xml</artifactId> </dependency> <dependency> <groupId>se.idsec.signservice.integration</groupId> <artifactId>signservice-integration-pdf</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>${java.version}</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <configuration> <delimiters> <delimiter>@</delimiter> </delimiters> <nonFilteredFileExtensions> <nonFilteredFileExtension>jks</nonFilteredFileExtension> <nonFilteredFileExtension>p12</nonFilteredFileExtension> </nonFilteredFileExtensions> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <executions> <execution> <id>repackage</id> <configuration> <classifier>exec</classifier> </configuration> </execution> <execution> <goals> <goal>build-info</goal> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <dependencyConvergence/> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <!-- Support for Docker --> <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>3.4.4</version> <configuration> <from> <image>openjdk:21-jdk</image> </from> <to> <image>${DOCKER_REPO}/idsec/${project.artifactId}</image> <tags> <tag>${project.version}</tag> </tags> </to> <container> <creationTime>USE_CURRENT_TIMESTAMP</creationTime> <jvmFlags> <jvmFlag>-Djava.net.preferIPv4Stack=true</jvmFlag> <jvmFlag>-Dorg.apache.xml.security.ignoreLineBreaks=true</jvmFlag> </jvmFlags> <labels> <org.opencontainers.image.source> https://github.com/idsec-solutions/signservice-integration-rest </org.opencontainers.image.source> <org.opencontainers.image.description>SignService Integration REST</org.opencontainers.image.description> <org.opencontainers.image.licenses>Apache-2.0</org.opencontainers.image.licenses> </labels> </container> </configuration> <executions> <execution> <phase>none</phase> <id>local</id> <goals> <goal>dockerBuild</goal> </goals> <configuration> <to> <image>${project.artifactId}</image> </to> </configuration> </execution> <execution> <id>default-cli</id> <phase>none</phase> <goals> <goal>build</goal> </goals> <configuration> <from> <platforms> <platform> <os>linux</os> <architecture>amd64</architecture> </platform> <platform> <os>linux</os> <architecture>arm64</architecture> </platform> </platforms> </from> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <!-- See http://central.sonatype.org/pages/apache-maven.html for setup --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <phase>process-sources</phase> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> <execution> <phase>process-test-sources</phase> <id>attach-test-sources</id> <goals> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doctitle>SignService Integration REST Service - ${project.version}</doctitle> <windowtitle>SignService Integration REST SERVICE - ${project.version}</windowtitle> <doclint>all,-missing</doclint> <detectJavaApiLink>true</detectJavaApiLink> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>