<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.condation.cms</groupId>
        <artifactId>cms-parent</artifactId>
        <version>8.2.0</version>
    </parent>
    <artifactId>integration-tests</artifactId>
    <packaging>jar</packaging>
    <name>integration-tests</name>
	
    <properties>
        <maven.deploy.skip>true</maven.deploy.skip>
        <central.publishing.skip>true</central.publishing.skip>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>3.1.4</version>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
    <dependencies>
        
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-server</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.microsoft.playwright</groupId>
            <artifactId>playwright</artifactId>
            <version>1.60.0</version>
            <scope>test</scope>
        </dependency>
        
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-filesystem</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-content</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-hooksystem</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-media</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-text</artifactId>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.condation.cms</groupId>
            <artifactId>cms-test-server</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
	
</project>