Skip to content

Commit dc3835f

Browse files
chore: Update source target to 1.8 (#724)
Updated maven source config to 1.8 Updated the CONTRIBUTING.md to reflect Java 8+ support.
1 parent d164dca commit dc3835f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CONTRIBUTING.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ information on using pull requests.
8585

8686
### Initial Setup
8787

88-
Install Java 7 or higher. You can also use Java 8, but please note that the Firebase Admin SDK must
89-
maintain full Java 7 compatibility. Therefore make sure that you do not use any Java 8 features
90-
(e.g. lambdas) when writing code for the Admin Java SDK.
88+
Install Java 8 or higher.
9189

9290
We use [Apache Maven](http://maven.apache.org/) for building, testing and releasing the Admin Java
9391
SDK code. Follow the [installation guide](http://maven.apache.org/install.html), and install Maven

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@
272272
<artifactId>maven-compiler-plugin</artifactId>
273273
<version>3.10.1</version>
274274
<configuration>
275-
<source>1.7</source>
276-
<target>1.7</target>
275+
<source>1.8</source>
276+
<target>1.8</target>
277277
</configuration>
278278
</plugin>
279279

0 commit comments

Comments
 (0)