2020-09-25 11:43:29 -07: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>
|
|
|
|
|
2020-12-18 18:42:11 -08:00
|
|
|
<groupId>com.microsoft.playwright</groupId>
|
2020-09-25 11:43:29 -07:00
|
|
|
<artifactId>api-generator</artifactId>
|
2023-11-20 11:36:57 -08:00
|
|
|
<version>1.40.0</version>
|
2020-12-14 16:09:35 -08:00
|
|
|
<name>Playwright - API Generator</name>
|
2020-12-18 18:42:11 -08:00
|
|
|
<description>
|
2020-12-09 16:19:47 -08:00
|
|
|
This is an internal module used to generate Java API from the upstream Playwright
|
|
|
|
definitions. It's an internal development module not intended for external use.
|
|
|
|
</description>
|
2020-12-18 18:42:11 -08:00
|
|
|
<properties>
|
|
|
|
<compiler.version>1.8</compiler.version>
|
2022-06-11 09:37:35 -07:00
|
|
|
<gson.version>2.8.9</gson.version>
|
2020-12-18 18:42:11 -08:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2020-12-09 16:19:47 -08:00
|
|
|
|
2020-09-25 11:43:29 -07:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-10-08 18:59:56 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-12-18 18:42:11 -08:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
2020-12-10 22:08:20 -08:00
|
|
|
<configuration>
|
2020-12-18 18:42:11 -08:00
|
|
|
<source>${compiler.version}</source>
|
|
|
|
<target>${compiler.version}</target>
|
2020-12-10 22:08:20 -08:00
|
|
|
</configuration>
|
2020-09-25 11:43:29 -07:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2020-12-18 18:42:11 -08:00
|
|
|
<version>${gson.version}</version>
|
2020-09-25 11:43:29 -07:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|