mirror of
https://github.com/microsoft/playwright-java.git
synced 2025-09-08 21:01:00 +00:00
91 lines
2.9 KiB
XML
91 lines
2.9 KiB
XML
<?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>
|
|
<version>1.50.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>playwright</artifactId>
|
|
<name>Playwright - Main Library</name>
|
|
<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.
|
|
|
|
This is the main package that provides Playwright client.
|
|
</description>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration combine.self="append">
|
|
<subpackages>com.microsoft.playwright</subpackages>
|
|
<excludePackageNames>com.microsoft.playwright.impl</excludePackageNames>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/test/resources</directory>
|
|
<targetPath>resources</targetPath>
|
|
</testResource>
|
|
</testResources>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.java-websocket</groupId>
|
|
<artifactId>Java-WebSocket</artifactId>
|
|
</dependency>
|
|
<!--
|
|
The following slf4j-simple dependency resolves the warning:
|
|
'SLF4J(W): No SLF4J providers were found.'
|
|
This warning is produced by the org.java-websocket library.
|
|
-->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.opentest4j</groupId>
|
|
<artifactId>opentest4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
<artifactId>driver</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
<artifactId>driver-bundle</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|