Initial Development #1
23
pom.xml
23
pom.xml
@ -6,12 +6,12 @@
|
|||||||
|
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-RC1</version>
|
<version>1.0.0-RC1</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
<description>Expose a document store interface for PostgreSQL and SQLite</description>
|
<description>Expose a document store interface for PostgreSQL and SQLite</description>
|
||||||
<url>https://bitbadger.solutions/open-source/solutions.bitbadger.documents</url>
|
<url>https://relationaldocs.bitbadger.solutions/jvm/</url>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
@ -62,6 +62,25 @@
|
|||||||
<module>./src/scala</module>
|
<module>./src/scala</module>
|
||||||
</modules>
|
</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>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-RC1</version>
|
<version>1.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -15,7 +15,29 @@
|
|||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
<description>Expose a document store interface for PostgreSQL and SQLite (Core Library)</description>
|
<description>Expose a document store interface for PostgreSQL and SQLite (Core Library)</description>
|
||||||
<url>https://bitbadger.solutions/open-source/relational-documents/jvm/</url>
|
<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>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@ -125,6 +147,16 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.central</groupId>
|
||||||
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
||||||
|
<version>0.7.0</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<deploymentName>Deployment-core-${project.version}</deploymentName>
|
||||||
|
<publishingServerId>central</publishingServerId>
|
||||||
|
</configuration>
|
||||||
|
</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-RC1</version>
|
<version>1.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -15,7 +15,29 @@
|
|||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
<description>Expose a document store interface for PostgreSQL and SQLite (Groovy Library)</description>
|
<description>Expose a document store interface for PostgreSQL and SQLite (Groovy Library)</description>
|
||||||
<url>https://bitbadger.solutions/open-source/relational-documents/jvm/</url>
|
<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>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@ -116,6 +138,16 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.central</groupId>
|
||||||
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
||||||
|
<version>0.7.0</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<deploymentName>Deployment-groovy-${project.version}</deploymentName>
|
||||||
|
<publishingServerId>central</publishingServerId>
|
||||||
|
</configuration>
|
||||||
|
</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-RC1</version>
|
<version>1.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -15,14 +15,29 @@
|
|||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
<description>Expose a document store interface for PostgreSQL and SQLite (KotlinX Serialization Library)</description>
|
<description>Expose a document store interface for PostgreSQL and SQLite (KotlinX Serialization Library)</description>
|
||||||
<url>https://bitbadger.solutions/open-source/relational-documents/jvm/</url>
|
<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>
|
<scm>
|
||||||
<connection>scm:git:https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents.git</connection>
|
<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>
|
<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>
|
<url>https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents</url>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>solutions.bitbadger.documents</groupId>
|
<groupId>solutions.bitbadger.documents</groupId>
|
||||||
@ -156,6 +171,16 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.central</groupId>
|
||||||
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
||||||
|
<version>0.7.0</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<deploymentName>Deployment-kotlinx-${project.version}</deploymentName>
|
||||||
|
<publishingServerId>central</publishingServerId>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>solutions.bitbadger</groupId>
|
<groupId>solutions.bitbadger</groupId>
|
||||||
<artifactId>documents</artifactId>
|
<artifactId>documents</artifactId>
|
||||||
<version>4.0.0-RC1</version>
|
<version>1.0.0-RC1</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -15,7 +15,29 @@
|
|||||||
|
|
||||||
<name>${project.groupId}:${project.artifactId}</name>
|
<name>${project.groupId}:${project.artifactId}</name>
|
||||||
<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://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>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
|
<sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory>
|
||||||
@ -110,6 +132,16 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin> -->
|
</plugin> -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.central</groupId>
|
||||||
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
||||||
|
<version>0.7.0</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<deploymentName>Deployment-scala-${project.version}</deploymentName>
|
||||||
|
<publishingServerId>central</publishingServerId>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user