Skip to content

Commit f6b55ca

Browse files
authored
deps: use latest google-cloud-pubsublite-parent (#258)
* deps: use latest google-cloud-pubsublite-parent The latest google-cloud-pubsublite-parent has the shared config parent that has the profile to disable nexus-staging-maven-plugin. I confirmed: ``` suztomo@suztomo2:~/java-pubsublite-flink$ mvn clean deploy -V -DaltDeploymentRepository=local::default::file:${local_staging_dir} -DskipTests=true -P=-release-sonatype -P=-release-staging-repository -P=-clirr-compatibility-check -P=-checkstyle-tests -P=-animal-sniffer ``` * declare dependencies * fix dependency check
1 parent 6e705a6 commit f6b55ca

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud</groupId>
77
<artifactId>google-cloud-pubsublite-parent</artifactId>
8-
<version>1.12.0</version>
8+
<version>1.15.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>jar</packaging>
@@ -44,6 +44,19 @@
4444
</configuration>
4545
</plugin>
4646
</plugins>
47+
<pluginManagement>
48+
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-dependency-plugin</artifactId>
52+
<configuration>
53+
<ignoredUnusedDeclaredDependencies>
54+
<ignoredUnusedDeclaredDependency>com.google.flogger:google-extensions</ignoredUnusedDeclaredDependency>
55+
</ignoredUnusedDeclaredDependencies>
56+
</configuration>
57+
</plugin>
58+
</plugins>
59+
</pluginManagement>
4760
</build>
4861
<dependencies>
4962
<dependency>
@@ -97,6 +110,10 @@
97110
<artifactId>slf4j-api</artifactId>
98111
<version>2.0.6</version>
99112
</dependency>
113+
<dependency>
114+
<groupId>com.google.api</groupId>
115+
<artifactId>gax-grpc</artifactId>
116+
</dependency>
100117
<dependency>
101118
<groupId>org.apache.flink</groupId>
102119
<artifactId>flink-core</artifactId>

0 commit comments

Comments
 (0)