2023-01-07 00:50:42 +03:30
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>test-cli-fatjar</artifactId>
|
2024-11-18 17:01:09 -08:00
|
|
|
<version>1.50.0-SNAPSHOT</version>
|
2023-01-07 00:50:42 +03:30
|
|
|
<name>Test Playwright Command Line FatJar</name>
|
|
|
|
<properties>
|
|
|
|
<compiler.version>1.8</compiler.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2024-02-09 20:48:01 +01:00
|
|
|
<version>3.12.1</version>
|
2023-01-07 00:50:42 +03:30
|
|
|
<configuration>
|
|
|
|
<source>${compiler.version}</source>
|
|
|
|
<target>${compiler.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>playwright</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>driver-bundle</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|