branch-currency-management-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.open-accelerators</groupId>
<artifactId>branch-currency-management-client</artifactId>
<version>1.0.2</version>
</dependency><?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.open-accelerators</groupId>
<artifactId>branch-currency-management</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>branch-currency-management-client</artifactId>
<name>Service Domains :: BranchCurrencyManagement :: Client</name>
<dependencies>
<dependency>
<groupId>io.github.open-accelerators</groupId>
<artifactId>branch-currency-management-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>mercury-maven-plugin</artifactId>
<version>${project.parent.version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>GrpcClient</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>