1<?xml version="1.0" encoding="UTF-8"?> 2<project 3 xmlns="http://maven.apache.org/POM/4.0.0" 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 6 7 <modelVersion>4.0.0</modelVersion> 8 9 <groupId>com.google.guava</groupId> 10 <artifactId>guava-bom</artifactId> 11 <version>30.0-jre</version> 12 <packaging>pom</packaging> 13 14 <parent> 15 <groupId>org.sonatype.oss</groupId> 16 <artifactId>oss-parent</artifactId> 17 <version>9</version> 18 </parent> 19 20 <name>Guava BOM</name> 21 <description>BOM for Guava artifacts</description> 22 <url>https://github.com/google/guava</url> 23 <inceptionYear>2010</inceptionYear> 24 25 <issueManagement> 26 <system>GitHub Issues</system> 27 <url>https://github.com/google/guava/issues</url> 28 </issueManagement> 29 30 <licenses> 31 <license> 32 <name>Apache License, Version 2.0</name> 33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 34 <distribution>repo</distribution> 35 </license> 36 </licenses> 37 38 <dependencyManagement> 39 <dependencies> 40 <dependency> 41 <groupId>com.google.guava</groupId> 42 <artifactId>guava</artifactId> 43 <version>${project.version}</version> 44 </dependency> 45 <dependency> 46 <groupId>com.google.guava</groupId> 47 <artifactId>guava-gwt</artifactId> 48 <version>${project.version}</version> 49 </dependency> 50 <dependency> 51 <groupId>com.google.guava</groupId> 52 <artifactId>guava-testlib</artifactId> 53 <version>${project.version}</version> 54 </dependency> 55 </dependencies> 56 </dependencyManagement> 57</project> 58