Skip to content

Commit

Permalink
fix: client should support Java 1.8 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Aug 17, 2023
1 parent a2de52d commit ca96e8e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion open-vulnerability-clients/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ plugins {
id 'vuln.tools.java-library-conventions'
}

description = 'The base java library to extend to build vulnerability data sources'
description = 'Clients for vulnerability sources'

compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
options.encoding = 'UTF-8'
}

dependencies {
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
Expand Down

0 comments on commit ca96e8e

Please sign in to comment.