cryptoUtil
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.trustable</groupId>
<artifactId>cryptoUtil</artifactId>
<version>1.3.41</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.trustable</groupId>
<artifactId>cryptoUtil</artifactId>
<version>1.3.41</version>
<name>cryptoUtil</name>
<description>Crypto Utils</description>
<url>https://github.com/kuehne-trustable-de/cryptoUtil/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Andreas Kuehne</name>
<email>kuehne@trustable.de</email>
<organization>trustable solutions UG</organization>
<organizationUrl>https://trustable.de</organizationUrl>
</developer>
<developer>
<name>Damian Wabisch</name>
<email>damian@trustable.de</email>
<organization>trustable solutions UG</organization>
<organizationUrl>https://trustable.de</organizationUrl>
</developer>
</developers>
<scm>
<connection>https://github.com/kuehne-trustable-de/cryptoUtil.git</connection>
<developerConnection>https://github.com/kuehne-trustable-de/cryptoUtil.git</developerConnection>
<url>https://github.com/kuehne-trustable-de/cryptoUtil.git</url>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<bouncyCastle.version>1.84</bouncyCastle.version>
<cryptacularVersion>1.3.0</cryptacularVersion>
<jasyptVersion>1.9.3</jasyptVersion>
<commonsCodecVersion>1.21.0</commonsCodecVersion>
<javaxActivation.version>1.1.1</javaxActivation.version>
<maven-checkstyle.version>3.6.0</maven-checkstyle.version>
<checkstyle.version>13.4.0</checkstyle.version>
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<spring-nohttp-checkstyle.version>0.0.4.RELEASE</spring-nohttp-checkstyle.version>
<slf4j.version>2.0.17</slf4j.version>
<logback.version>1.5.32</logback.version>
<junit.version>4.13.2</junit.version>
<license.licenseName>apache_v2</license.licenseName>
<license.inceptionYear>2016</license.inceptionYear>
<license.organizationName>Andreas Kuehne</license.organizationName>
<maven.autoPublish>false</maven.autoPublish>
<dependencyCheck.version>12.2.1</dependencyCheck.version>
<dependencyCheck.skip>false</dependencyCheck.skip>
</properties>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commonsCodecVersion}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncyCastle.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.cryptacular</groupId>
<artifactId>cryptacular</artifactId>
<version>${cryptacularVersion}</version>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>${jasyptVersion}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.activation/activation -->
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>${javaxActivation.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- uses default configuration -->
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}/generated-resources/sbom</outputDirectory>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
<source>${maven.compiler.source}</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependencyCheck.version}</version>
<configuration>
<failBuildOnCVSS>4</failBuildOnCVSS>
<outputDirectory>${project.build.directory}/dependency-check</outputDirectory>
<format>HTML</format>
<nvdApiKey>${dependencyCheck.nvdApiKey}</nvdApiKey>
<skip>${dependencyCheck.skip}</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>${maven.autoPublish}</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
</repositories>
<distributionManagement>
</distributionManagement>
<profiles>
<profile>
<id>prepare-central</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>${maven-javadoc-plugin.version}</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
<source>${maven.compiler.source}</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle.version}</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
<!--dependency>
<groupId>io.spring.nohttp</groupId>
<artifactId>nohttp-checkstyle</artifactId>
<version>${spring-nohttp-checkstyle.version}</version>
</dependency-->
</dependencies>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<includes>pom.xml,README.md</includes>
<excludes>.git/**/*,target/**/*,node_modules/**/*,node/**/*</excludes>
<sourceDirectories>./</sourceDirectories>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>codeAnalysis</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>