File tree Expand file tree Collapse file tree
src/main/java/io/openapiprocessor/maven Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ public class ProcessMojo extends AbstractMojo {
4949 @ Override
5050 public void execute () throws MojoExecutionException {
5151 Log log = getLog ();
52- String processor = String .format ("openapi-processor-%s" , getProcessor ());
52+ String processorId = getProcessor ();
53+ String processor = String .format ("openapi-processor-%s" , processorId );
5354
5455 try {
5556 log .info (String .format ("%10s - %s" , "processor" , processor ));
@@ -81,7 +82,7 @@ public void execute () throws MojoExecutionException {
8182 if (!upToDate ) {
8283 log .info ("Changes detected - generating target files!" );
8384
84- new ProcessorRunner (log , id , properties ).run ();
85+ new ProcessorRunner (log , processorId , properties ).run ();
8586
8687 } else {
8788 log .info ("Nothing to process - all generated target files are up to date." );
You can’t perform that action at this time.
0 commit comments