Skip to content

Commit 3d9b19c

Browse files
authored
build: removing unnecessary maven-compiler-plugin configuration (#1761)
The maven-compiler-plugin configuration is already defined in the shared config pom.xml. This project does not need to declare the plugin and its configuration. https://togithub.com/googleapis/java-shared-config/blob/778a547a09de71dbf9e5a42b155f12d15c319864/pom.xml#L738
1 parent 6d1c7d3 commit 3d9b19c

File tree

3 files changed

+4
-22
lines changed

3 files changed

+4
-22
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,20 @@ If you are using Maven without the BOM, add this to your dependencies:
5252
If you are using Gradle 5.x or later, add this to your dependencies:
5353

5454
```Groovy
55-
implementation platform('com.google.cloud:libraries-bom:26.23.0')
55+
implementation platform('com.google.cloud:libraries-bom:26.24.0')
5656
5757
implementation 'com.google.cloud:google-cloud-pubsub'
5858
```
5959
If you are using Gradle without BOM, add this to your dependencies:
6060

6161
```Groovy
62-
implementation 'com.google.cloud:google-cloud-pubsub:1.125.4'
62+
implementation 'com.google.cloud:google-cloud-pubsub:1.125.5'
6363
```
6464

6565
If you are using SBT, add this to your dependencies:
6666

6767
```Scala
68-
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.125.4"
68+
libraryDependencies += "com.google.cloud" % "google-cloud-pubsub" % "1.125.5"
6969
```
7070
<!-- {x-version-update-end} -->
7171

@@ -408,7 +408,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
408408
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-pubsub/java11.html
409409
[stability-image]: https://img.shields.io/badge/stability-stable-green
410410
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-pubsub.svg
411-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-pubsub/1.125.4
411+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-pubsub/1.125.5
412412
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
413413
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
414414
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

google-cloud-pubsub/EnableAutoValue.txt

Whitespace-only changes.

google-cloud-pubsub/pom.xml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -180,24 +180,6 @@
180180
</plugins>
181181
</pluginManagement>
182182
<plugins>
183-
<plugin>
184-
<artifactId>maven-compiler-plugin</artifactId>
185-
<version>3.11.0</version>
186-
<configuration>
187-
<source>1.8</source>
188-
<target>1.8</target>
189-
<encoding>UTF-8</encoding>
190-
<compilerArgument>-Xlint:unchecked</compilerArgument>
191-
<annotationProcessorPaths>
192-
<path>
193-
<groupId>com.google.auto.value</groupId>
194-
<artifactId>auto-value</artifactId>
195-
<version>${auto-value-annotation.version}</version>
196-
</path>
197-
</annotationProcessorPaths>
198-
</configuration>
199-
</plugin>
200-
201183
<plugin>
202184
<groupId>org.codehaus.mojo</groupId>
203185
<artifactId>flatten-maven-plugin</artifactId>

0 commit comments

Comments
 (0)