Download libpam4j-1.8.jar file

Introduction

You can download libpam4j-1.8.jar in this page.

License

The MIT license

Type List

libpam4j-1.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.kohsuke/libpam4j/pom.properties
META-INF/maven/org.kohsuke/libpam4j/pom.xml
org.jvnet.libpam.PAM.class
org.jvnet.libpam.PAMException.class
org.jvnet.libpam.UnixUser.class
org.jvnet.libpam.impl.BSDCLibrary.class
org.jvnet.libpam.impl.BSDPasswd.class
org.jvnet.libpam.impl.CLibrary.class
org.jvnet.libpam.impl.FreeBSDCLibrary.class
org.jvnet.libpam.impl.FreeBSDPasswd.class
org.jvnet.libpam.impl.LinuxCLibrary.class
org.jvnet.libpam.impl.LinuxPasswd.class
org.jvnet.libpam.impl.PAMLibrary.class
org.jvnet.libpam.impl.SolarisCLibrary.class
org.jvnet.libpam.impl.SolarisPasswd.class

Pom

libpam4j-1.8.pom file content.

<!--
  The MIT License

  Copyright (c) 2009, Sun Microsystems, Inc.

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
-->
<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.kohsuke</groupId>
    <artifactId>pom</artifactId>
    <version>6</version>
  </parent>

  <artifactId>libpam4j</artifactId>
  <packaging>jar</packaging>
  <version>1.8</version>
  <name>Java binding for libpam.so</name>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <scm>
    <connection>scm:git:git@github.com/kohsuke/${project.artifactId}.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/kohsuke/${project.artifactId}.git</developerConnection>
    <url>http://${project.artifactId}.kohsuke.org/</url>
  </scm>

  <distributionManagement>
    <site>
      <id>github-pages</id>
      <url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url>
    </site>
  </distributionManagement>

  <licenses>
    <license>
      <name>The MIT license</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.java.dev.jna</groupId>
      <artifactId>jna</artifactId>
      <version>4.0.0</version>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.kohsuke</groupId>
   <artifactId>libpam4j</artifactId>
   <version>1.8</version>
</dependency>

Download

If you think the following libpam4j-1.8.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download libpam4j-1.8.jar file




PreviousNext

Related