Skip to content

Commit b469906

Browse files
committed
section 2
1 parent b5aecbc commit b469906

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

  • section-02-playwright-overview
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>java-playwright-junit</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>25</maven.compiler.source>
13+
<maven.compiler.target>25</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<dependencies>
18+
<!-- Source: https://mvnrepository.com/artifact/com.microsoft.playwright/playwright -->
19+
<dependency>
20+
<groupId>com.microsoft.playwright</groupId>
21+
<artifactId>playwright</artifactId>
22+
<version>1.58.0</version>
23+
<scope>compile</scope>
24+
</dependency>
25+
26+
<!-- Source: https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
27+
<dependency>
28+
<groupId>org.junit.jupiter</groupId>
29+
<artifactId>junit-jupiter-api</artifactId>
30+
<version>6.1.0-M1</version>
31+
<scope>test</scope>
32+
</dependency>
33+
34+
</dependencies>
35+
36+
</project>

0 commit comments

Comments
 (0)