Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Requirements

* Perforce server at Release 2021.1 or higher.

* Java: full standard JDK 11 or later. Implementation as
* Java: full standard JDK 8 or later. Implementation as
discussed in "Known Limitations" below.

* SSL: unlimited strength JCE (Java Cryptography Extension) package for
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
group = 'com.perforce'
version = project.hasProperty('ver') ? project.ext.ver : 'PREP-TEST_ONLY'

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

repositories {
maven { url "https://repo.maven.apache.org/maven2" }
Expand Down