mongreldb-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.visorcraft</groupId>
<artifactId>mongreldb-java</artifactId>
<version>0.55.0</version>
</dependency><?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
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.visorcraft</groupId>
<artifactId>mongreldb-java</artifactId>
<version>0.55.0</version>
<packaging>jar</packaging>
<name>MongrelDB Java Client</name>
<description>
Pure-Java HTTP client for MongrelDB - typed CRUD, a fluent query
builder that pushes conditions down to the engine's native indexes,
idempotent batch transactions, full SQL access, and schema
introspection, all over the standard library HttpClient (Java 11+).
No external dependencies.
</description>
<url>https://www.MongrelDB.com</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Visorcraft</name>
<email>support@visorcraft.com</email>
<organization>Visorcraft</organization>
<organizationUrl>https://www.visorcraft.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/visorcraft/MongrelDB-Java.git</connection>
<developerConnection>scm:git:https://github.com/visorcraft/MongrelDB-Java.git</developerConnection>
<url>https://github.com/visorcraft/MongrelDB-Java</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/visorcraft/MongrelDB-Java/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<junit.version>5.10.3</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- The native embedded mode (JNI) has no declared build dependency.
NativeDB loads libmongreldb_jni at runtime via NativeLoader, which
searches MONGRELDB_NATIVE_DIR, java.library.path, or the classpath
(for the com.visorcraft:mongreldb-jni fat JAR with bundled natives).
Consumers add the JAR to their own project when they want native mode. -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</build>
<!-- Release profile: -Prelease during `mvn deploy`. Produces sources +
javadoc, GPG-signs, uploads to Maven Central via the Central
Publishing Portal. -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</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>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>