taurus-java-helpers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.blazemeter</groupId>
<artifactId>taurus-java-helpers</artifactId>
<version>1.27</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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<scm>
<connection>scm:git:https://github.com/Blazemeter/taurus-java-helpers.git</connection>
<developerConnection>scm:git:https://github.com/Blazemeter/taurus-java-helpers.git</developerConnection>
<url>https://github.com/Blazemeter/taurus-java-helpers</url>
<tag>taurus-java-helpers-1.27</tag>
</scm>
<groupId>com.blazemeter</groupId>
<artifactId>taurus-java-helpers</artifactId>
<version>1.27</version>
<name>Taurus Java Helpers</name>
<description>Taurus Java Helpers</description>
<developers>
<developer>
<id>zmaly</id>
<name>Zdenek Maly</name>
<email>zmaly@perforce.com</email>
<organization>BlazeMeter</organization>
<organizationUrl>https://www.blazemeter.com</organizationUrl>
<roles>
<role>maintainer</role>
</roles>
<timezone>UTC</timezone>
</developer>
<!-- Add more developers as needed -->
</developers>
<repositories>
<repository>
<id>clojars</id>
<name>Clojars repo</name>
<url>https://repo.clojars.org/</url>
</repository>
<repository>
<id>mvn</id>
<name>Clojars repo</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<arguments>javadoc:jar source:jar -DskipTests</arguments>
<checkModificationExcludes>
<checkModificationExclude>**</checkModificationExclude>
</checkModificationExcludes>
<useReleaseProfile>true</useReleaseProfile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<homedir>${gpg.homedir}</homedir>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://central.sonatype.com/api/v1/publish</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>net.sf.grinder</groupId>
<artifactId>grinder</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.10.3</version>
<!--<scope>test</scope>-->
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>1.10.3</version>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.3</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.48.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.10.2</version>
</dependency>
</dependencies>
</project>