adcsCertUtil
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.trustable.ca3s</groupId> <artifactId>adcsCertUtil</artifactId> <version>1.2.9</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> <parent> <groupId>de.trustable.ca3s</groupId> <artifactId>adcsCert</artifactId> <version>1.2.9</version> </parent> <artifactId>adcsCertUtil</artifactId> <name>adcsCertUtil</name> <description>Adapter to connect to an ADCS instance locally or remotely. </description> <url>https://github.com/kuehne-trustable-de/adcsCert</url> <licenses> <license> <name>European Union Public Licence (EUPL-1.2)</name> <url>https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12</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>wabisch@trustable.de</email> <organization>trustable solutions UG</organization> <organizationUrl>https://trustable.de</organizationUrl> </developer> </developers> <scm> <connection>https://github.com/kuehne-trustable-de/adcsCert.git</connection> <developerConnection>https://github.com/kuehne-trustable-de/adcsCert.git</developerConnection> <url>https://github.com/kuehne-trustable-de/adcsCert.git</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <adcsCertAdmin.version>${adcsCert.version}</adcsCertAdmin.version> <adcsCertCli.version>${adcsCert.version}</adcsCertCli.version> <adcsCertEnrol.version>${adcsCert.version}</adcsCertEnrol.version> <slf4j.version>2.0.3</slf4j.version> <logback.version>1.4.4</logback.version> </properties> <dependencies> <dependency> <groupId>de.trustable.ca3s</groupId> <artifactId>adcsCertAdmin</artifactId> <version>${adcsCertAdmin.version}</version> </dependency> <dependency> <groupId>de.trustable.ca3s</groupId> <artifactId>adcsCertCli</artifactId> <version>${adcsCertCli.version}</version> </dependency> <dependency> <groupId>de.trustable.ca3s</groupId> <artifactId>adcsCertEnrol</artifactId> <version>${adcsCertEnrol.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.13.4</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>de.trustable</groupId> <artifactId>cryptoUtil</artifactId> <version>${cryptoUtil.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${dependencyCheck.version}</version> <configuration> <cveValidForHours>24</cveValidForHours> <failBuildOnCVSS>4</failBuildOnCVSS> <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled> <outputDirectory>${project.build.directory}/dependency-check</outputDirectory> <format>HTML</format> <skip>false</skip> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>