Skip to content
This repository was archived by the owner on Dec 3, 2023. It is now read-only.

Commit 3cb19a0

Browse files
authored
feat: add google-cloud-core-bom artifact (#13)
* feat: add google-cloud-core-bom artifact * fix: skip checkstyle on bom * fix: bom version
1 parent 6e3ccf3 commit 3cb19a0

File tree

3 files changed

+93
-69
lines changed

3 files changed

+93
-69
lines changed

google-cloud-core-bom/pom.xml

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?xml version="1.0"?>
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-cloud-core-bom</artifactId>
6+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
7+
<packaging>pom</packaging>
8+
<parent>
9+
<groupId>com.google.cloud</groupId>
10+
<artifactId>google-cloud-shared-config</artifactId>
11+
<version>0.1.0</version>
12+
</parent>
13+
14+
<name>Google Cloud Core</name>
15+
<url>https://github.com/googleapis/java-core/tree/master/google-cloud-core-bom</url>
16+
<description>
17+
BOM for Google Cloud Core
18+
</description>
19+
20+
<organization>
21+
<name>Google LLC</name>
22+
</organization>
23+
24+
<developers>
25+
<developer>
26+
<id>chingor13</id>
27+
<name>Jeff Ching</name>
28+
<email>[email protected]</email>
29+
<organization>Google LLC</organization>
30+
<roles>
31+
<role>Developer</role>
32+
</roles>
33+
</developer>
34+
</developers>
35+
36+
<scm>
37+
<connection>scm:git:https://github.com/googleapis/java-core.git</connection>
38+
<developerConnection>scm:git:[email protected]:googleapis/java-core.git</developerConnection>
39+
<url>https://github.com/googleapis/java-core</url>
40+
</scm>
41+
42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>sonatype-nexus-snapshots</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
<repository>
48+
<id>sonatype-nexus-staging</id>
49+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
50+
</repository>
51+
</distributionManagement>
52+
53+
<licenses>
54+
<license>
55+
<name>The Apache Software License, Version 2.0</name>
56+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
57+
<distribution>repo</distribution>
58+
</license>
59+
</licenses>
60+
61+
<dependencyManagement>
62+
<dependencies>
63+
<dependency>
64+
<groupId>com.google.cloud</groupId>
65+
<artifactId>google-cloud-core</artifactId>
66+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
67+
</dependency>
68+
<dependency>
69+
<groupId>com.google.cloud</groupId>
70+
<artifactId>google-cloud-core-grpc</artifactId>
71+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
72+
</dependency>
73+
<dependency>
74+
<groupId>com.google.cloud</groupId>
75+
<artifactId>google-cloud-core-http</artifactId>
76+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
77+
</dependency>
78+
</dependencies>
79+
</dependencyManagement>
80+
81+
<build>
82+
<plugins>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-checkstyle-plugin</artifactId>
86+
<configuration>
87+
<skip>true</skip>
88+
</configuration>
89+
</plugin>
90+
</plugins>
91+
</build>
92+
</project>

google-cloud-core/README.md

-69
This file was deleted.

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@
338338
<module>google-cloud-core</module>
339339
<module>google-cloud-core-http</module>
340340
<module>google-cloud-core-grpc</module>
341+
<module>google-cloud-core-bom</module>
341342
</modules>
342343

343344
<reporting>

0 commit comments

Comments
 (0)