chore: update subprojects metadata (#105)

This commit is contained in:
Yury Semikhatsky 2020-12-09 16:19:47 -08:00 committed by GitHub
parent 176aa98139
commit b895f90fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 72 additions and 6 deletions

View File

@ -11,7 +11,26 @@
</parent>
<artifactId>api-generator</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Playwright Java - API Generator</name>
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
Playwright is built to enable cross-browser web automation that is ever-green, capable,
reliable and fast.
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>
<url>https://github.com/microsoft/playwright-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/microsoft/playwright-java.git</url>
</scm>
<build>
<plugins>
<plugin>

View File

@ -8,7 +8,28 @@
<artifactId>playwright-java</artifactId>
<version>0.1-SNAPSHOT</version>
</parent>
<artifactId>driver</artifactId>
<name>Playwright Java - Driver</name>
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
Playwright is built to enable cross-browser web automation that is ever-green, capable,
reliable and fast.
This module includes playwright-cli binary and related utilities. It is intended to be
used on the systems where Playwright driver is not preinstalled.
</description>
<url>https://github.com/microsoft/playwright-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/microsoft/playwright-java.git</url>
</scm>
<build>
<plugins>
<plugin>

View File

@ -11,7 +11,24 @@
</parent>
<artifactId>playwright</artifactId>
<version>0.1-SNAPSHOT</version>
<name>Playwright Java - Main Library</name>
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
Playwright is built to enable cross-browser web automation that is ever-green, capable,
reliable and fast.
This is the main package that provides Playwright Java client.
</description>
<url>https://github.com/microsoft/playwright-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/microsoft/playwright-java.git</url>
</scm>
<build>
<plugins>
@ -26,7 +43,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<systemPropertyVariables>
<playwright.cli.dir>${project.parent.basedir}/driver/src/main/resources/driver</playwright.cli.dir>
@ -47,7 +63,6 @@
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>

15
pom.xml
View File

@ -12,9 +12,10 @@
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
Playwright is built to enable cross-browser web automation that is ever-green, capable,
reliable and fast.
This is the parent POM of the project.
</description>
<url>https://github.com/microsoft/playwright-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
@ -22,7 +23,6 @@
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/microsoft/playwright-java.git</url>
</scm>
@ -53,6 +53,12 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
@ -90,6 +96,11 @@
<additionalOptions>--allow-script-in-comments</additionalOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
</plugins>
</pluginManagement>
</build>