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

Commit 22adbcf

Browse files
authored
deps: rely on shared-config for auto-value configuration (#222)
* deps: rely on shared-config for auto-value configuration * chore: remove unused property * chore: fix declared test dependencies
1 parent e86dbe7 commit 22adbcf

File tree

5 files changed

+0
-50
lines changed

5 files changed

+0
-50
lines changed

google-cloud-core-grpc/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,5 @@
6666
<artifactId>easymock</artifactId>
6767
<scope>test</scope>
6868
</dependency>
69-
<dependency>
70-
<groupId>org.objenesis</groupId>
71-
<artifactId>objenesis</artifactId>
72-
<scope>test</scope>
73-
</dependency>
7469
</dependencies>
7570
</project>

google-cloud-core-http/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
<artifactId>easymock</artifactId>
8484
<scope>test</scope>
8585
</dependency>
86-
<dependency>
87-
<groupId>org.objenesis</groupId>
88-
<artifactId>objenesis</artifactId>
89-
<scope>test</scope>
90-
</dependency>
9186
<dependency>
9287
<groupId>com.google.truth</groupId>
9388
<artifactId>truth</artifactId>

google-cloud-core/EnableAutoValue.txt

Whitespace-only changes.

google-cloud-core/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@
8282
<artifactId>easymock</artifactId>
8383
<scope>test</scope>
8484
</dependency>
85-
<dependency>
86-
<groupId>org.objenesis</groupId>
87-
<artifactId>objenesis</artifactId>
88-
<scope>test</scope>
89-
</dependency>
9085
<dependency>
9186
<groupId>com.google.code.findbugs</groupId>
9287
<artifactId>jsr305</artifactId>

pom.xml

-35
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,6 @@
151151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
152152
<github.global.server>github</github.global.server>
153153
<site.installationModule>google-cloud-core-parent</site.installationModule>
154-
<auto-value.version>1.7</auto-value.version>
155-
<auto-value-annotations.version>1.7</auto-value-annotations.version>
156154
<gax.version>1.56.0</gax.version>
157155
<google.api-common.version>1.9.0</google.api-common.version>
158156
<google.common-protos.version>1.18.0</google.common-protos.version>
@@ -232,12 +230,6 @@
232230
<type>pom</type>
233231
<scope>import</scope>
234232
</dependency>
235-
<dependency>
236-
<groupId>com.google.auto.value</groupId>
237-
<artifactId>auto-value-annotations</artifactId>
238-
<version>${auto-value-annotations.version}</version>
239-
<optional>true</optional>
240-
</dependency>
241233
<dependency>
242234
<groupId>com.google.api</groupId>
243235
<artifactId>api-common</artifactId>
@@ -319,33 +311,6 @@
319311
</dependencies>
320312
</dependencyManagement>
321313

322-
<build>
323-
<pluginManagement>
324-
<plugins>
325-
<plugin>
326-
<groupId>org.apache.maven.plugins</groupId>
327-
<artifactId>maven-dependency-plugin</artifactId>
328-
<configuration>
329-
<ignoredUnusedDeclaredDependencies>org.objenesis:objenesis</ignoredUnusedDeclaredDependencies>
330-
</configuration>
331-
</plugin>
332-
<plugin>
333-
<artifactId>maven-compiler-plugin</artifactId>
334-
<configuration>
335-
<annotationProcessorPaths>
336-
<path>
337-
<groupId>com.google.auto.value</groupId>
338-
<artifactId>auto-value</artifactId>
339-
<version>${auto-value.version}</version>
340-
</path>
341-
</annotationProcessorPaths>
342-
</configuration>
343-
</plugin>
344-
</plugins>
345-
346-
</pluginManagement>
347-
</build>
348-
349314
<modules>
350315
<module>google-cloud-core</module>
351316
<module>google-cloud-core-http</module>

0 commit comments

Comments
 (0)