buggy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy</artifactId>
<version>0.3.7-beta</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>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy</artifactId>
<name>Buggy</name>
<version>0.3.7-beta</version>
<packaging>pom</packaging>
<description>Buggy is an add-on to TestNG for quickly creating test projects and easily customizing the launch of automated tests.</description>
<modules>
<module>buggy-core</module>
<module>buggy-feign</module>
<module>buggy-min-example</module>
<module>buggy-okhttp</module>
<module>buggy-testrail</module>
</modules>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>manual</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git@gitlab.com:TouchBIT/Buggy.git</connection>
<developerConnection>scm:git@gitlab.com:TouchBIT/Buggy.git</developerConnection>
<url>https://gitlab.com/TouchBIT/Buggy</url>
</scm>
<organization>
<name>TouchBIT</name>
<url>https://touchbit.org/</url>
</organization>
<inceptionYear>2018</inceptionYear>
<url>https://buggy.readthedocs.io/</url>
<developers>
<developer>
<id>oleg.shaburov</id>
<name>Oleg Shaburov</name>
<email>shaburov.o.a@gmail.com</email>
<roles>
<role>owner</role>
</roles>
<timezone>+3</timezone>
</developer>
</developers>
<issueManagement>
<system>GitLab</system>
<url>https://gitlab.com/TouchBIT/Buggy/issues</url>
</issueManagement>
<ciManagement>
<system>GitLabCI</system>
<url>https://gitlab.com/TouchBIT/Buggy/pipelines</url>
</ciManagement>
<properties>
<jdk.version>1.8</jdk.version>
<file.encoding>UTF-8</file.encoding>
<source.encoding>UTF-8</source.encoding>
<maven.compiler.source>${jdk.version}</maven.compiler.source>
<maven.compiler.target>${jdk.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<log4j.version>2.9.1</log4j.version>
<junit.jupiter.version>5.5.0</junit.jupiter.version>
<feign.version>10.2.3</feign.version>
<sonar.host.url>https://touchbit.org/sonar/</sonar.host.url>
<sonar.projectKey>org.touchbit:buggy</sonar.projectKey>
<sonar.coverage.exclusions>
**/*.xml,
src/test/**/*,
src/main/java/org/touchbit/buggy/example/min/**/*
</sonar.coverage.exclusions>
<sonar.exclusions/>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<reports.path>${project.build.directory}/reports</reports.path>
<sonar.junit.reportPaths>${reports.path}</sonar.junit.reportPaths>
<sonar.jacoco.reportPaths>${reports.path}/jacoco.exec</sonar.jacoco.reportPaths>
<jacoco.version>0.8.1</jacoco.version>
<shaded.transformer>org.apache.maven.plugins.shade.resource.ManifestResourceTransformer</shaded.transformer>
<shaded.transformer.main.class>org.touchbit.buggy.core.Buggy</shaded.transformer.main.class>
<shaded.final.name>Buggy</shaded.final.name>
<distributionRepository>https://touchbit.org/repository/</distributionRepository>
</properties>
<repositories>
<repository>
<id>spring.plugins.repository</id>
<url>http://repo.spring.io/plugins-release/</url>
</repository>
<!--<repository>
<id>touchbit.org.repository</id>
<url>https://touchbit.org/repository/</url>
</repository>-->
</repositories>
<dependencies>
<!-- TEST SCOPE -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>2.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- Self -->
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-core</artifactId>
<version>0.3.7-beta</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-feign</artifactId>
<version>0.3.7-beta</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-okhttp</artifactId>
<version>0.3.7-beta</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-testrail</artifactId>
<version>0.3.7-beta</version>
<scope>compile</scope>
</dependency>
<!-- Self Test -->
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-core</artifactId>
<version>0.3.7-beta</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- Compile -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.1.1</version>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.74</version>
</dependency>
<dependency>
<groupId>org.atteo.classindex</groupId>
<artifactId>classindex</artifactId>
<version>3.7</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.touchbit.testrail4j</groupId>
<artifactId>jackson2-feign-client</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>${feign.version}</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<!-- Utils -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>17.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<goals>
<goal>update-child-modules</goal>
</goals>
<executions>
<execution>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
</dependency>
</dependencies>
<configuration>
<useSystemClassLoader>true</useSystemClassLoader>
<reportsDirectory>${sonar.junit.reportPaths}</reportsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>${sonar.jacoco.reportPaths}</destFile>
</configuration>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${sonar.jacoco.reportPaths}</dataFile>
<outputDirectory>${reports.path}/jacoco</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.0.905</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>Build executable jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${shaded.final.name}</finalName>
<outputDirectory>${project.build.directory}</outputDirectory>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="${shaded.transformer}">
<mainClass>${shaded.transformer.main.class}</mainClass>
<manifestEntries>
<Version>${project.version}</Version>
</manifestEntries>
</transformer>
<transformer implementation="org.atteo.classindex.ClassIndexTransformer"/>
</transformers>
<shadedClassifierName>executable</shadedClassifierName>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.atteo.classindex</groupId>
<artifactId>classindex-transformer</artifactId>
<version>3.7</version>
</dependency>
</dependencies>
</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.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>
<configuration>
<pomFile>pom.xml</pomFile>
<updateReleaseInfo>true</updateReleaseInfo>
<createChecksum>true</createChecksum>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<goals>
<goal>artifacts</goal>
</goals>
<phase>install</phase>
</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>install</phase>
<configuration>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
<detectOfflineLinks>false</detectOfflineLinks>
</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>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>deploy</goal>
</goals>
<phase>deploy</phase>
<configuration>
<serverId>sonatype</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<updateReleaseInfo>true</updateReleaseInfo>
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<skip.deploy.test.jar>false</skip.deploy.test.jar>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<goals>
<goal>dependencies</goal>
</goals>
<executions>
<execution>
<phase>package</phase>
</execution>
</executions>
<configuration>
<outputDirectory>${project.build.directory}/dependencies</outputDirectory>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<detail>false</detail>
<offline>true</offline>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>nexus-deploy</id>
<activation>
<property>
<name>sonatype-nexus-deploy</name>
<value>true</value>
</property>
</activation>
<properties>
<skip.deploy.test.jar>true</skip.deploy.test.jar>
<skipTests>true</skipTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-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>
</build>
</profile>
</profiles>
<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>
</project>