grpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opennms.plugins.cloud.wrap</groupId>
<artifactId>grpc</artifactId>
<version>1.0.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>cloud-wrap</artifactId>
<groupId>org.opennms.plugins.cloud</groupId>
<version>1.0.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.opennms.plugins.cloud.wrap</groupId>
<artifactId>grpc</artifactId>
<packaging>bundle</packaging>
<name>cloud :: wrap :: grpc</name>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.slf4j:slf4j-api</exclude>
<exclude>org.slf4j:slf4j-ext</exclude>
<exclude>com.google.protobuf:protobuf-java</exclude>
</excludes>
</artifactSet>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>javax.net.ssl,
javax.security.cert,
javax.security.auth.x500,
com.google.protobuf</Import-Package>
<Export-Package>io.grpc,
io.grpc.stub,
io.grpc.protobuf,
io.grpc.internal,
io.grpc.netty.shaded.io.netty.util.collection,
io.grpc.netty.shaded.io.grpc.netty,
io.grpc.netty.shaded.io.netty.handler.ssl,
io.grpc.netty.shaded.io.netty.handler.ssl.util,
io.grpc.netty.shaded.io.netty.util.collection</Export-Package>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.19.4</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>