2020-09-25 11:43:29 -07: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>
|
|
|
|
|
2020-10-08 18:59:56 +03:00
|
|
|
<parent>
|
2020-12-01 14:59:42 -08:00
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
2020-12-10 12:23:00 -08:00
|
|
|
<artifactId>parent-pom</artifactId>
|
2023-01-23 11:55:26 -08:00
|
|
|
<version>1.30.0</version>
|
2020-10-08 18:59:56 +03:00
|
|
|
</parent>
|
|
|
|
|
2020-09-25 11:43:29 -07:00
|
|
|
<artifactId>playwright</artifactId>
|
2020-12-14 16:09:35 -08:00
|
|
|
<name>Playwright - Main Library</name>
|
2020-12-09 16:19:47 -08:00
|
|
|
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
|
|
|
|
Playwright is built to enable cross-browser web automation that is ever-green, capable,
|
|
|
|
reliable and fast.
|
|
|
|
|
2020-12-14 16:09:35 -08:00
|
|
|
This is the main package that provides Playwright client.
|
2020-12-09 16:19:47 -08:00
|
|
|
</description>
|
2020-10-08 18:59:56 +03:00
|
|
|
|
2020-09-25 11:43:29 -07:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-10-08 18:59:56 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-12-10 22:08:20 -08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-12-11 08:50:58 -08:00
|
|
|
<subpackages>com.microsoft.playwright</subpackages>
|
|
|
|
<excludePackageNames>com.microsoft.playwright.impl</excludePackageNames>
|
2020-12-10 22:08:20 -08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-09-25 11:43:29 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-10-08 18:59:56 +03:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2020-09-25 11:43:29 -07:00
|
|
|
</plugin>
|
2021-10-21 18:22:00 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-09-25 11:43:29 -07:00
|
|
|
</plugins>
|
2021-10-21 18:22:00 -07:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<targetPath>resources</targetPath>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2020-09-25 11:43:29 -07:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
2021-03-02 18:13:27 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.java-websocket</groupId>
|
|
|
|
<artifactId>Java-WebSocket</artifactId>
|
|
|
|
</dependency>
|
2020-10-08 18:59:56 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
</dependency>
|
2022-01-18 12:22:15 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.opentest4j</groupId>
|
|
|
|
<artifactId>opentest4j</artifactId>
|
|
|
|
</dependency>
|
2020-12-11 13:54:59 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>driver</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>driver-bundle</artifactId>
|
|
|
|
</dependency>
|
2020-09-25 11:43:29 -07:00
|
|
|
</dependencies>
|
|
|
|
</project>
|