Initial Development #1
4
pom.xml
4
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-alpha1-SNAPSHOT</version>
|
<version>4.0.0-RC1</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
@ -49,6 +49,8 @@
|
|||||||
<jackson.version>2.18.2</jackson.version>
|
<jackson.version>2.18.2</jackson.version>
|
||||||
<sqlite.version>3.46.1.2</sqlite.version>
|
<sqlite.version>3.46.1.2</sqlite.version>
|
||||||
<postgresql.version>42.7.5</postgresql.version>
|
<postgresql.version>42.7.5</postgresql.version>
|
||||||
|
<sourcePlugin.version>3.3.1</sourcePlugin.version>
|
||||||
|
<javaDocPlugin.version>3.11.2</javaDocPlugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-alpha1-SNAPSHOT</version>
|
<version>4.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -83,6 +83,32 @@
|
|||||||
<target>${java.version}</target>
|
<target>${java.version}</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>${sourcePlugin.version}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${javaDocPlugin.version}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-alpha1-SNAPSHOT</version>
|
<version>4.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-alpha1-SNAPSHOT</version>
|
<version>4.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-alpha1-SNAPSHOT</version>
|
<version>4.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -17,12 +17,6 @@
|
|||||||
<description>Expose a document store interface for PostgreSQL and SQLite (Scala Library)</description>
|
<description>Expose a document store interface for PostgreSQL and SQLite (Scala Library)</description>
|
||||||
<url>https://bitbadger.solutions/open-source/relational-documents/jvm/</url>
|
<url>https://bitbadger.solutions/open-source/relational-documents/jvm/</url>
|
||||||
|
|
||||||
<properties>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
<kotlin.code.style>official</kotlin.code.style>
|
|
||||||
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
|
<sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
|
||||||
<testSourceDirectory>${project.basedir}/src/test/scala</testSourceDirectory>
|
<testSourceDirectory>${project.basedir}/src/test/scala</testSourceDirectory>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user