1
0
mirror of synced 2026-08-03 14:06:55 +00:00
Files

40 lines
1.3 KiB
XML
Raw Permalink Normal View History

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>
<description>
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>
<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>