parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>parent</artifactId>
<version>2.2.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ MIT License
~
~ Copyright © 2020 TouchBIT.
~ Copyright © 2020 Oleg Shaburov.
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in all
~ copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
~ SOFTWARE.
-->
<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>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>parent</artifactId>
<version>2.2.1</version>
<packaging>pom</packaging>
<name>TestRail4J parent</name>
<url>https://github.com/touchbit/testrail4j</url>
<description>Parent pom for TestRail4J modules</description>
<issueManagement>
<url>https://github.com/touchbit/testrail4j/issues</url>
<system>GitHub</system>
</issueManagement>
<licenses>
<license>
<name>MIT License</name>
<url>https://choosealicense.com/licenses/mit/</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:touchbit/testrail4j.git</connection>
<developerConnection>scm:git:git@github.com:touchbit/testrail4j.git</developerConnection>
<url>https://github.com/touchbit/testrail4j</url>
</scm>
<developers>
<developer>
<id>oleg.shaburov</id>
<name>Oleg Shaburov</name>
<email>shaburov.o.a@gmail.com</email>
<url>https://shaburov.github.io/</url>
<roles>
<role>Owner</role>
</roles>
<timezone>+3</timezone>
</developer>
</developers>
<modules>
<module>testrail4j-integration-tests</module>
<module>testrail4j-test-core</module>
<module>testrail4j-schema</module>
<module>testrail4j-core</module>
<module>gson-feign-client</module>
<module>jackson2-feign-client</module>
<module>gson-api-model</module>
<module>jackson2-api-model</module>
</modules>
<properties>
<jdk.version>1.8</jdk.version>
<encoding>UTF-8</encoding>
<maven.compiler.source>${jdk.version}</maven.compiler.source>
<maven.compiler.target>${jdk.version}</maven.compiler.target>
<file.encoding>${encoding}</file.encoding>
<source.encoding>${encoding}</source.encoding>
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>
<sonar.sources>src/main</sonar.sources>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>touchbit</sonar.organization>
<sonar.projectName>Testrail4J</sonar.projectName>
<sonar.projectKey>${project.groupId}:testrail4j</sonar.projectKey>
<sonar.java.binaries>target/classes</sonar.java.binaries>
<sonar.java.test.binaries>target/test-classes</sonar.java.test.binaries>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.skippedModules>testrail4j-integration-tests, testrail4j-test-core, jackson2-api-model, gson-api-model</sonar.skippedModules>
<testrail4j.sonar.exclusions>
**/*.xml,
**/src/main/java/org/touchbit/testrail4j/**/model/*,
**/src/main/java/org/touchbit/testrail4j/**/model/**/*
</testrail4j.sonar.exclusions>
<sonar.exclusions>${testrail4j.sonar.exclusions}</sonar.exclusions>
<sonar.coverage.exclusions>${testrail4j.sonar.exclusions}</sonar.coverage.exclusions>
<sonar.cpd.exclusions>**/src/main/java/org/touchbit/testrail4j/**/feign/client/*</sonar.cpd.exclusions>
<model.annotation.lib>none</model.annotation.lib>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>testrail4j-core</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>jackson2-api-model</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>jackson2-feign-client</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>gson-api-model</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>11.0</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-jackson</artifactId>
<version>11.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-gson</artifactId>
<version>11.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0-alpha1</version>
</dependency>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>testrail4j-test-core</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
<allowIncrementalUpdates>true</allowIncrementalUpdates>
<processAllModules>true</processAllModules>
<updateMatchingVersions>true</updateMatchingVersions>
</configuration>
<executions>
<execution>
<id>dependency-updates</id>
<phase>compile</phase>
<goals>
<goal>display-dependency-updates</goal>
</goals>
<configuration>
<outputFile>dependency-updates.txt</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5 </version>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<phase>compile</phase>
</execution>
</executions>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>${source.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
<version>1.0.2</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<sourceDirectory>
${project.parent.basedir}/testrail4j-schema/src/main/resources/schema
</sourceDirectory>
<outputDirectory>src/main/java</outputDirectory>
<targetPackage>org.touchbit.testrail4j.${model.annotation.lib}.model</targetPackage>
<generateBuilders>true</generateBuilders>
<includeConstructors>true</includeConstructors>
<annotationStyle>${model.annotation.lib}</annotationStyle>
<removeOldOutput>true</removeOldOutput>
<useLongIntegers>true</useLongIntegers>
<includeAdditionalProperties>true</includeAdditionalProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<goals>
<goal>tree</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<scope>compile</scope>
<outputFile>${project.build.directory}/info/${project.artifactId}.txt</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.parent.basedir}/docs/dependencies/</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/info/</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>install</phase>
</execution>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<phase>install</phase>
<id>install-jar</id>
<configuration>
<file>target/${project.artifactId}-${project.version}.jar</file>
<sources>target/${project.artifactId}-${project.version}-sources.jar</sources>
<pomFile>dependency-reduced-pom.xml</pomFile>
<updateReleaseInfo>true</updateReleaseInfo>
<createChecksum>true</createChecksum>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<phase>deploy</phase>
<configuration>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
<detectOfflineLinks>false</detectOfflineLinks>
<source>8</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase/>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype</id>
<name>Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>