<?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.finconsgroup.itserr.marketplace</groupId>
        <artifactId>wp2-be-event-bs</artifactId>
        <version>1.0.0</version>
        <relativePath>..</relativePath>
    </parent>

    <artifactId>wp2-be-event-bs-client</artifactId>
    <packaging>jar</packaging>
    <name>wp2-be-event-bs-client</name>
    <description>Event Bs Client Library</description>

    <properties>
        <!-- Skip repackage as it does not have a main class -->
        <spring-boot.repackage.skip>true</spring-boot.repackage.skip>
    </properties>

    <dependencies>

        <!-- WP2 Core Library Web -->
        <dependency>
            <groupId>com.finconsgroup.itserr.marketplace</groupId>
            <artifactId>core-web</artifactId>
        </dependency>

        <!-- WP2 Event DM Client -->
        <dependency>
            <groupId>com.finconsgroup.itserr.marketplace</groupId>
            <artifactId>wp2-be-event-dm-client</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>

            <!-- Maven Compiler Plugin -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <annotationProcessorPaths>
                        <path>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </path>
                    </annotationProcessorPaths>
                </configuration>
            </plugin>

        </plugins>
    </build>

</project>