libraries-bom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.cloud</groupId> <artifactId>libraries-bom</artifactId> <version>26.59.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> <!-- adding comment for testing--> <groupId>com.google.cloud</groupId> <artifactId>libraries-bom</artifactId> <version>26.59.0</version><!-- {x-version-update:libraries-bom:current} --> <packaging>pom</packaging> <name>Google Cloud Platform Supported Libraries</name> <description> A compatible set of Google Cloud open source libraries. Document: https://cloud.google.com/java/docs/bom </description> <url>https://cloud.google.com/java/docs/bom</url> <organization> <name>Google LLC</name> <url>https://cloud.google.com</url> </organization> <inceptionYear>2019</inceptionYear> <developers> <developer> <name>Cloud Java team</name> </developer> </developers> <issueManagement> <url>https://github.com/googleapis/java-cloud-bom/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:googleapis/java-cloud-bom.git</connection> <developerConnection>scm:git:git@github.com:googleapis/java-cloud-bom.git </developerConnection> <url>https://github.com/googleapis/java-cloud-bom</url> <tag>HEAD</tag> </scm> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://raw.githubusercontent.com/googleapis/google-cloud-java/main/LICENSE</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://google.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://google.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <!-- This section overrides the protobuf version specified in first-party-dependencies. This is to provide customers a bom that includes protobuf-java 4.x. We will upgrade protobuf-bom in first-party-dependencies once we feel comfortable that most customers would not have conflict with protobuf-java 4.x. This section has to be specified before first-party-dependencies, please do not move it. --> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-bom</artifactId> <version>4.29.4</version> <type>pom</type> <scope>import</scope> </dependency> <!-- first-party-dependencies is part of java-shared-dependencies BOM in https://github.com/googleapis/sdk-platform-java/blob/main/java-shared-dependencies/first-party-dependencies/pom.xml. This includes Guava, Protobuf, gRPC, Google Auth Libraries, etc. --> <dependency> <groupId>com.google.cloud</groupId> <artifactId>first-party-dependencies</artifactId> <version>3.45.1</version> <type>pom</type> <scope>import</scope> </dependency> <!-- google-cloud-java from https://github.com/googleapis/java-cloud-bom --> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-bom</artifactId> <version>0.240.0</version><!-- {x-version-update:google-cloud-bom:current} --> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://google.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <configuration> <pomElements> <dependencyManagement>expand</dependencyManagement> </pomElements> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>