protobuf-mapstruct-spi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.krraghavan</groupId> <artifactId>protobuf-mapstruct-spi</artifactId> <version>0.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright MapStruct Authors. Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>schema-generators</artifactId> <groupId>com.github.krraghavan</groupId> <version>0.1.4</version> </parent> <artifactId>protobuf-mapstruct-spi</artifactId> <packaging>pom</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <os.mavenplugin.version>1.4.0.Final</os.mavenplugin.version> <protobuf.plugin.version>0.5.0</protobuf.plugin.version> <protobuf.java.version>3.2.0</protobuf.java.version> <org.mapstruct.version>1.4.1.Final</org.mapstruct.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <jacoco.skip>true</jacoco.skip> </properties> <modules> <module>protobuf-spi-impl</module> <module>protobuf-usage</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> <version>${org.mapstruct.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${org.mapstruct.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${commons-lang3.version}</version> </plugin> </plugins> </pluginManagement> </build> </project>