openmaqs-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.openmaqs</groupId> <artifactId>openmaqs-java</artifactId> <version>3.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.openmaqs</groupId> <artifactId>openmaqs-java</artifactId> <version>3.0.1</version> <packaging>pom</packaging> <name>OpenMAQS Framework</name> <description>A collection of testing libraries and convenience classes to accelerate startup automation efforts</description> <url>https://github.com/OpenMAQS/maqs-java</url> <inceptionYear>2017</inceptionYear> <organization> <name>OpenMAQS</name> <url>https://openmaqs.github.io/</url> </organization> <licenses> <license> <name>MIT</name> <url>https://github.com/OpenMAQS/openmaqs-java/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <organization>OpenMAQS Team</organization> <organizationUrl>https://openmaqs.github.io/</organizationUrl> </developer> </developers> <modules> <module>openmaqs-utilities</module> <module>openmaqs-base</module> <module>openmaqs-selenium</module> <module>openmaqs-appium</module> <module>openmaqs-webservices</module> <module>openmaqs-database</module> <module>openmaqs-cucumber</module> <module>openmaqs-accessibility</module> <module>openmaqs-playwright</module> </modules> <scm> <connection>scm:git:https://github.com/OpenMAQS/maqs-java.git</connection> <developerConnection>scm:git:https://github.com/OpenMAQS/maqs-java.git</developerConnection> <url>https://github.com/OpenMAQS/maqs-java</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/OpenMAQS/openmaqs-java/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/OpenMAQS/openmaqs-java/actions</url> </ciManagement> <properties> <puppycheckstyle.plugin.version>9.2.1</puppycheckstyle.plugin.version> <release.plugin.goals>deploy</release.plugin.goals> <edgedriver.version>5.16299</edgedriver.version> <mvncheckstyle.plugin.version>3.1.2</mvncheckstyle.plugin.version> <surefire.plugin.version>3.0.0-M6</surefire.plugin.version> <jacoco.version>0.8.7</jacoco.version> <compiler.plugin.version>3.8.1</compiler.plugin.version> <revision>3.0.0-SNAPSHOT</revision> <checkstyle.version>8.29</checkstyle.version> <selenium.version>4.8.0</selenium.version> <geckodriver.version>0.28.0</geckodriver.version> <testng.version>7.5</testng.version> <chromedriver.version>108.0.5359.71</chromedriver.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <checkstyle.plugin.version>2.17</checkstyle.plugin.version> <jdk.version>11</jdk.version> <javadoc.plugin.version>3.3.1</javadoc.plugin.version> <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> <release.plugin.profiles>release</release.plugin.profiles> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>5.1.0</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.accessibility</groupId> <artifactId>openmaqs-accessibility</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.appium</groupId> <artifactId>openmaqs-appium</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.base</groupId> <artifactId>openmaqs-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.cucumber</groupId> <artifactId>openmaqs-cucumber</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.database</groupId> <artifactId>openmaqs-database</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.selenium</groupId> <artifactId>openmaqs-selenium</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.utilities</groupId> <artifactId>openmaqs-utilities</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.webservices</groupId> <artifactId>openmaqs-webservices</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.openmaqs.playwright</groupId> <artifactId>openmaqs-playwright</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.2.7</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <showDeprecation>false</showDeprecation> <release>${jdk.version}</release> <workingDirectory>target/</workingDirectory> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>parse-version</id> <goals> <goal>parse-version</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>${release.plugin.profiles}</releaseProfiles> <arguments>-Dmaven.test.skip=true</arguments> <scmCommentPrefix>[skip ci]</scmCommentPrefix> <goals>${release.plugin.goals}</goals> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${mvncheckstyle.plugin.version}</version> <executions> <execution> <id>checkstyle</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <failOnWarnings>false</failOnWarnings> <failOnError>true</failOnError> <configLocation>maqs_checks.xml</configLocation> <encoding>${project.build.sourceEncoding}</encoding> <consoleOutput>true</consoleOutput> <linkXRef>false</linkXRef> <violationSeverity>warning</violationSeverity> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${puppycheckstyle.plugin.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <url>https://maven.pkg.github.com/OpenMAQS/maqs-java</url> </repository> <snapshotRepository> <id>github</id> <url>https://maven.pkg.github.com/OpenMAQS/maqs-java</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>ossrh</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>${jdk.version}</source> <doclint>none</doclint> <additionalparam>-Xdoclint:none</additionalparam> <workingDirectory>target/</workingDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <passphraseServerId>gpg</passphraseServerId> <keyname>${gpg.keyname}</keyname> <passphrase>${gpg.passphrase}</passphrase> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <maven.test.skip>true</maven.test.skip> </properties> </profile> <profile> <id>sonar</id> <build> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> </plugins> </build> <properties> <maven.test.skip>true</maven.test.skip> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.organization>openmaqs</sonar.organization> </properties> </profile> <profile> <id>testing</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>coverage-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.plugin.version}</version> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-testng</artifactId> <version>${surefire.plugin.version}</version> </dependency> </dependencies> <configuration> <parallel>methods</parallel> <threadCount>5</threadCount> <argLine>${argLine}</argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>