Skip to content

Commit 3015f47

Browse files
authored
chore: add parent pom (#12)
* chore: add parent pom * fix: dependency declarations
1 parent 1c61193 commit 3015f47

File tree

5 files changed

+505
-15
lines changed

5 files changed

+505
-15
lines changed

java-core/google-cloud-core-grpc/pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.cloud</groupId>
45
<artifactId>google-cloud-core-grpc</artifactId>
5-
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core-grpc:current} -->
6+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
67
<packaging>jar</packaging>
78
<name>Google Cloud Core gRPC</name>
89
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-grpc</url>
@@ -11,8 +12,8 @@
1112
</description>
1213
<parent>
1314
<groupId>com.google.cloud</groupId>
14-
<artifactId>google-cloud-clients</artifactId>
15-
<version>0.108.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-clients:current} -->
15+
<artifactId>google-cloud-core-parent</artifactId>
16+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
1617
</parent>
1718
<properties>
1819
<site.installationModule>google-cloud-core-grpc</site.installationModule>
@@ -30,6 +31,31 @@
3031
<groupId>com.google.guava</groupId>
3132
<artifactId>guava</artifactId>
3233
</dependency>
34+
<dependency>
35+
<groupId>com.google.api</groupId>
36+
<artifactId>gax</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.google.api</groupId>
40+
<artifactId>gax-grpc</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.google.api</groupId>
44+
<artifactId>api-common</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>io.grpc</groupId>
48+
<artifactId>grpc-api</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.grpc</groupId>
52+
<artifactId>grpc-core</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.google.http-client</groupId>
56+
<artifactId>google-http-client</artifactId>
57+
</dependency>
58+
3359
<dependency>
3460
<groupId>junit</groupId>
3561
<artifactId>junit</artifactId>
@@ -45,9 +71,5 @@
4571
<artifactId>objenesis</artifactId>
4672
<scope>test</scope>
4773
</dependency>
48-
<dependency>
49-
<groupId>com.google.api</groupId>
50-
<artifactId>gax-grpc</artifactId>
51-
</dependency>
5274
</dependencies>
5375
</project>

java-core/google-cloud-core-http/pom.xml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.cloud</groupId>
45
<artifactId>google-cloud-core-http</artifactId>
5-
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core-http:current} -->
6+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
67
<packaging>jar</packaging>
78
<name>Google Cloud Core HTTP</name>
89
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-http</url>
@@ -11,8 +12,8 @@
1112
</description>
1213
<parent>
1314
<groupId>com.google.cloud</groupId>
14-
<artifactId>google-cloud-clients</artifactId>
15-
<version>0.108.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-clients:current} -->
15+
<artifactId>google-cloud-core-parent</artifactId>
16+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
1617
</parent>
1718
<properties>
1819
<site.installationModule>google-cloud-core-http</site.installationModule>
@@ -33,7 +34,6 @@
3334
<dependency>
3435
<groupId>com.google.http-client</groupId>
3536
<artifactId>google-http-client</artifactId>
36-
<scope>compile</scope>
3737
</dependency>
3838
<dependency>
3939
<groupId>com.google.guava</groupId>
@@ -42,17 +42,35 @@
4242
<dependency>
4343
<groupId>com.google.api-client</groupId>
4444
<artifactId>google-api-client</artifactId>
45-
<scope>compile</scope>
4645
</dependency>
4746
<dependency>
4847
<groupId>com.google.http-client</groupId>
4948
<artifactId>google-http-client-appengine</artifactId>
50-
<scope>compile</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.google.api</groupId>
52+
<artifactId>gax</artifactId>
5153
</dependency>
5254
<dependency>
5355
<groupId>com.google.api</groupId>
5456
<artifactId>gax-httpjson</artifactId>
5557
</dependency>
58+
<dependency>
59+
<groupId>com.google.code.findbugs</groupId>
60+
<artifactId>jsr305</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>io.opencensus</groupId>
64+
<artifactId>opencensus-api</artifactId>
65+
</dependency>
66+
<dependency>
67+
<groupId>io.opencensus</groupId>
68+
<artifactId>opencensus-contrib-http-util</artifactId>
69+
</dependency>
70+
<dependency>
71+
<groupId>com.google.api</groupId>
72+
<artifactId>api-common</artifactId>
73+
</dependency>
5674

5775
<!-- Test dependencies -->
5876
<dependency>

java-core/google-cloud-core/pom.xml

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.cloud</groupId>
45
<artifactId>google-cloud-core</artifactId>
56
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
67
<packaging>jar</packaging>
@@ -11,8 +12,8 @@
1112
</description>
1213
<parent>
1314
<groupId>com.google.cloud</groupId>
14-
<artifactId>google-cloud-clients</artifactId>
15-
<version>0.108.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-clients:current} -->
15+
<artifactId>google-cloud-core-parent</artifactId>
16+
<version>1.90.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-core:current} -->
1617
</parent>
1718
<properties>
1819
<site.installationModule>google-cloud-core</site.installationModule>
@@ -49,6 +50,39 @@
4950
<groupId>com.google.api.grpc</groupId>
5051
<artifactId>proto-google-iam-v1</artifactId>
5152
</dependency>
53+
<dependency>
54+
<groupId>org.threeten</groupId>
55+
<artifactId>threetenbp</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>com.google.api</groupId>
59+
<artifactId>api-common</artifactId>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.google.auth</groupId>
63+
<artifactId>google-auth-library-credentials</artifactId>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.google.auth</groupId>
67+
<artifactId>google-auth-library-oauth2-http</artifactId>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.google.http-client</groupId>
71+
<artifactId>google-http-client</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.google.http-client</groupId>
75+
<artifactId>google-http-client-jackson2</artifactId>
76+
</dependency>
77+
<dependency>
78+
<groupId>com.google.protobuf</groupId>
79+
<artifactId>protobuf-java</artifactId>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.google.guava</groupId>
83+
<artifactId>guava</artifactId>
84+
</dependency>
85+
5286
<dependency>
5387
<groupId>com.google.truth</groupId>
5488
<artifactId>truth</artifactId>

0 commit comments

Comments
 (0)