This project now contains: - A generic JVM document library (with Kotlin extensions on the JDBC `Connection` object) - A Groovy library which adds extension methods to the `Connection` object - A Scala library, which uses native Scala collections and adds Scala-style extension methods to the `Connection` object - A Kotlin library which uses `kotlinx.serialization` (no reflection, reified generic types) along with `Connection` extensions Reviewed-on: #1
117 lines
4.3 KiB
XML
117 lines
4.3 KiB
XML
<?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>
|
|
|
|
<groupId>solutions.bitbadger</groupId>
|
|
<artifactId>documents</artifactId>
|
|
<version>1.0.0-RC1</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>${project.groupId}:${project.artifactId}</name>
|
|
<description>Expose a document store interface for PostgreSQL and SQLite</description>
|
|
<url>https://relationaldocs.bitbadger.solutions/jvm/</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://www.opensource.org/licenses/mit-license.php</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Daniel J. Summers</name>
|
|
<email>daniel@bitbadger.solutions</email>
|
|
<organization>Bit Badger Solutions</organization>
|
|
<organizationUrl>https://bitbadger.solutions</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents.git</connection>
|
|
<developerConnection>scm:git:https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents.git</developerConnection>
|
|
<url>https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<kotlin.code.style>official</kotlin.code.style>
|
|
<java.version>17</java.version>
|
|
<kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget>
|
|
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
|
|
<kotlin.version>2.1.20</kotlin.version>
|
|
<serialization.version>1.8.0</serialization.version>
|
|
<scala.version>3.5.2</scala.version>
|
|
<groovy.version>4.0.26</groovy.version>
|
|
<surefire.version>3.5.2</surefire.version>
|
|
<failsafe.version>3.5.2</failsafe.version>
|
|
<jackson.version>2.18.2</jackson.version>
|
|
<sqlite.version>3.46.1.2</sqlite.version>
|
|
<postgresql.version>42.7.5</postgresql.version>
|
|
<buildHelperPlugin.version>3.6.0</buildHelperPlugin.version>
|
|
<sourcePlugin.version>3.3.1</sourcePlugin.version>
|
|
<javaDocPlugin.version>3.11.2</javaDocPlugin.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>./src/core</module>
|
|
<module>./src/groovy</module>
|
|
<module>./src/kotlinx</module>
|
|
<module>./src/scala</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>3.2.6</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.10.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-test-junit5</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial</groupId>
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
<version>${sqlite.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>2.0.16</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgresql.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |