crypto-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.gerritjvv</groupId> <artifactId>crypto-core</artifactId> <version>1.1.0</version> </dependency>
<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>com.github.gerritjvv</groupId> <artifactId>crypto-core</artifactId> <packaging>jar</packaging> <version>1.1.0</version> <name>crypto-core</name> <url>https://github.com/gerritjvv/crypto/crypto-core</url> <description> A simple fast encryption library for the JVM uses standard best practices and standard JVM classes </description> <developers> <developer> <id>gerritjvv</id> <email>gerritjvv@gmail.com</email> <url>http://github.com/gerritjvv</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <scm> <url>https://github.com/gerritjvv/crypto</url> <connection>scm:git:git@github.com:gerritjvv/crypto.git</connection> <developerConnection>scm:git:git@github.com:gerritjvv/crypto.git</developerConnection> </scm> <dependencies> <dependency> <groupId>at.favre.lib</groupId> <artifactId>hkdf</artifactId> <version>1.0.2</version> </dependency> <dependency> <groupId>com.kosprov.jargon2</groupId> <artifactId>jargon2-api</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>com.kosprov.jargon2</groupId> <artifactId>jargon2-native-ri-backend</artifactId> <version>1.1.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <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-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>