spi-protobuf-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>no.entur.mapstruct.spi</groupId>
<artifactId>spi-protobuf-parent</artifactId>
<version>1.52.0</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>
<groupId>no.entur.mapstruct.spi</groupId>
<artifactId>spi-protobuf-parent</artifactId>
<version>1.52.0</version>
<packaging>pom</packaging>
<name>Mapstruct SPI implementation for protobuf stubs</name>
<description>Protobuf support for mapstruct</description>
<modules>
<module>spi-impl</module>
<module>support-core</module>
<module>support-standard</module>
<module>support-lite</module>
</modules>
<properties>
<grpc.api.version>2.51.0</grpc.api.version>
<gson.version>2.12.1</gson.version>
<guava.version>33.4.0-jre</guava.version>
<jreleaser-maven-plugin.version>1.18.0</jreleaser-maven-plugin.version>
<jupiter.version>5.11.4</jupiter.version>
<maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version>
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<!-- Downgraded from 1.5.3.Final because of https://github.com/mapstruct/mapstruct/issues/2825 . Nested types (ie includes) are causing new methods to be generated and these do not respect original annotations. -->
<org.mapstruct.version>1.6.3</org.mapstruct.version>
<os.mavenplugin.version>1.7.1</os.mavenplugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<proto.version>4.32.0</proto.version>
<protobuf.plugin.version>3.4.0</protobuf.plugin.version>
<slf4j.version>2.0.16</slf4j.version>
<spotless.version>2.44.5</spotless.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>no.entur.mapstruct.spi</groupId>
<artifactId>protobuf-support-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
<version>${grpc.api.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${proto.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<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>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- due to security issue -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>${jreleaser-maven-plugin.version}</version>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<configuration>
<java>
<eclipse>
<file>eclipsecodestyle/abt_codestyle.xml</file>
<version>4.26</version>
<!-- Eclipse JDT version of the formatter implementation -->
</eclipse>
<removeUnusedImports></removeUnusedImports>
<importOrder>
<file>eclipsecodestyle/abt.importorder</file>
</importOrder>
<endWithNewline></endWithNewline>
</java>
<encoding>UTF-8</encoding>
</configuration>
<dependencies>
<dependency>
<groupId>no.entur</groupId>
<artifactId>abt-codestyle</artifactId>
<version>0.36</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<excludes>
<exclude></exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.5.0</version>
<configuration>
<organizationName>Entur</organizationName>
<inceptionYear>2019</inceptionYear>
<licenseFile>LICENSE.txt</licenseFile>
<licenseName>eupl_v1_1</licenseName>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
<executions>
<execution>
<id>check-license-header</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<version>4.0.0</version>
<configuration>
<predefinedSortOrder>custom_1</predefinedSortOrder>
<nrOfIndentSpace>4</nrOfIndentSpace>
<lineSeparator>\n</lineSeparator>
<sortProperties>true</sortProperties>
<keepBlankLines>false</keepBlankLines>
<createBackupFile>false</createBackupFile>
<sortDependencies>scope</sortDependencies>
</configuration>
<executions>
<execution>
<goals>
<goal>sort</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<source>17</source>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<jreleaser>
<signing>
<active>ALWAYS</active>
<armored>true</armored>
</signing>
<deploy>
<maven>
<mavenCentral>
<sonatype>
<active>RELEASE</active>
<url>https://central.sonatype.com/api/v1/publisher</url>
<stagingRepositories>target/staging-deploy</stagingRepositories>
</sonatype>
</mavenCentral>
<nexus2>
<maven-central>
<active>SNAPSHOT</active>
<url>https://ossrh-staging-api.central.sonatype.com/service/local</url>
<snapshotUrl>https://central.sonatype.com/repository/maven-snapshots</snapshotUrl>
<applyMavenCentralRules>true</applyMavenCentralRules>
<snapshotSupported>true</snapshotSupported>
<closeRepository>true</closeRepository>
<releaseRepository>true</releaseRepository>
<stagingRepositories>target/staging-deploy</stagingRepositories>
</maven-central>
</nexus2>
</maven>
</deploy>
<release>
<github>
<skipTag>false</skipTag>
<skipRelease>true</skipRelease>
</github>
</release>
</jreleaser>
</configuration>
</plugin>
</plugins>
</build>
<url>https://github.com/entur/mapstruct-spi-protobuf</url>
<inceptionYear>2018</inceptionYear>
<organization>
<name>Entur AS and original authors</name>
<url>http://www.entur.org/</url>
</organization>
<licenses>
<license>
<name>EUPL-1.2 with modifications</name>
<url>https://joinup.ec.europa.eu/software/page/eupl</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Arne Seime</name>
<email>arne.seime@entur.org</email>
<organization>Entur</organization>
<organizationUrl>http://www.entur.org</organizationUrl>
</developer>
<developer>
<name>Dainius Figoras</name>
<email>dainius.figoras@entur.org</email>
<organization>Entur</organization>
<organizationUrl>http://www.entur.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:ssh://git@github.com/entur/mapstruct-spi-protobuf.git</connection>
<developerConnection>scm:git:ssh://git@github.com/entur/mapstruct-spi-protobuf.git</developerConnection>
<url>https://github.com/entur/mapstruct-spi-protobuf/tree/master</url>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>examples</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>usage</module>
</modules>
</profile>
<profile>
<id>publication</id>
<properties>
<altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>