lmdbjava
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.lmdbjava</groupId> <artifactId>lmdbjava</artifactId> <version>0.9.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2016-2025 The LmdbJava Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>org.lmdbjava</groupId> <artifactId>lmdbjava</artifactId> <version>0.9.1</version> <packaging>jar</packaging> <name>LmdbJava</name> <description>Low latency Java API for the ultra-fast, embedded Symas Lightning Database (LMDB)</description> <properties> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.enforcer.java>1.8</maven.enforcer.java> <maven.enforcer.mvn>3.5.4</maven.enforcer.mvn> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <trimStackTrace>false</trimStackTrace> </properties> <dependencies> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-constants</artifactId> <version>0.10.4</version> </dependency> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-ffi</artifactId> <version>2.2.17</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>33.4.0-jre</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jakewharton.byteunits</groupId> <artifactId>byteunits</artifactId> <version>0.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.1.118.Final</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.agrona</groupId> <artifactId>agrona</artifactId> <!-- 1.23.0 requires Java 17+ --> <version>1.22.0</version> <optional>true</optional> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>4.11.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.6</version> <configuration> <licenseSets> <licenseSet> <header>src/misc/license-template.txt</header> <excludes> <exclude>LICENSE.txt</exclude> <exclude>**/*.md</exclude> <exclude>lmdb/**</exclude> </excludes> </licenseSet> </licenseSets> <useDefaultExcludes>true</useDefaultExcludes> </configuration> <dependencies> <dependency> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin-git</artifactId> <version>4.6</version> </dependency> </dependencies> <executions> <execution> <id>apply-license</id> <goals> <goal>format</goal> </goals> <phase>package</phase> <configuration> <indentSize>2</indentSize> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.4.0</version> <configuration> <failOnError>false</failOnError> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> <executions> <execution> <goals> <goal>analyze-only</goal> <goal>properties</goal> </goals> <configuration> <failOnWarning>false</failOnWarning> <ignoredDependencies> <ignoredDependency>com.github.jnr:jffi</ignoredDependency> <ignoredDependency>org.mockito:mockito-core</ignoredDependency> <ignoredDependency>org.mockito:mockito-inline</ignoredDependency> </ignoredDependencies> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>config-enforcer</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <dependencyConvergence /> <requireMavenVersion> <version>[${maven.enforcer.mvn},)</version> </requireMavenVersion> <requireJavaVersion> <version>[${maven.enforcer.java},)</version> </requireJavaVersion> <requireNoRepositories /> <requirePluginVersions /> <requireReleaseDeps> <onlyWhenRelease>true</onlyWhenRelease> </requireReleaseDeps> <requireUpperBoundDeps /> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Implementation-Build>${buildNumber}</Implementation-Build> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <completionGoals>clean</completionGoals> <preparationGoals>clean</preparationGoals> <useReleaseProfile>false</useReleaseProfile> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.21.0</version> <configuration> <skipDeploy>true</skipDeploy> </configuration> </plugin> <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-surefire-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.2.1</version> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <revisionOnScmFailure>UNKNOWN</revisionOnScmFailure> <providerImplementations> <git>jgit</git> </providerImplementations> <getRevisionOnlyOnce>true</getRevisionOnlyOnce> <shortRevisionLength>7</shortRevisionLength> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-jgit</artifactId> <version>2.1.0</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>create</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>config-jacoco-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>config-jacoco-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <url>https://github.com/lmdbjava/lmdbjava</url> <inceptionYear>2016</inceptionYear> <organization> <name>The LmdbJava Open Source Project</name> <url>https://github.com/lmdbjava</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>krisskross</id> <name>Kristoffer Sjogren</name> <email>stoffe -at- gmail.com</email> <url>http://stoffe.deephacks.org/</url> <organization /> <timezone>+1</timezone> </developer> <developer> <id>benalexau</id> <name>Ben Alex</name> <email>ben.alex@acegi.com.au</email> <url>https://github.com/benalexau/</url> <organization>Acegi Technology Pty Limited</organization> <timezone>+10</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com:lmdbjava/lmdbjava.git</connection> <developerConnection>scm:git:git@github.com:lmdbjava/lmdbjava.git</developerConnection> <url>git@github.com:lmdbjava/lmdbjava.git</url> <tag>lmdbjava-0.9.1</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/lmdbjava/lmdbjava/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/lmdbjava/lmdbjava/actions</url> </ciManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>add-opens-on-java-9-and-above</id> <activation> <jdk>[1.9</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>@{argLine} --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED</argLine> <forkCount>1</forkCount> <reuseForks>false</reuseForks> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>additional-plugins-on-java-11-and-above</id> <activation> <jdk>[1.11</jdk> </activation> <build> <plugins> <plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <version>4.0.0</version> <configuration> <pomFile>${project.basedir}/pom.xml</pomFile> <encoding>${project.build.sourceEncoding}</encoding> <predefinedSortOrder>custom_1</predefinedSortOrder> <keepBlankLines>true</keepBlankLines> <sortDependencies>groupId,artifactId</sortDependencies> <sortPlugins>groupId,artifactId</sortPlugins> <sortProperties>true</sortProperties> <sortModules>false</sortModules> <createBackupFile>false</createBackupFile> <lineSeparator>\n</lineSeparator> <expandEmptyElements>false</expandEmptyElements> </configuration> <executions> <execution> <goals> <goal>sort</goal> </goals> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <groupId>com.spotify.fmt</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>2.25</version> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>ossrh-deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>