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> </parent>
<artifactId>api-generator</artifactId> <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> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -8,7 +8,28 @@
<artifactId>playwright-java</artifactId> <artifactId>playwright-java</artifactId>
<version>0.1-SNAPSHOT</version> <version>0.1-SNAPSHOT</version>
</parent> </parent>
<artifactId>driver</artifactId> <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> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -11,7 +11,24 @@
</parent> </parent>
<artifactId>playwright</artifactId> <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> <build>
<plugins> <plugins>
@ -26,7 +43,6 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration> <configuration>
<systemPropertyVariables> <systemPropertyVariables>
<playwright.cli.dir>${project.parent.basedir}/driver/src/main/resources/driver</playwright.cli.dir> <playwright.cli.dir>${project.parent.basedir}/driver/src/main/resources/driver</playwright.cli.dir>
@ -47,7 +63,6 @@
<dependency> <dependency>
<groupId>org.java-websocket</groupId> <groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId> <artifactId>Java-WebSocket</artifactId>
<version>1.5.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>

15
pom.xml
View File

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