argos-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.rabobank.argos</groupId> <artifactId>argos-service</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?><!-- Copyright (C) 2019 - 2020 Rabobank Nederland 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.rabobank.argos</groupId> <artifactId>argos-service</artifactId> <version>0.1.0</version> <name>Argos Service</name> <description>Argos service for Argos Supply Chain Notary</description> <url>https://github.com/argosnotary/argos-parent/argos-service</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>11</java.version> <spring-boot.version>2.2.2.RELEASE</spring-boot.version> <org.mapstruct.version>1.3.1.Final</org.mapstruct.version> <lombok.version>1.18.10</lombok.version> <sonar.exclusions>file:**/generated-sources/**</sonar.exclusions> <junit-jupiter.version>5.5.2</junit-jupiter.version> <swagger-annotations.version>1.5.23</swagger-annotations.version> <swagger-ui.version>3.24.3</swagger-ui.version> <pitest.version>1.4.10</pitest.version> <io.jsonwebtoken.version>0.10.7</io.jsonwebtoken.version> <bouncycastle.version>1.64</bouncycastle.version> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Gerard Borst</name> <email>gerard.borst@rabobank.nl</email> <organization>Rabobank</organization> <organizationUrl>https://www.rabobank.com</organizationUrl> </developer> <developer> <name>Bart Kors</name> <email>bart.kors@rabobank.nl</email> <organization>Rabobank</organization> <organizationUrl>https://www.rabobank.com</organizationUrl> </developer> <developer> <name>Michel Durieux</name> <email>michel.durieux@rabobank.nl</email> <organization>Rabobank</organization> <organizationUrl>https://www.rabobank.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/argosnotary/argos.git</connection> <developerConnection>scm:git:https://github.com/argosnotary/argos.git</developerConnection> <url>https://github.com/argosnotary/argos-parent/tree/master</url> </scm> <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> <build> <finalName>argos-service</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <!-- Download Swagger UI webjar. --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>copy-api</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>argos-service-api</artifactId> <version>${project.version}</version> <type>jar</type> <overWrite>true</overWrite> <excludes>META-INF/</excludes> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/classes/static/swagger</outputDirectory> </configuration> </execution> <execution> <id>swagger-ui</id> <phase>prepare-package</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.webjars</groupId> <artifactId>swagger-ui</artifactId> <version>${swagger-ui.version}</version> </artifactItem> </artifactItems> <excludes>**/*index.html</excludes> <outputDirectory>${project.build.directory}/swagger-ui</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <id>copy-swagger-ui</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/classes/static/swagger</outputDirectory> <resources> <resource> <directory> ${project.build.directory}/swagger-ui/META-INF/resources/webjars/swagger-ui/${swagger-ui.version} </directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.0.0</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> <phase>initialize</phase> </execution> </executions> <configuration> <generateGitPropertiesFile>true</generateGitPropertiesFile> <includeOnlyProperties> <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> </includeOnlyProperties> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> <executions> <execution> <goals> <goal>build-info</goal> <goal>repackage</goal> </goals> </execution> </executions> <configuration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> <annotationProcessorPaths> <path> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${org.mapstruct.version}</version> </path> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring-boot.version}</version> </path> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> <excludePackageNames>com.rabobank.argos.service.adapter.in.rest.api.*</excludePackageNames> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <goals> <goal>toolchain</goal> </goals> <configuration> <toolchains> <jdk> <version>11</version> </jdk> </toolchains> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <quiet>true</quiet> <failIfMissing>true</failIfMissing> <strictCheck>true</strictCheck> <aggregate>false</aggregate> <excludes> <exclude>target/**</exclude> </excludes> <header>https://raw.github.com/argosnotary/argos/master/docs/header.txt</header> <useDefaultExcludes>true</useDefaultExcludes> <properties> <lic.year>2020</lic.year> </properties> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <version>1.0.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>transform</goal> </goals> </execution> </executions> <configuration> <transformationSets> <transformationSet> <dir>${project.basedir}</dir> <includes>pom.xml</includes> <stylesheet>${project.basedir}/remove-dependencies.xsl</stylesheet> <outputDir>${project.build.directory}</outputDir> </transformationSet> </transformationSets> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <repositoryId>ossrh</repositoryId> <file>${project.build.directory}/${project.build.finalName}.jar</file> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <packaging>jar</packaging> <pomFile>${project.build.directory}/pom.xml</pomFile> <files> ${project.build.directory}/${project.build.finalName}.jar.asc,${project.build.directory}/${project.build.finalName}-sources.jar.asc,${project.build.directory}/${project.build.finalName}-javadoc.jar.asc,${project.build.directory}/pom.xml.asc </files> <types>jar.asc,jar.asc,jar.asc,pom.asc</types> <classifiers>,sources,javadoc,</classifiers> <sources>${project.build.directory}/${project.build.finalName}-sources.jar</sources> <javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>pitest</id> <build> <plugins> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>${pitest.version}</version> <executions> <execution> <phase>verify</phase> <goals> <goal>mutationCoverage</goal> </goals> </execution> </executions> <configuration> <threads>4</threads> <timeoutConstant>10000</timeoutConstant> <timestampedReports>false</timestampedReports> <mutationThreshold>90</mutationThreshold> <coverageThreshold>90</coverageThreshold> <failWhenNoMutations>true</failWhenNoMutations> <reportsDirectory>${project.build.directory}/pi-report</reportsDirectory> <avoidCallsTo> <avoidCallsTo>org.slf4j</avoidCallsTo> </avoidCallsTo> <excludedClasses>com.rabobank.argos.service.security.SecurityConfig</excludedClasses> <targetClasses> <param>com.rabobank.argos.*</param> </targetClasses> <outputFormats> <format>XML</format> <format>HTML</format> </outputFormats> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>sonar</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.4</version> <executions> <!--genereer report voor elke submodule --> <execution> <id>reporting</id> <goals> <goal>prepare-agent</goal> <goal>report</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.6.1.1688</version> </plugin> </plugins> </build> </profile> </profiles> </project>