atp-crypt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.qubership.atp</groupId> <artifactId>atp-crypt</artifactId> <version>0.0.20</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.qubership.atp</groupId> <artifactId>atp-crypt</artifactId> <version>0.0.20</version> <name>${project.groupId}:${project.artifactId}</name> <description>ATP Crypt Library</description> <url>https://github.com/Netcracker/qubership-testing-platform-crypt-library</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <name>Netcracker</name> <email>opensourcegroup@netcracker.com</email> <organization>Netcracker Technology</organization> <organizationUrl>https://www.netcracker.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https//github.com/Netcracker/qubership-testing-platform-crypt-library.git</connection> <developerConnection>scm:git:https://github.com/Netcracker/qubership-testing-platform-crypt-library.git</developerConnection> <tag>v0.0.20</tag> <url>scm:git:https://github.com/Netcracker/qubership-testing-platform-crypt-library/tree/main</url> </scm> <properties> <targetJdk>1.8</targetJdk> <java.version>21</java.version> <bouncycastle.version>1.69</bouncycastle.version> <maven.compiler.source>1.8</maven.compiler.source> <pmd.version>7.0.0</pmd.version> <spring.boot.version>2.7.18</spring.boot.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <lombok.version>1.18.30</lombok.version> <console.encoding>UTF-8</console.encoding> <maven.compiler.target>1.8</maven.compiler.target> <slf4j.version>2.0.7</slf4j.version> <spotbugs.maven.plugin.version>4.7.3.0</spotbugs.maven.plugin.version> <mapstruct.version>1.5.5.Final</mapstruct.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.pmd.plugin.version>3.8</maven.pmd.plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>${bouncycastle.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.23.4</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> </dependencies> <repositories> <repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <id>oss.sonatype.org</id> <url>https://central.sonatype.com</url> </repository> <repository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>oss.sonatype.org-snapshot</id> <url>https://central.sonatype.com/repository/maven-snapshots</url> </repository> <repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>github</id> <url>https://maven.pkg.github.com/netcracker/*</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <id>oss.sonatype.org</id> <url>https://central.sonatype.com</url> </pluginRepository> <pluginRepository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>oss.sonatype.org-snapshot</id> <url>https://central.sonatype.com/repository/maven-snapshots</url> </pluginRepository> <pluginRepository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>github</id> <url>https://maven.pkg.github.com/netcracker/*</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.openclover</groupId> <artifactId>clover-maven-plugin</artifactId> <version>4.2.0</version> <executions> <execution> <id>clover-instrument</id> <phase>initialize</phase> <goals> <goal>instrument-test</goal> </goals> </execution> <execution> <id>clover-report</id> <phase>verify</phase> <goals> <goal>clover</goal> <goal>check</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${project.build.directory}/clover</outputDirectory> <generateHtml>true</generateHtml> <generateXml>true</generateXml> <generatePdf>true</generatePdf> <targetPercentage>70%</targetPercentage> <excludes> <exclude>**/model/**</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.5.0</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>central</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>central</id> <name>Central Maven Repository</name> </repository> </distributionManagement> </profile> <profile> <id>github</id> <activation /> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/Netcracker/qubership-testing-platform-crypt-library</url> </repository> </distributionManagement> </profile> </profiles> </project>