apicurio-registry-serdes-protobuf-serde
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-serdes-protobuf-serde</artifactId> <version>3.0.0.M4</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry</artifactId> <version>3.0.0.M4</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>apicurio-registry-serdes-protobuf-serde</artifactId> <packaging>jar</packaging> <name>apicurio-registry-serdes-protobuf-serde</name> <dependencies> <dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-serde-common</artifactId> </dependency> <dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-schema-util-protobuf</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> <dependency> <groupId>com.squareup.wire</groupId> <artifactId>wire-schema</artifactId> </dependency> <dependency> <groupId>com.squareup.wire</groupId> <artifactId>wire-compiler</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.1</version> <executions> <execution> <goals> <goal>detect</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>${proto-plugin.version}</version> <extensions>true</extensions> <executions> <execution> <id>gencode</id> <goals> <goal>compile</goal> </goals> <phase>generate-sources</phase> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>