Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public void apply(Project project) {

// adds the annotation processor dependency
project.getGradle().addListener(new AutodocDependencyInjector(project, format("%s:%s:", GROUP_NAME, PROCESSOR_ARTIFACT_NAME),
createVersionProvider(project), getOutputDirectoryProvider(project)));
createVersionProvider(project),
getOutputDirectoryProvider(project)));

// registers a "named" task, that does nothing, except depend on the compileTask, which then runs the annotation processor
project.getTasks().register("autodoc", t -> t.dependsOn("compileJava"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
public class EdcModuleProcessor extends AbstractProcessor {
public static final String VERSION = "edc.version";
public static final String ID = "edc.id";
public static final String EDC_OUTPUTDIR_OVERRIDE = "edc.outputdir";
public static final String EDC_OUTPUTDIR_OVERRIDE = "edc.outputDir";
private static final String MANIFEST_NAME = "edc.json";
private final ObjectMapper mapper = new ObjectMapper();

Expand Down