heimdall
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.qaware.heimdall</groupId> <artifactId>heimdall</artifactId> <version>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>de.qaware.heimdall</groupId> <artifactId>heimdall</artifactId> <version>2.0</version> <packaging>jar</packaging> <name>QAware Heimdall</name> <description>This library implements a secure and upgradeable password hashing mechanism.</description> <url>https://github.com/qaware/heimdall</url> <inceptionYear>2015</inceptionYear> <organization> <name>QAware GmbH</name> <url>https://www.qaware.de</url> </organization> <licenses> <license> <name>MIT</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/qaware/heimdall.git</connection> <developerConnection>scm:git:https://github.com/qaware/heimdall.git</developerConnection> <url>https://github.com/qaware/heimdall.git</url> <tag>heimdall-2.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- Testing --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.2.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Use Java 8 --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- Prevent the "error: self-closing element not allowed" JavaDoc error --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Attach sources to jar --> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Disable pushing in the release plugin --> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <developers> <developer> <id>phxql</id> <name>Moritz Kammerer</name> <email>moritz.kammerer@qaware.de</email> <organization>QAware GmbH</organization> <organizationUrl>https://www.qaware.de</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <distributionManagement> <repository> <id>bintray-qaware-oss</id> <url>https://api.bintray.com/maven/qaware-oss/maven/heimdall;publish=1</url> </repository> </distributionManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/qaware/heimdall/issues</url> </issueManagement> </project>