1<?xml version='1.0' encoding='UTF-8'?> 2<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"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>com.google.api.grpc</groupId> 5 <artifactId>google-common-protos-parent</artifactId> 6 <packaging>pom</packaging> 7 <version>2.18.0</version><!-- {x-version-update:proto-google-common-protos:current} --> 8 <name>Google Common Protos Parent</name> 9 <description> 10 Java idiomatic client for Google Cloud Platform services. 11 </description> 12 13 <parent> 14 <groupId>com.google.api</groupId> 15 <artifactId>gapic-generator-java-pom-parent</artifactId> 16 <version>2.19.0</version><!-- {x-version-update:gapic-generator-java:current} --> 17 <relativePath>../gapic-generator-java-pom-parent</relativePath> 18 </parent> 19 20 <developers> 21 <developer> 22 <id>chingor</id> 23 <name>Jeff Ching</name> 24 <email>[email protected]</email> 25 <organization>Google</organization> 26 <roles> 27 <role>Developer</role> 28 </roles> 29 </developer> 30 </developers> 31 <organization> 32 <name>Google LLC</name> 33 </organization> 34 <distributionManagement> 35 <snapshotRepository> 36 <id>sonatype-nexus-snapshots</id> 37 <url>https://google.google.oss.sonatype.org/content/repositories/snapshots</url> 38 </snapshotRepository> 39 <repository> 40 <id>sonatype-nexus-staging</id> 41 <url>https://google.google.oss.sonatype.org/service/local/staging/deploy/maven2/</url> 42 </repository> 43 </distributionManagement> 44 <licenses> 45 <license> 46 <name>Apache-2.0</name> 47 <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> 48 </license> 49 </licenses> 50 51 <properties> 52 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 53 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 54 <github.global.server>github</github.global.server> 55 <site.installationModule>google-iam-parent</site.installationModule> 56 <junit.version>4.13.2</junit.version> 57 <guava.version>31.1-jre</guava.version> 58 </properties> 59 60 <dependencyManagement> 61 <dependencies> 62 <dependency> 63 <groupId>com.google.protobuf</groupId> 64 <artifactId>protobuf-bom</artifactId> 65 <version>${protobuf.version}</version> 66 <type>pom</type> 67 <scope>import</scope> 68 </dependency> 69 <dependency> 70 <groupId>com.google.api.grpc</groupId> 71 <artifactId>grpc-google-common-protos</artifactId> 72 <version>2.18.0</version><!-- {x-version-update:grpc-google-common-protos:current} --> 73 </dependency> 74 <dependency> 75 <groupId>io.grpc</groupId> 76 <artifactId>grpc-bom</artifactId> 77 <version>${grpc.version}</version> 78 <type>pom</type> 79 <scope>import</scope> 80 </dependency> 81 <dependency> 82 <groupId>com.google.api.grpc</groupId> 83 <artifactId>proto-google-common-protos</artifactId> 84 <version>2.18.0</version><!-- {x-version-update:proto-google-common-protos:current} --> 85 </dependency> 86 <dependency> 87 <groupId>com.google.guava</groupId> 88 <artifactId>guava</artifactId> 89 <version>${guava.version}</version> 90 </dependency> 91 <dependency> 92 <groupId>javax.annotation</groupId> 93 <artifactId>javax.annotation-api</artifactId> 94 <version>${javax.annotation-api.version}</version> 95 </dependency> 96 97 <dependency> 98 <groupId>junit</groupId> 99 <artifactId>junit</artifactId> 100 <version>${junit.version}</version> 101 <scope>test</scope> 102 </dependency> 103 </dependencies> 104 </dependencyManagement> 105 106 <modules> 107 <module>proto-google-common-protos</module> 108 <module>grpc-google-common-protos</module> 109 </modules> 110 111 <reporting> 112 <plugins> 113 <plugin> 114 <groupId>org.apache.maven.plugins</groupId> 115 <artifactId>maven-project-info-reports-plugin</artifactId> 116 <version>3.4.2</version> 117 <reportSets> 118 <reportSet> 119 <reports> 120 <report>index</report> 121 <report>dependency-info</report> 122 <report>team</report> 123 <report>ci-management</report> 124 <report>issue-management</report> 125 <report>licenses</report> 126 <report>scm</report> 127 <report>dependency-management</report> 128 <report>distribution-management</report> 129 <report>summary</report> 130 <report>modules</report> 131 </reports> 132 </reportSet> 133 </reportSets> 134 <configuration> 135 <dependencyDetailsEnabled>true</dependencyDetailsEnabled> 136 <artifactId>${site.installationModule}</artifactId> 137 <packaging>jar</packaging> 138 </configuration> 139 </plugin> 140 <plugin> 141 <groupId>org.apache.maven.plugins</groupId> 142 <artifactId>maven-javadoc-plugin</artifactId> 143 <version>3.5.0</version> 144 <reportSets> 145 <reportSet> 146 <id>html</id> 147 <reports> 148 <report>aggregate</report> 149 <report>javadoc</report> 150 </reports> 151 </reportSet> 152 </reportSets> 153 <configuration> 154 <doclint>none</doclint> 155 <show>protected</show> 156 <nohelp>true</nohelp> 157 <outputDirectory>${project.build.directory}/javadoc</outputDirectory> 158 <groups> 159 <group> 160 <title>Test helpers packages</title> 161 <packages>com.google.cloud.testing</packages> 162 </group> 163 <group> 164 <title>SPI packages</title> 165 <packages>com.google.cloud.spi*</packages> 166 </group> 167 </groups> 168 169 <links> 170 <link>https://grpc.io/grpc-java/javadoc/</link> 171 <link>https://developers.google.com/protocol-buffers/docs/reference/java/</link> 172 </links> 173 </configuration> 174 </plugin> 175 </plugins> 176 </reporting> 177 178 <!-- Skip google-common-protos when analyzing showcase test coverage on SonarCloud --> 179 <profiles> 180 <profile> 181 <id>showcase-sonar-analysis</id> 182 <activation> 183 <property> 184 <name>enableShowcaseTestCoverage</name> 185 </property> 186 </activation> 187 <properties> 188 <sonar.skip>true</sonar.skip> 189 </properties> 190 </profile> 191 </profiles> 192</project> 193