2020-12-11 13:54:59 -08:00
|
|
|
<?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>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>parent-pom</artifactId>
|
2024-05-17 09:10:14 -07:00
|
|
|
<version>1.44.0</version>
|
2020-12-11 13:54:59 -08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>driver-bundle</artifactId>
|
2020-12-14 16:09:35 -08:00
|
|
|
<name>Playwright - Drivers For All Platforms</name>
|
2020-12-11 13:54:59 -08:00
|
|
|
<description>
|
2021-10-21 23:40:17 -07:00
|
|
|
This module includes Playwright driver and related utilities for all supported platforms.
|
2020-12-11 13:54:59 -08:00
|
|
|
It is intended to be used on the systems where Playwright driver is not preinstalled.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>driver</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|