${project.artifactId}.
leveldbjni is a jni library for acessing leveldb..
Here is the list of declaration for leveldbjni. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for leveldbjni is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on leveldbjni-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | leveldbjni-osx 1.2 The leveldbjni OS X universal native libraries | 6 |
Library | leveldbjni-osx 1.2 The leveldbjni OS X universal native libraries | 6 |
Library | leveldbjni-linux64 1.2 The leveldbjni linux 64 native libraries | 6 |
Library | leveldbjni-linux32 1.2 The leveldbjni linux 32 native libraries | 6 |
The following plugins are used in the leveldbjni-1.2.jar
The following packages are defined in the leveldbjni-1.2.jar
org.fusesource.leveldbjni org.fusesource.leveldbjni.internal
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2011, FuseSource Corp. All rights reserved. http://fusesource.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of FuseSource Corp. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --> <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> <parent> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni-project</artifactId> <version>1.2</version> </parent> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>${project.artifactId}</name> <description>leveldbjni is a jni library for acessing leveldb.</description> <dependencies> <dependency> <groupId>org.fusesource.hawtjni</groupId> <artifactId>hawtjni-runtime</artifactId> <version>${hawtjni-version}</version> </dependency> <dependency> <groupId>org.iq80.leveldb</groupId> <artifactId>leveldb-api</artifactId> <version>${leveldb-api-version}</version> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.fusesource.hawtjni</groupId> <artifactId>maven-hawtjni-plugin</artifactId> <version>${hawtjni-version}</version> <executions> <execution> <goals> <goal>generate</goal> <goal>package-source</goal> </goals> </execution> </executions> <configuration> <name>leveldbjni</name> <callbacks>false</callbacks> <copyright><![CDATA[ /******************************************************************************* * Copyright (C) 2011, FuseSource Corp. All rights reserved. * * http://fusesource.com * * The software in this package is published under the terms of the * CDDL license a copy of which has been included with this distribution * in the license.txt file. *******************************************************************************/ ]]></copyright> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <forkMode>once</forkMode> <argLine>-ea</argLine> <failIfNoTests>false</failIfNoTests> <workingDirectory>${project.build.directory}</workingDirectory> <excludes> <exclude>**/*</exclude> </excludes> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.0.1</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Import-Package>!org.fusesource.leveldbjni*,!org.fusesource.hawtjni*,sun.reflect;resolution:=optional,*</Import-Package> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>