2020-12-01 17:38:32 -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>
|
2020-12-10 12:23:00 -08:00
|
|
|
<artifactId>parent-pom</artifactId>
|
2026-06-29 11:21:16 -07:00
|
|
|
<version>1.61.0</version>
|
2020-12-01 17:38:32 -08:00
|
|
|
</parent>
|
2020-12-09 16:19:47 -08:00
|
|
|
|
2020-12-01 17:38:32 -08:00
|
|
|
<artifactId>driver</artifactId>
|
2020-12-14 16:09:35 -08:00
|
|
|
<name>Playwright - Driver</name>
|
2020-12-11 13:54:59 -08:00
|
|
|
<description>
|
2026-06-19 09:54:36 -07:00
|
|
|
API for launching the Playwright driver. Bundles the platform-independent playwright-core
|
|
|
|
|
package; the Node.js binary comes from the driver-bundle module or a preinstalled Node.js.
|
2020-12-09 16:19:47 -08:00
|
|
|
</description>
|
|
|
|
|
|
2020-12-01 17:38:32 -08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2026-06-19 09:54:36 -07:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- The playwright-core package lives in src/main/resources and must not be packaged
|
|
|
|
|
into the sources JAR (see issue #1913). -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludeResources>true</excludeResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2020-12-01 17:38:32 -08:00
|
|
|
</project>
|