| 组织ID: |
org.mindrot |
| 项目ID: |
jbcrypt |
| 版本: |
0.3m |
| 最后修改时间: |
2018-07-26 09:13:32 |
| 包类型: |
jar |
| 标题: |
jbcrypt |
| 描述: |
jBCrypt is a Java implementation of OpenBSD's Blowfish password hashing code, as described in A Future-Adaptable Password Scheme by Niels Provos and David Mazi猫res, by Damien Miller.
|
| 相关URL: |
http://www.mindrot.org/ |
| 大小: |
17.33KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
<version>0.3m</version>
</dependency>
|
| Gradle引入代码: |
org.mindrot:jbcrypt:0.3m
|
| 下载Jar包: |
|
| POM文件内容: |
<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.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
<packaging>jar</packaging>
<version>0.3m</version>
<name>jbcrypt</name>
<url>http://www.mindrot.org/</url>
<description>
jBCrypt is a Java implementation of OpenBSD's Blowfish password hashing code, as described in A Future-Adaptable Password Scheme by Niels Provos and David Mazi猫res, by Damien Miller.
</description>
<licenses>
<license>
<distribution>repo</distribution>
<name>ISC/BSD License</name>
<comments>The text of the license may be found at http://www.opensource.org/licenses/isc-license.txt</comments>
</license>
</licenses>
<scm>
<connection>scm:svn:https://jbcrypt.googlecode.com/svn/tags/jbcrypt-0.3m</connection>
<developerConnection>scm:svn:https://jbcrypt.googlecode.com/svn/tags/jbcrypt-0.3m</developerConnection>
<url>scm:svn:https://jbcrypt.googlecode.com/svn/tags/jbcrypt-0.3m</url>
</scm>
<organization>
<name>mindrot.org</name>
<url>http://www.mindrot.org/</url>
</organization>
<developers>
<developer>
<id>dmiller</id>
<name>Damien Miller</name>
<email>djm@mindrot.org</email>
<url>http://www.mindrot.org/</url>
<organization>mindrot</organization>
<organizationUrl>http://www.mindrot.org/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+10</timezone>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<tagBase>https://jbcrypt.googlecode.com/svn/tags</tagBase>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>${gpg.keyname}</keyname>
<useAgent>${gpg.useAgent}</useAgent>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.mindrot.jbcrypt.BCrypt.class
META-INF/maven/org.mindrot/jbcrypt/pom.xml
META-INF/maven/org.mindrot/jbcrypt/pom.properties
|
| 依赖Jar: |
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
|