    <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/maven-v4_0_0.xsd">

        <modelVersion>4.0.0</modelVersion>

        <artifactId>onyx-remote-driver</artifactId>
        <name>${project.groupId}:${project.artifactId}</name>
        <description>onyx-remote-driver</description>
        <url>https://onyxdevtools.com</url>

        <packaging>jar</packaging>

        <parent>
            <groupId>com.onyxdevtools</groupId>
            <artifactId>onyx-database-parent</artifactId>
            <version>2.1.3</version>
        </parent>

        <licenses>
            <license>
                <name>The GNU Affero General Public License, Version 3.0</name>
                <url>http://www.gnu.org/licenses/agpl-3.0.en.html</url>
            </license>
        </licenses>

        <build>

            <plugins>

                <!-- signs all of the project's attached artifacts with GnuPG -->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-gpg-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>sign-artifacts</id>
                            <phase>verify</phase>
                            <goals>
                                <goal>sign</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

                <plugin>
                    <groupId>org.jetbrains.dokka</groupId>
                    <artifactId>dokka-maven-plugin</artifactId>
                    <version>0.9.13</version>
                    <executions>
                        <execution>
                            <phase>prepare-package</phase>
                            <goals>
                                <goal>javadocJar</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <sourceDirectories>
                            <dir>${project.basedir}/src/main/kotlin</dir>
                        </sourceDirectories>
                        <skip>${javadoc.skip}</skip>
                    </configuration>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-source-plugin</artifactId>
                    <version>2.0.4</version>
                    <executions>
                        <execution>
                            <id>attach-sources</id>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>2.3</version>
                    <executions>
                        <execution>
                            <id>attach-javadocs</id>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>

        </build>

        <dependencies>

            <dependency>
                <groupId>com.onyxdevtools</groupId>
                <artifactId>onyx-database</artifactId>
                <version>${project.version}</version>
            </dependency>

        </dependencies>
    </project>