Skip to content
Snippets Groups Projects
Commit 107f3084 authored by anttil's avatar anttil
Browse files

SWE-22 / SP-656: fix for "duplicate source compliance setting specification" error

SVN: 31087
parent 2443cbb0
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ compileJava { ...@@ -132,7 +132,7 @@ compileJava {
options.forkOptions.with { options.forkOptions.with {
executable = 'java' executable = 'java'
jvmArgs = ['-cp', configurations.ecj.asPath, 'org.eclipse.jdt.internal.compiler.batch.Main', jvmArgs = ['-cp', configurations.ecj.asPath, 'org.eclipse.jdt.internal.compiler.batch.Main',
'-nowarn', '-source', '1.6' ] '-nowarn']
} }
} }
} }
...@@ -144,7 +144,7 @@ compileTestJava { ...@@ -144,7 +144,7 @@ compileTestJava {
options.forkOptions.with { options.forkOptions.with {
executable = 'java' executable = 'java'
jvmArgs = ['-cp', configurations.ecj.asPath, 'org.eclipse.jdt.internal.compiler.batch.Main', jvmArgs = ['-cp', configurations.ecj.asPath, 'org.eclipse.jdt.internal.compiler.batch.Main',
'-nowarn', '-source', '1.6' ] '-nowarn']
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment