yurake/k8s-3tier-webapp

View on GitHub
application/jaxrs-grpc-quarkus/pom.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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">
    <parent>
        <groupId>webapp.3tier.k8s.parent</groupId>
        <artifactId>parent-pom</artifactId>
        <version>5.0.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>webapp.3tier.k8s</groupId>
    <artifactId>jaxrs-grpc-quarkus</artifactId>
    <dependencies>
        <dependency>
            <groupId>webapp.3tier.k8s</groupId>
            <artifactId>webapp-service</artifactId>
        </dependency>
        <dependency>
            <groupId>io.quarkus</groupId>
            <artifactId>quarkus-grpc</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>${jacoco-maven-plugin.version}</version>
                <configuration>
                    <excludes>
                        <exclude>**/grpc/*</exclude>
                        <exclude>**/*Reply*</exclude>
                        <exclude>**/*Builder.class</exclude>
                        <exclude>**/*Proto.class</exclude>
                        <exclude>**/*MethodHandlers.class</exclude>
                        <exclude>**/*Stub.class</exclude>
                        <exclude>**/*ImplBase.class</exclude>
                        <exclude>**/*Client.class</exclude>
                        <exclude>**/*Bean.class</exclude>
                        <exclude>**/*Supplier.class</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>