<?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">
    <parent>
        <artifactId>pumpo-number-five</artifactId>
        <groupId>cz.pumpitup.pn5</groupId>
        <version>0.5.13</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>samba-remote-client</artifactId>
    <name>Samba Remote Driver Client</name>

    <dependencies>
        <!-- BEGIN: COMPILE SCOPE -->
        <dependency>
            <groupId>cz.pumpitup.pn5</groupId>
            <artifactId>core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-jsr310</artifactId>
        </dependency>
        <!-- END: COMPILE SCOPE -->
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <id>no-autodetection</id>
                        <configuration>
                            <descriptors>
                                <descriptor>../assembly/no-autodetection.xml</descriptor>
                            </descriptors>
                        </configuration>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>