pgv-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.envoyproxy.protoc-gen-validate</groupId>
<artifactId>pgv-java</artifactId>
<version>0.6.13</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>io.envoyproxy.protoc-gen-validate</groupId>
<artifactId>pgv-java</artifactId>
<version>0.6.13</version>
<modules>
<module>pgv-java-stub</module>
<module>pgv-java-validation</module>
<module>pgv-java-grpc</module>
<module>pgv-artifacts</module>
<module>pgv-test-coverage-report</module>
</modules>
<packaging>pom</packaging>
<name>PGV-Java Parent</name>
<description>Protoc plugin to generate protobuf message validators.</description>
<url>https://github.com/envoyproxy/protoc-gen-validate</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>rmichela</id>
<name>Ryan Michela</name>
<email>rmichela@salesforce.com</email>
</developer>
<developer>
<id>ramaraochavali</id>
<name>Rama Chavali</name>
<email>rama.rao@salesforce.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<protoc.version>3.19.4</protoc.version>
<google.protobuf.version>3.19.4</google.protobuf.version>
<protobuf.maven.plugin.version>0.6.1</protobuf.maven.plugin.version>
<re2j.version>1.5</re2j.version>
<commons.validator.version>1.7</commons.validator.version>
<grpc.version>1.42.1</grpc.version>
<junit.version>4.13.1</junit.version>
<assertj.version>3.11.1</assertj.version>
<java.version>1.8</java.version>
<proto-google-common-protos.version>2.7.0</proto-google-common-protos.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<author>false</author>
<breakiterator>true</breakiterator>
<doclint>accessibility,html,reference,syntax</doclint>
<keywords>true</keywords>
<version>false</version>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{project.version}-java</tagNameFormat>
<scmCommentPrefix>java release: </scmCommentPrefix>
<checkModificationExcludes>
<checkModificationExclude>java/pom.xml</checkModificationExclude>
</checkModificationExcludes>
</configuration>
<!-- No executions -->
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>signing</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<url>https://github.com/envoyproxy/protoc-gen-validate</url>
<connection>scm:git:git@github.com:lyft/protoc-gen-validate.git</connection>
<developerConnection>scm:git:git@github.com:lyft/protoc-gen-validate.git</developerConnection>
<tag>v0.6.9-rc.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<relocation>
<groupId>build.buf.protoc-gen-validate</groupId>
</relocation>
</distributionManagement>
</project>