We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a38e8c commit d3f5135Copy full SHA for d3f5135
README.md
@@ -21,7 +21,7 @@ uses a ThreadLocal wrapper for each job containing a HashMap for job key-value p
21
* [x] or define jobs and triggers programmatically
22
* [x] Cron Triggers
23
* [x] Simple Triggers
24
- * [x] Java 7 and up
+ * [x] Java 8 and up
25
* [x] Depends only on slf4j
26
27
## Create a Job Class
pom.xml
@@ -129,8 +129,8 @@
129
<artifactId>maven-compiler-plugin</artifactId>
130
<version>3.10.1</version>
131
<configuration>
132
- <source>1.7</source>
133
- <target>1.7</target>
+ <source>1.8</source>
+ <target>1.8</target>
134
<showDeprecation>true</showDeprecation>
135
<showWarnings>true</showWarnings>
136
</configuration>
0 commit comments