set Java version to 11

This commit is contained in:
Jonathan Shook 2020-02-26 10:52:02 -06:00
parent 693d66b145
commit 5a0557c836
5 changed files with 7 additions and 7 deletions

View File

@ -72,9 +72,9 @@
<version>3.8.1</version>
<configuration>
<debug>true</debug>
<release>12</release>
<source>12</source>
<target>12</target>
<release>11</release>
<source>11</source>
<target>11</target>
<!--<compilerArgument>-Xdoclint:all</compilerArgument>-->
<compilerArgument>-Xlint:all</compilerArgument>
</configuration>

View File

@ -84,7 +84,7 @@ public class ScriptIntegrationTests {
// The async versions are higher sensitivity and equivalent in
// every other way.
// This should reduce the build time for integrated testing.
// @Test
// public void testStrideRateOnly() {
// ScenarioResult scenarioResult = runScenario("stride_rate");

View File

@ -20,7 +20,7 @@ import static io.nosqlbench.virtdata.processors.ProcessorClassNames.ThreadSafeMa
* manifests. It simply calls listener interfaces to do the rest of the work.
*/
@SupportedOptions({"title"})
@SupportedSourceVersion(SourceVersion.RELEASE_12)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@SupportedAnnotationTypes({
ThreadSafeMapper,
PerThreadMapper

View File

@ -26,7 +26,7 @@ import static io.nosqlbench.virtdata.processors.ProcessorClassNames.ThreadSafeMa
* enumerate candidate functions without requiring them to have a no-args constructor.
*/
@SupportedOptions({"title"})
@SupportedSourceVersion(SourceVersion.RELEASE_12)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@SupportedAnnotationTypes({
ThreadSafeMapper,
PerThreadMapper

View File

@ -20,7 +20,7 @@ import java.util.stream.Collectors;
* <pre>classes/META-INF/services/servicename</pre> file for each
* implemented and annotated service name.
*/
@SupportedSourceVersion(SourceVersion.RELEASE_12)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class ServiceProcessor extends AbstractProcessor {
@Override