Selenium_Selenide_Playwrigh.../lukanPlaywright/pom.xml

59 lines
1.7 KiB
XML
Raw Permalink Normal View History

2023-08-16 21:37:35 +00:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2023-08-21 19:02:47 +00:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2023-08-16 21:37:35 +00:00
<modelVersion>4.0.0</modelVersion>
2023-08-21 19:02:47 +00:00
2023-08-16 21:37:35 +00:00
<groupId>cz.lukan</groupId>
2023-08-21 19:02:47 +00:00
<artifactId>lukanPlaywright</artifactId>
2023-08-16 21:37:35 +00:00
<version>1.0-SNAPSHOT</version>
2023-08-21 19:02:47 +00:00
<packaging>jar</packaging>
<name>lukanPlaywright</name>
2023-08-16 21:37:35 +00:00
<url>http://maven.apache.org</url>
2023-08-21 19:02:47 +00:00
2023-08-16 21:37:35 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2023-08-21 19:02:47 +00:00
2023-08-16 21:37:35 +00:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2023-08-21 19:02:47 +00:00
<version>3.8.1</version>
2023-08-16 21:37:35 +00:00
<scope>test</scope>
</dependency>
2023-08-21 19:02:47 +00:00
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.8.0</version>
<scope>test</scope>
</dependency>
2023-08-16 21:37:35 +00:00
<dependency>
<groupId>com.microsoft.playwright</groupId>
<artifactId>playwright</artifactId>
<version>1.35.1</version>
</dependency>
2023-08-21 19:02:47 +00:00
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
2023-08-16 21:37:35 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<!-- References to interface static methods are allowed only at source level 1.8 or above -->
<configuration>
<source>20</source>
<target>20</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
2023-08-21 19:02:47 +00:00