Skip to content

Commit

Permalink
Fix typo in property name
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylking committed May 4, 2024
1 parent 1167f4b commit b99426c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void doCompileJsps() throws MojoExecutionException {
sourceSet = true;
}
} else if (props.containsKey("maven.compiler.source")) {
String value = props.getProperty("maven.compiler.release");
String value = props.getProperty("maven.compiler.source");
if (value != null) {
getLog().debug("compile-jsp using maven.compiler.source value: "+value+" for javaSourceLevel.");
compile.setSource(value);
Expand Down

0 comments on commit b99426c

Please sign in to comment.