2020-12-18 18:42:11 -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>
|
|
|
|
|
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
|
|
|
<artifactId>update-version</artifactId>
|
2024-10-17 12:35:16 -07:00
|
|
|
<version>1.48.0</version>
|
2020-12-18 18:42:11 -08:00
|
|
|
<name>Playwright - Update Version in Documentation</name>
|
|
|
|
<description>
|
|
|
|
This is an internal module used to update versions in the documentation based on
|
|
|
|
current driver.
|
|
|
|
</description>
|
|
|
|
<properties>
|
|
|
|
<compiler.version>1.8</compiler.version>
|
|
|
|
<gson.version>2.8.6</gson.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>
|
2020-12-18 18:42:11 -08:00
|
|
|
<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>
|
|
|
|
</dependencies>
|
2021-03-06 08:04:03 -08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>snapshots-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
<releases><enabled>false</enabled></releases>
|
|
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2020-12-18 18:42:11 -08:00
|
|
|
</project>
|