<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.orange-buffalo</groupId>
  <artifactId>testcontainers-playwright</artifactId>
  <version>0.12.0</version>
  <name>testcontainers-playwright</name>
  <description>Testcontainers-based container for Playwright</description>
  <url>https://github.com/orange-buffalo/testcontainers-playwright</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>orange-buffalo</id>
      <name>Bogdan Ilchyshyn</name>
      <email>orange-buffalo@users.noreply.github.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git@github.com:orange-buffalo/testcontainers-playwright.git</connection>
    <developerConnection>scm:git@github.com:orange-buffalo/testcontainers-playwright.git</developerConnection>
    <url>https://github.com/orange-buffalo/testcontainers-playwright</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>testcontainers</artifactId>
      <version>1.21.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.microsoft.playwright</groupId>
      <artifactId>playwright</artifactId>
      <version>1.52.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>1.7.22</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.13.0</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>2.0.3</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
