JNA-POSIX.
Common cross-project/cross-platform POSIX APIs.
Here is the list of declaration for jna-posix. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jruby.ext.posix</groupId> <artifactId>jna-posix</artifactId> <version>1.0.3</version> </dependency>
If you think this Maven repository POM file listing for jna-posix is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Common Public License - v 1.0
URL: http://www-128.ibm.com/developerworks/library/os-cpl.htmlName:GNU General Public License Version 2
URL: http://www.gnu.org/copyleft/gpl.htmlName:GNU Lesser General Public License Version 2.1
URL: http://www.gnu.org/licenses/lgpl.html.
The jna-posix-1.0.3 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.4 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 301 |
The following table lists the most popular artifacts which are depending on jna-posix-1.0.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Framework | hudson-core 1.379 Contains the core Hudson code and view files to render HTML. | 5 |
Web Framework | hudson-core 2.1.0 Contains the core Hudson code and view files to render HTML. | 6 |
The following plugins are used in the jna-posix-1.0.3.jar
The following packages are defined in the jna-posix-1.0.3.jar
org.jruby.ext.posix org.jruby.ext.posix.util
Here is the content of the POM file.
<?xml version="1.0" ?> <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.jruby.ext.posix</groupId> <artifactId>jna-posix</artifactId> <packaging>jar</packaging> <version>1.0.3</version> <name>JNA-POSIX</name> <description> Common cross-project/cross-platform POSIX APIs </description> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/JRUBY</url> </issueManagement> <scm> <connection>scm:svn:http://svn.codehaus.org/jruby-contrib</connection> <developerConnection>scm:svn:https://svn.codehaus.org/jruby-contrib</developerConnection> <url>http://svn.codehaus.org/jruby-contrib</url> </scm> <licenses> <license> <name>Common Public License - v 1.0</name> <url>http://www-128.ibm.com/developerworks/library/os-cpl.html</url> <distribution>repo</distribution> </license> <license> <name>GNU General Public License Version 2</name> <url>http://www.gnu.org/copyleft/gpl.html</url> <distribution>repo</distribution> </license> <license> <name>GNU Lesser General Public License Version 2.1</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>codehaus-jruby-repository</id> <name>JRuby Central Repository</name> <url>dav:https://dav.codehaus.org/repository/jruby</url> </repository> <snapshotRepository> <id>codehaus-jruby-snapshot-repository</id> <name>JRuby Central Development Repository</name> <url>dav:https://dav.codehaus.org/snapshots.repository/jruby</url> </snapshotRepository> <site> <id>codehaus-jruby-site</id> <name>JRuby Maven site</name> <url>dav:https://dav.codehaus.org/jruby/info</url> </site> </distributionManagement> <repositories> <repository> <id>codehaus</id> <name>Codehaus Repository</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>http://repository.codehaus.org</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>3.0.9</version> <scope>provided</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> </extension> </extensions> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>