hamster-selenium-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-parent</artifactId> <version>1.12.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright © 2021 the original author or authors. ~ ~ Licensed under the The MIT License (MIT) (the "License"); ~ You may obtain a copy of the License at ~ ~ https://mit-license.org/ ~ ~ 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-parent</artifactId> <packaging>pom</packaging> <version>1.12.0</version> <name>hamster-selenium-parent</name> <description>The framework to support selenium to be able to test against web applications built from modern front-end framework such as Material-UI </description> <url>https://github.com/grossopa/hamster-selenium</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Jack Yin</name> <email>grossopaforever@gmail.com</email> <organization>N/A</organization> <organizationUrl>https://github.com/grossopa/hamster-selenium/</organizationUrl> <roles> <role>Owner</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@github.com:grossopa/hamster-selenium.git</connection> <developerConnection>scm:git:git@github.com:grossopa/hamster-selenium.git</developerConnection> <url>http://github.com/grossopa/hamster-selenium/tree/main</url> <tag>1.12.0</tag> </scm> <modules> <module>hamster-selenium-core</module> <module>hamster-selenium-component-html</module> <module>hamster-selenium-component-materialui</module> <module>hamster-selenium-component-antdesign</module> <module>hamster-selenium-component-mat</module> <module>hamster-selenium-examples</module> <module>hamster-playwright</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>11</java.version> <!-- project dependencies --> <commons-lang3.version>3.17.0</commons-lang3.version> <commons-math3.version>3.6.1</commons-math3.version> <selenium-java.version>4.27.0</selenium-java.version> <!-- testing dependencies --> <junit-jupiter.version>RELEASE</junit-jupiter.version> <junit-platform-surefire-provider.version>RELEASE</junit-platform-surefire-provider.version> <mockito.version>RELEASE</mockito.version> <byte-buddy.version>RELEASE</byte-buddy.version> <openpojo.version>0.9.1</openpojo.version> <!-- Maven plugins --> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> <maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-source-plugin.version>2.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> <pitest-maven.version>1.5.2</pitest-maven.version> <pitest-junit5-plugin.version>0.14</pitest-junit5-plugin.version> <!-- CI --> <sonar.projectKey>grossopa_hamster-selenium</sonar.projectKey> <sonar.moduleKey>${project.artifactId}</sonar.moduleKey> <sonar.organization>grossopa</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> <sonar.language>java</sonar.language> </properties> <dependencyManagement> <dependencies> <!-- Projects --> <dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-component-html</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-component-materialui</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-component-mat</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.grossopa</groupId> <artifactId>hamster-selenium-component-antdesign</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium-java.version}</version> </dependency> <!-- Utils --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>${commons-math3.version}</version> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>${byte-buddy.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.openpojo</groupId> <artifactId>openpojo</artifactId> <version>${openpojo.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </dependency> <dependency> <groupId>com.openpojo</groupId> <artifactId>openpojo</artifactId> </dependency> </dependencies> <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> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>${pitest-maven.version}</version> <dependencies> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-junit5-plugin</artifactId> <version>${pitest-junit5-plugin.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <phase>initialize</phase> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <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>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>