Skip to content

Commit 3d9874f

Browse files
author
Timur Sadykov
authored
feat: GA release of google-auth-library-java (ver 1.0.0) (#704)
Release-As: 1.0.0 feat!: updating google-auth-library-java min Java version to 1.8
1 parent c5aa708 commit 3d9874f

File tree

4 files changed

+4
-43
lines changed

4 files changed

+4
-43
lines changed

.github/sync-repo-settings.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ branchProtectionRules:
1010
- linkage-monitor
1111
- lint
1212
- clirr
13-
- units (7)
1413
- units (8)
1514
- units (11)
1615
- cla/google

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
java: [7, 8, 11]
12+
java: [8, 11]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-java@v1

.repo-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "google-auth-library",
33
"name_pretty": "Google Auth Library",
44
"client_documentation": "https://googleapis.dev/java/google-auth-library/latest/",
5-
"release_level": "beta",
5+
"release_level": "ga",
66
"language": "java",
77
"repo": "googleapis/google-auth-library-java",
88
"repo_short": "google-auth-library-java",

pom.xml

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@
231231
<artifactId>maven-compiler-plugin</artifactId>
232232
<version>3.8.1</version>
233233
<configuration>
234-
<source>1.7</source>
235-
<target>1.7</target>
234+
<source>1.8</source>
235+
<target>1.8</target>
236236
<encoding>UTF-8</encoding>
237237
<compilerArgument>-Xlint:unchecked</compilerArgument>
238238
</configuration>
@@ -425,44 +425,6 @@
425425
</plugins>
426426
</build>
427427
</profile>
428-
<profile>
429-
<id>autovalue-java7</id>
430-
<activation>
431-
<jdk>1.7</jdk>
432-
<file>
433-
<exists>${basedir}/EnableAutoValue.txt</exists>
434-
</file>
435-
</activation>
436-
<properties>
437-
<!--
438-
We need to back pin to 1.4 because it is the last version of auto-value
439-
that was compiled for java 1.7.
440-
-->
441-
<auto-value.version>1.4</auto-value.version>
442-
</properties>
443-
<build>
444-
<plugins>
445-
<plugin>
446-
<artifactId>maven-compiler-plugin</artifactId>
447-
<configuration>
448-
<annotationProcessorPaths>
449-
<path>
450-
<groupId>com.google.auto.value</groupId>
451-
<artifactId>auto-value</artifactId>
452-
<version>${auto-value.version}</version>
453-
</path>
454-
<!--
455-
There is currently no available version of auto-service-annotations
456-
in maven central compiled for java 1.7, so we can't include it here.
457-
If you're using IntelliJ please use a newer jdk and set the language
458-
level to 1.7 for your dev work.
459-
-->
460-
</annotationProcessorPaths>
461-
</configuration>
462-
</plugin>
463-
</plugins>
464-
</build>
465-
</profile>
466428
<profile>
467429
<id>autovalue-java8</id>
468430
<activation>

0 commit comments

Comments
 (0)