Skip to content

Commit 0e59641

Browse files
netdpbronshapiro
authored andcommitted
Create a Guava BOM.
RELNOTES=Create a BOM for Guava. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=222112576
1 parent b8d5ecd commit 0e59641

File tree

4 files changed

+111
-0
lines changed

4 files changed

+111
-0
lines changed

android/guava-bom/pom.xml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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>HEAD-android-SNAPSHOT</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>The Apache Software 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-testlib</artifactId>
48+
<version>${project.version}</version>
49+
</dependency>
50+
</dependencies>
51+
</dependencyManagement>
52+
</project>

android/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
</ciManagement>
6363
<modules>
6464
<module>guava</module>
65+
<module>guava-bom</module>
6566
<module>guava-testlib</module>
6667
<module>guava-tests</module>
6768
</modules>

guava-bom/pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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>HEAD-jre-SNAPSHOT</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>The Apache Software 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>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
</ciManagement>
6363
<modules>
6464
<module>guava</module>
65+
<module>guava-bom</module>
6566
<module>guava-gwt</module>
6667
<module>guava-testlib</module>
6768
<module>guava-tests</module>

0 commit comments

Comments
 (0)