Skip to content

Commit

Permalink
feat(Java8): Reverted back to Java version 8, since it has universal …
Browse files Browse the repository at this point in the history
…support. (#388)
  • Loading branch information
ndickerson authored Jun 16, 2022
1 parent 4528392 commit 830902a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: java
jdk: openjdk11
jdk: openjdk8
cache:
directories:
- node_modules
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ _The app handles loading data only. For features such as exporting and deleting

1. Install Java if you don't have it already (you won't need the development kit for Windows) - [Windows](http://javadl.oracle.com/webapps/download/AutoDL?BundleId=210182) | [Mac](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)

1. Verify that you have a compatible version of java on the command line by typing: `java -version`, which should show: `java version "11.x.x"` or newer
1. Verify that you have a compatible version of java on the command line by typing: `java -version`, which should show: `java version "1.8.x"`

2. Download the dataloader.zip file from the downloads section of the [Latest Release](https://github.com/bullhorn/dataloader/releases/latest)

Expand Down
2 changes: 1 addition & 1 deletion dataloader.iml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<configuration />
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_11">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>11</source>
<target>11</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 830902a

Please sign in to comment.