Skip to content

Commit 8286f8a

Browse files
authored
chore: bump dependencies (microsoft#1484)
1 parent 906d947 commit 8286f8a

9 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
env:
3636
BROWSER: ${{ matrix.browser }}
3737
- name: Run tracing tests w/ sources
38-
run: mvn test --no-transfer-progress --fail-at-end -D test=*TestTracing* -D org.slf4j.simpleLogger.showDateTime=true -D org.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss
38+
run: mvn test --no-transfer-progress --fail-at-end --projects=playwright -D test=*TestTracing* -D org.slf4j.simpleLogger.showDateTime=true -D org.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss
3939
env:
4040
BROWSER: ${{ matrix.browser }}
4141
PLAYWRIGHT_JAVA_SRC: src/test/java

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Names of published driver archives can be found at https://github.com/microsoft/
3434
mvn compile
3535
mvn test
3636
# Executing a single test
37-
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
37+
BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes#shouldHaveTheCorrectResponseBodySize
3838
# Executing a single test class
39-
BROWSER=chromium mvn test -Dtest=TestPageNetworkSizes
39+
BROWSER=chromium mvn test --projects=playwright -Dtest=TestPageNetworkSizes
4040
```
4141

4242
### Generating API

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<plugin>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>3.1</version>
26+
<version>3.12.1</version>
2727
<configuration>
2828
<source>1.8</source>
2929
<target>1.8</target>

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
<maven.compiler.source>8</maven.compiler.source>
4646
<maven.compiler.target>8</maven.compiler.target>
4747
<maven.compiler.parameters>true</maven.compiler.parameters>
48-
<gson.version>2.8.9</gson.version>
49-
<junit.version>5.7.0</junit.version>
48+
<gson.version>2.10.1</gson.version>
49+
<junit.version>5.10.2</junit.version>
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51-
<websocket.version>1.5.1</websocket.version>
52-
<opentest4j.version>1.2.0</opentest4j.version>
51+
<websocket.version>1.5.6</websocket.version>
52+
<opentest4j.version>1.3.0</opentest4j.version>
5353
</properties>
5454

5555
<dependencyManagement>
@@ -101,37 +101,37 @@
101101
<plugin>
102102
<groupId>org.apache.maven.plugins</groupId>
103103
<artifactId>maven-clean-plugin</artifactId>
104-
<version>3.2.0</version>
104+
<version>3.3.2</version>
105105
</plugin>
106106
<plugin>
107107
<groupId>org.apache.maven.plugins</groupId>
108108
<artifactId>maven-resources-plugin</artifactId>
109-
<version>3.3.0</version>
109+
<version>3.3.1</version>
110110
</plugin>
111111
<plugin>
112112
<groupId>org.apache.maven.plugins</groupId>
113113
<artifactId>maven-compiler-plugin</artifactId>
114-
<version>3.10.1</version>
114+
<version>3.12.1</version>
115115
</plugin>
116116
<plugin>
117117
<groupId>org.apache.maven.plugins</groupId>
118118
<artifactId>maven-install-plugin</artifactId>
119-
<version>3.1.0</version>
119+
<version>3.1.1</version>
120120
</plugin>
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-deploy-plugin</artifactId>
124-
<version>3.1.0</version>
124+
<version>3.1.1</version>
125125
</plugin>
126126
<plugin>
127127
<groupId>org.apache.maven.plugins</groupId>
128128
<artifactId>maven-source-plugin</artifactId>
129-
<version>3.2.1</version>
129+
<version>3.3.0</version>
130130
</plugin>
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-javadoc-plugin</artifactId>
134-
<version>3.2.0</version>
134+
<version>3.6.3</version>
135135
<configuration>
136136
<additionalOptions>--allow-script-in-comments</additionalOptions>
137137
<failOnError>false</failOnError>
@@ -140,7 +140,7 @@
140140
<plugin>
141141
<groupId>org.apache.maven.plugins</groupId>
142142
<artifactId>maven-surefire-plugin</artifactId>
143-
<version>3.0.0-M5</version>
143+
<version>3.2.5</version>
144144
<configuration>
145145
<properties>
146146
<configurationParameters>
@@ -160,7 +160,7 @@
160160
<plugin>
161161
<groupId>org.apache.maven.plugins</groupId>
162162
<artifactId>maven-gpg-plugin</artifactId>
163-
<version>1.6</version>
163+
<version>3.1.0</version>
164164
</plugin>
165165
<plugin>
166166
<groupId>org.apache.maven.plugins</groupId>

tools/api-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<plugin>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>3.1</version>
26+
<version>3.12.1</version>
2727
<configuration>
2828
<source>${compiler.version}</source>
2929
<target>${compiler.version}</target>

tools/test-cli-fatjar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<plugin>
1616
<groupId>org.apache.maven.plugins</groupId>
1717
<artifactId>maven-compiler-plugin</artifactId>
18-
<version>3.1</version>
18+
<version>3.12.1</version>
1919
<configuration>
2020
<source>${compiler.version}</source>
2121
<target>${compiler.version}</target>

tools/test-cli-version/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<plugin>
1616
<groupId>org.apache.maven.plugins</groupId>
1717
<artifactId>maven-compiler-plugin</artifactId>
18-
<version>3.1</version>
18+
<version>3.12.1</version>
1919
<configuration>
2020
<source>${compiler.version}</source>
2121
<target>${compiler.version}</target>

tools/test-local-installation/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<description>Runs Playwright test suite (copied from playwright module) against locally cached Playwright</description>
1010
<properties>
1111
<compiler.version>1.8</compiler.version>
12-
<gson.version>2.8.9</gson.version>
13-
<junit.version>5.7.0</junit.version>
12+
<gson.version>2.10.1</gson.version>
13+
<junit.version>5.10.2</junit.version>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<websocket.version>1.5.1</websocket.version>
15+
<websocket.version>1.5.6</websocket.version>
1616
</properties>
1717
<dependencies>
1818
<dependency>
@@ -49,7 +49,7 @@
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-compiler-plugin</artifactId>
52-
<version>3.1</version>
52+
<version>3.12.1</version>
5353
<configuration>
5454
<source>${compiler.version}</source>
5555
<target>${compiler.version}</target>
@@ -58,7 +58,7 @@
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
6060
<artifactId>maven-surefire-plugin</artifactId>
61-
<version>3.0.0-M5</version>
61+
<version>3.2.5</version>
6262
</plugin>
6363
</plugins>
6464
</build>

tools/update-docs-version/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<plugin>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>3.1</version>
26+
<version>3.12.1</version>
2727
<configuration>
2828
<source>${compiler.version}</source>
2929
<target>${compiler.version}</target>

0 commit comments

Comments
 (0)