|
| 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.cloud</groupId> |
| 5 | + <artifactId>google-internal-artifact</artifactId> |
| 6 | + <version>0.0.1-SNAPSHOT</version> |
| 7 | + <packaging>pom</packaging> |
| 8 | + <parent> |
| 9 | + <groupId>com.google.cloud</groupId> |
| 10 | + <artifactId>google-cloud-shared-config</artifactId> |
| 11 | + <version>1.6.0</version> |
| 12 | + <relativePath/> |
| 13 | + </parent> |
| 14 | + |
| 15 | + <name>Google Cloud Internal Artifact for testing</name> |
| 16 | + <url>https://github.com/googleapis/java-bigtable</url> |
| 17 | + <description> |
| 18 | + BOM for Google Cloud Internal Artifact for testing |
| 19 | + </description> |
| 20 | + |
| 21 | + <organization> |
| 22 | + <name>Google LLC</name> |
| 23 | + </organization> |
| 24 | + |
| 25 | + <licenses> |
| 26 | + <license> |
| 27 | + <name>The Apache Software License, Version 2.0</name> |
| 28 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 29 | + <distribution>repo</distribution> |
| 30 | + </license> |
| 31 | + </licenses> |
| 32 | + |
| 33 | + <dependencyManagement> |
| 34 | + <dependencies> |
| 35 | + <!-- this artifact contains com.google.cloud.datastore:datastore-v1-proto-client --> |
| 36 | + <dependency> |
| 37 | + <groupId>com.google.cloud</groupId> |
| 38 | + <artifactId>google-cloud-datastore-bom</artifactId> |
| 39 | + <version>2.17.4</version> |
| 40 | + <scope>import</scope> |
| 41 | + <type>pom</type> |
| 42 | + </dependency> |
| 43 | + <!-- this artifact contains com.google.cloud:proto-google-cloud-firestore-bundle-v1 --> |
| 44 | + <dependency> |
| 45 | + <groupId>com.google.cloud</groupId> |
| 46 | + <artifactId>google-cloud-firestore-bom</artifactId> |
| 47 | + <version>3.15.2</version> |
| 48 | + <scope>import</scope> |
| 49 | + <type>pom</type> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.google.cloud</groupId> |
| 53 | + <artifactId>google-cloud-bigtable-bom</artifactId> |
| 54 | + <version>2.29.0</version> |
| 55 | + <scope>import</scope> |
| 56 | + <type>pom</type> |
| 57 | + </dependency> |
| 58 | + </dependencies> |
| 59 | + </dependencyManagement> |
| 60 | + |
| 61 | + <build> |
| 62 | + <plugins> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 66 | + <configuration> |
| 67 | + <skip>true</skip> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + |
| 71 | + <!-- Using maven site plugin only as a hook for javadoc:aggregate, don't need the reports --> |
| 72 | + <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-site-plugin</artifactId> |
| 75 | + |
| 76 | + <configuration> |
| 77 | + <generateReports>false</generateReports> |
| 78 | + </configuration> |
| 79 | + </plugin> |
| 80 | + </plugins> |
| 81 | + </build> |
| 82 | +</project> |
0 commit comments