bcrypt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>at.favre.lib</groupId> <artifactId>bcrypt</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>at.favre.lib</groupId> <artifactId>bcrypt</artifactId> <version>0.2.0</version> <packaging>jar</packaging> <name>BCrypt Password Hashing Function</name> <description>Bcrypt is a password hashing function designed by Niels Provos and David Mazières, based on the Blowfish cipher. The core of this implementation is based on jBcrypt, but heavily refactored, modernized and with a lot of updates and enhancements. </description> <url>https://github.com/patrickfav/bcrypt</url> <inceptionYear>2018</inceptionYear> <prerequisites> <maven>3.1.0</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <repositories> <repository> <id>maven-central-repo</id> <url>http://repo1.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <configuration> <configLocation>checkstyle.xml</configLocation> </configuration> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.11</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <compilerId>javac-with-errorprone</compilerId> <forceJavacCompilerUse>true</forceJavacCompilerUse> <source>1.7</source> <target>1.7</target> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac-errorprone</artifactId> <version>2.8.2</version> </dependency> <!-- override plexus-compiler-javac-errorprone's dependency on Error Prone with the latest version --> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <!-- only one compatible with java 7--> <version>2.0.5</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.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-surefire-plugin</artifactId> <version>2.22.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.1</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign</id> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> <!-- set this to true if fail because of missing credentials --> <keystore>keystore.jks</keystore> <alias>pfopensource</alias> <storepass>${env.OPENSOURCE_PROJECTS_KS_PW}</storepass> <keypass>${env.OPENSOURCE_PROJECTS_KEY_PW}</keypass> </configuration> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.6</version> <executions> <execution> <goals> <goal>artifacts</goal> </goals> </execution> </executions> <configuration> <algorithms> <algorithm>SHA-256</algorithm> </algorithms> <shasumSummary>true</shasumSummary> <shasumSummaryFile>checksum-sha256.txt</shasumSummaryFile> <attachChecksums>false</attachChecksums> <quiet>false</quiet> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>at.favre.lib</groupId> <artifactId>bytes</artifactId> <version>0.4.6</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mindrot</groupId> <artifactId>jbcrypt</artifactId> <version>0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.60</version> <scope>test</scope> </dependency> </dependencies> <developers> <developer> <id>patrickfav</id> <name>Patrick Favre-Bulle</name> <email>patrick.favrebulle@gmail.com</email> </developer> </developers> <distributionManagement> <repository> <id>bintray-patrickfav</id> <name>patrickfav-bcrypt</name> <url>https://api.bintray.com/maven/patrickfav/maven/bcrypt/;publish=1</url> </repository> </distributionManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>https://github.com/patrickfav/bcrypt.git</connection> <developerConnection>https://github.com/patrickfav/bcrypt.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/patrickfav/bcrypt</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/patrickfav/bcrypt/issues</url> </issueManagement> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/patrickfav/bcrypt</url> </ciManagement> </project>