lightning-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.aerokube.lightning</groupId> <artifactId>lightning-parent</artifactId> <version>1.3.1</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>com.aerokube.lightning</groupId> <artifactId>lightning-parent</artifactId> <version>1.3.1</version> <packaging>pom</packaging> <name>Lightning Parent</name> <description>Lightweight and lightning fast WebDriver client library for Java and related components</description> <url>https://github.com/aerokube/lightning-java</url> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <surefire-plugin.version>2.22.2</surefire-plugin.version> <source-plugin.version>3.2.1</source-plugin.version> <javadoc-plugin.version>3.3.1</javadoc-plugin.version> <gpg-plugin.version>3.0.1</gpg-plugin.version> <nexus-plugin.version>1.6.8</nexus-plugin.version> <junit-jupiter.version>5.8.2</junit-jupiter.version> <hamcrest.version>2.2</hamcrest.version> <testcontainers.version>1.17.1</testcontainers.version> <slf4j-log4j12.version>1.7.36</slf4j-log4j12.version> </properties> <modules> <module>lightning</module> <module>lightning-adapter</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>com.aerokube.lightning</groupId> <artifactId>lightning</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-log4j12.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${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>${javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <organization> <name>Aerokube</name> <url>https://aerokube.com/</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <url>https://github.com/aerokube/lightning-java</url> <connection>scm:git@github.com:aerokube/lightning-java.git</connection> <developerConnection>scm:git:git@github.com:aerokube/lightning-java.git</developerConnection> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/aerokube/lightning-java/issues</url> </issueManagement> <ciManagement> <system>Github Actions</system> <url>https://github.com/aerokube/lightning-java/actions</url> </ciManagement> <developers> <developer> <id>vania-pooh</id> <name>Ivan Krutov</name> <email>vania-pooh@aerokube.com</email> <organization>Aerokube</organization> </developer> <developer> <id>aandryashin</id> <name>Alexander Andryashin</name> <email>aandryashin@aerokube.com</email> <organization>Aerokube</organization> </developer> </developers> </project>