atp-itf-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.qubership.atp</groupId> <artifactId>atp-itf-core</artifactId> <version>4.4.106</version> </dependency>
<!-- ~ Copyright 2024-2025 NetCracker Technology Corporation ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>org.qubership.atp</groupId> <artifactId>atp-itf-core</artifactId> <version>4.4.106</version> <packaging>jar</packaging> <properties> <java.version>1.8</java.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <targetJdk>1.8</targetJdk> <spring.boot.version>2.7.18</spring.boot.version> <org.springframework.version>5.3.21</org.springframework.version> <org.springframework.security.version>5.2.0.RELEASE</org.springframework.security.version> <spring.cloud.version>2021.0.8</spring.cloud.version> <keycloak.version>22.0.1</keycloak.version> <net.javacrumbs.shedlock.version>4.14.0</net.javacrumbs.shedlock.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <hazelcast.version>4.2.6</hazelcast.version> <querydsl.version>4.0.0</querydsl.version> <atp.common.version>0.0.43</atp.common.version> <atp.auth.version>1.2.60</atp.auth.version> <atp.integration.version>0.2.38</atp.integration.version> <javers.version>6.6.4</javers.version> </properties> <name>${project.groupId}:${project.artifactId}</name> <description>Qubership Testing Platform ITF Core Library</description> <url>https://github.com/Netcracker/qubership-testing-platform-itf-core-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-itf-core-library.git</connection> <developerConnection>scm:git:https://github.com/Netcracker/qubership-testing-platform-itf-core-library.git</developerConnection> <url>scm:git:https://github.com/Netcracker/qubership-testing-platform-itf-core-library/tree/main</url> <tag>v4.4.106</tag> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.15</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> <version>3.1</version> </plugin> <plugin> <dependencies> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-apt</artifactId> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-core</artifactId> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.0.Final</version> </dependency> </dependencies> <groupId>com.mysema.maven</groupId> <artifactId>apt-maven-plugin</artifactId> <version>1.1.3</version> <executions> <execution> <id>process-common-model</id> <goals> <goal>process</goal> </goals> <phase>generate-sources</phase> </execution> </executions> <configuration> <outputDirectory>target/generated-sources/querydsl</outputDirectory> <processors> <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor> </processors> <options> <querydsl.entityAccessors>true</querydsl.entityAccessors> <querydsl.createDefaultVariable>true</querydsl.createDefaultVariable> <!--<querydsl.packageSuffix>.qdsl</querydsl.packageSuffix>--> </options> </configuration> </plugin> <plugin> <groupId>org.openclover</groupId> <artifactId>clover-maven-plugin</artifactId> <version>4.2.0</version> <configuration> <outputDirectory>${project.build.directory}/clover</outputDirectory> <generateHtml>true</generateHtml> <generateXml>true</generateXml> <generatePdf>true</generatePdf> <targetPercentage>0.3%</targetPercentage> <excludes> <exclude>**/model/**</exclude> </excludes> </configuration> <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> </plugin> <plugin> <!-- Generates models and controllers based on api-contract.yaml --> <groupId>org.openapitools</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <version>6.2.1</version> <executions> <execution> <id>attachment-controller-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/dataset/v1/attachment-controller-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.datasets.controllers</apiPackage> <modelPackage>org.qubership.atp.datasets.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>data-set-controller-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/dataset/v1/data-set-controller-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.datasets.controllers</apiPackage> <modelPackage>org.qubership.atp.datasets.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>data-set-list-controller-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/dataset/v1/data-set-list-controller-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.datasets.controllers</apiPackage> <modelPackage>org.qubership.atp.datasets.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>attribute-controller-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/dataset/v1/attribute-controller-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.datasets.controllers</apiPackage> <modelPackage>org.qubership.atp.datasets.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>visibility-area-controller-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/dataset/v1/visibility-area-controller-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.datasets.controllers</apiPackage> <modelPackage>org.qubership.atp.datasets.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>test-case-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/bv/v1/test-case-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.bv.controllers</apiPackage> <modelPackage>org.qubership.atp.bv.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>api-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/bv/v1/api-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.bv.controllers</apiPackage> <modelPackage>org.qubership.atp.bv.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> <execution> <id>public-api-v1.yaml</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <generatorName>spring</generatorName> <inputSpec>${project.basedir}/src/main/resources/apispecs/api/bv/v1/public-api-v1.yaml</inputSpec> <apiPackage>org.qubership.atp.bv.controllers</apiPackage> <modelPackage>org.qubership.atp.bv.dto</modelPackage> <modelNameSuffix>Dto</modelNameSuffix> <skipOverwrite>false</skipOverwrite> <generateModelTests>false</generateModelTests> <configOptions> <java8>true</java8> <interfaceOnly>true</interfaceOnly> <useTags>true</useTags> <skipDefaultInterface>true</skipDefaultInterface> </configOptions> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!--Spring--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> <exclusion> <artifactId>tomcat-embed-core</artifactId> <groupId>org.apache.tomcat.embed</groupId> </exclusion> <exclusion> <artifactId>tomcat-embed-websocket</artifactId> <groupId>org.apache.tomcat.embed</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>4.8.0</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-monitoring-undertow</artifactId> <version>${atp.common.version}</version> </dependency> <dependency> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-utils</artifactId> <version>${atp.common.version}</version> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-core</artifactId> <version>${keycloak.version}</version> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-spring-boot-starter</artifactId> <version>${keycloak.version}</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <type>pom</type> <scope>import</scope> <version>${spring.cloud.version}</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-openfeign-core</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-commons</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-spring</artifactId> <version>${net.javacrumbs.shedlock.version}</version> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-provider-jdbc-template</artifactId> <version>${net.javacrumbs.shedlock.version}</version> </dependency> <!-- Spring-end --> <!--Hibernate--> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>5.4.27.Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId> <version>5.4.27.Final</version> </dependency> <!--Hibernate-end--> <dependency> <groupId>com.netflix.archaius</groupId> <artifactId>archaius-core</artifactId> </dependency> <dependency> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-logging</artifactId> <version>${atp.common.version}</version> <exclusions> <exclusion> <artifactId>spring-boot-starter-web</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>commons-lang</artifactId> <groupId>commons-lang</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-jpa</artifactId> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.1</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.7.0</version> <exclusions> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-jre</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.6.1</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.10</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.1</version> <exclusions> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pcap4j</groupId> <artifactId>pcap4j-core</artifactId> <version>1.7.3</version> </dependency> <!--Feign--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-httpclient</artifactId> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-okhttp</artifactId> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <scope>provided</scope> <version>6.0</version> </dependency> <!--Feign end--> <!--Consul start--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-consul-config</artifactId> <exclusions> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>6.0.20.Final</version> <exclusions> <exclusion> <groupId>com.fasterxml</groupId> <artifactId>classmate</artifactId> </exclusion> <exclusion> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> </exclusion> </exclusions> </dependency> <!--Consul end--> <!--atp-services--> <dependency> <groupId>org.qubership.atp</groupId> <artifactId>atp-integration-spring-boot-starter</artifactId> <version>${atp.integration.version}</version> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>spring-cloud-commons</artifactId> <groupId>org.springframework.cloud</groupId> </exclusion> <exclusion> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-logging</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <artifactId>snappy-java</artifactId> <groupId>org.xerial.snappy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.10.4</version> </dependency> <dependency> <groupId>org.qubership.atp.auth</groupId> <artifactId>atp-auth-spring-boot-starter</artifactId> <version>${atp.auth.version}</version> <exclusions> <exclusion> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-all</artifactId> <version>${hazelcast.version}</version> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-eureka-one</artifactId> <version>2.0.1</version> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> <exclusion> <groupId>com.netflix.archaius</groupId> <artifactId>archaius-core</artifactId> </exclusion> <exclusion> <artifactId>jettison</artifactId> <groupId>org.codehaus.jettison</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <version>1.5.4</version> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <!-- <version>${hazelcast.version}</version>--> <version>5.2.5</version> <classifier>tests</classifier> </dependency> <!--atp-services end--> <!--eds start--> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-mongodb</artifactId> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-sync</artifactId> </dependency> <dependency> <groupId>com.sun.xml.messaging.saaj</groupId> <artifactId>saaj-impl</artifactId> <version>1.5.2</version> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>bson</artifactId> </dependency> <!--eds end--> <dependency> <groupId>org.javers</groupId> <artifactId>javers-spring-boot-starter-sql</artifactId> <version>${javers.version}</version> </dependency> <!--tests--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>uk.co.jemos.podam</groupId> <artifactId>podam</artifactId> <version>7.0.5.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> </exclusions> </dependency> <!--tests end--> <!--Code style and code checkers--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.4</version> </dependency> <!--Code style and code checkers end--> <!--Start contract-test-pacts dependencies--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <groupId>org.openapitools</groupId> <artifactId>jackson-databind-nullable</artifactId> <version>0.2.2</version> </dependency> <!-- <dependency>--> <!-- <groupId>org.qubership.atp.dataset</groupId>--> <!-- <artifactId>qubership-atp-dataset-openapi-specifications</artifactId>--> <!-- <version>1.3.99</version>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>org.qubership.automation.bv</groupId>--> <!-- <artifactId>bv-rest-openapi-specifications</artifactId>--> <!-- <version>2.8.78</version>--> <!-- </dependency>--> <!--End contract-test-pacts dependencies--> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> <exclusions> <exclusion> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </exclusion> <exclusion> <artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>2.0</version> <exclusions> <exclusion> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> </exclusion> <exclusion> <groupId>antlr</groupId> <artifactId>antlr</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <version>2.1.3</version> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>4.8.1.1</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.7.0</version> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> <exclusions> <exclusion> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>5.7.13</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring.cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <version>8.20.1</version> <exclusions> <exclusion> <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.netflix.archaius</groupId> <artifactId>archaius-core</artifactId> <version>0.7.6</version> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.qubership.atp.common</groupId> <artifactId>qubership-atp-common-probes</artifactId> <version>${atp.common.version}</version> </dependency> </dependencies> </dependencyManagement> <repositories> <!-- Maven Central repository for release versions --> <repository> <id>oss.sonatype.org</id> <url>https://central.sonatype.com</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <!-- Maven Central repository for SNAPSHOT versions--> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://central.sonatype.com/repository/maven-snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <!-- GitHub packages repository for both release and SNAPSHOT versions --> <repository> <id>github</id> <url>https://maven.pkg.github.com/netcracker/*</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <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> <groupId>org.apache.maven.plugins</groupId> <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> <groupId>org.apache.maven.plugins</groupId> <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> <groupId>org.apache.maven.plugins</groupId> <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> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/Netcracker/qubership-testing-platform-itf-core-library</url> </repository> </distributionManagement> </profile> </profiles> <pluginRepositories> <pluginRepository> <id>oss.sonatype.org</id> <url>https://central.sonatype.com</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>oss.sonatype.org-snapshot</id> <url>https://central.sonatype.com/repository/maven-snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>github</id> <url>https://maven.pkg.github.com/netcracker/*</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>