qubership-atp-ram-aggregator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.qubership.atp.ram</groupId> <artifactId>qubership-atp-ram-aggregator</artifactId> <version>2.2.204</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.ram</groupId> <artifactId>qubership-atp-ram-aggregator</artifactId> <version>2.2.204</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Qubership Testing Platform RAM Service</description> <url>https://github.com/Netcracker/qubership-testing-platform-ram</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> <modules> <module>qubership-atp-ram-rest-openapi-specifications</module> <module>qubership-atp-ram</module> <module>qubership-atp-ram-distribution</module> <module>qubership-atp-ram-contract-test-pacts</module> </modules> <scm> <connection>scm:git:https//github.com/Netcracker/qubership-testing-platform-ram.git</connection> <developerConnection>scm:git:https://github.com/Netcracker/qubership-testing-platform-ram.git</developerConnection> <tag>v2.2.204</tag> <url>scm:git:https://github.com/Netcracker/qubership-testing-platform-ram/tree/main</url> </scm> <properties> <tool.config.keys.prefix>${project.name}</tool.config.keys.prefix> <javers.version>6.6.4</javers.version> <java.version>21</java.version> <maven.compiler.source>1.8</maven.compiler.source> <scm.revision>local_build</scm.revision> <spring.boot.version>2.7.18</spring.boot.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <netty-handler.version>4.1.118.Final</netty-handler.version> <spring.cloud.version>2021.0.8</spring.cloud.version> <lombok.version>1.18.30</lombok.version> <console.encoding>UTF-8</console.encoding> <maven.compiler.target>1.8</maven.compiler.target> <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version> <slf4j.version>1.7.36</slf4j.version> <mapstruct.version>1.5.5.Final</mapstruct.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <atp.auth.version>1.2.60</atp.auth.version> </properties> <dependencyManagement> <dependencies> <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.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring.cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.javers</groupId> <artifactId>javers-spring-boot-starter-mongo</artifactId> <version>${javers.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>2.0.2</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> </exclusion> <exclusion> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> <version>2.0.2</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.12.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.qubership.atp.auth</groupId> <artifactId>atp-auth-spring-boot-starter</artifactId> <version>${atp.auth.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>${netty-handler.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler-proxy</artifactId> <version>${netty-handler.version}</version> </dependency> </dependencies> </dependencyManagement> <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> <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> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>1.9.5</version> <configuration> <tag>atp-ram-${project.version}</tag> </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-ram</url> </repository> </distributionManagement> </profile> </profiles> </project>