Skip to content

Commit

Permalink
Merge pull request #12 from gsmet/disable-source-cache
Browse files Browse the repository at this point in the history
Disable the cache for the maven-source-plugin
  • Loading branch information
gsmet authored Mar 20, 2024
2 parents 9acc1ba + 9f21489 commit 13cb8e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void configure(GradleEnterpriseApi gradleEnterpriseApi, MavenSession mave
new SurefireConfiguredPlugin(),
new FailsafeConfiguredPlugin(),
new EnforcerConfiguredPlugin(),
new SourceConfiguredPlugin(),
//new SourceConfiguredPlugin(),
new QuarkusConfiguredPlugin(),
new FormatterConfiguredPlugin(),
new ImpsortConfiguredPlugin(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,7 @@ private static void jarNoFork(MojoMetadataProvider.Context context) {
outputs.file("source-jar", context.getProject().getBuild().getDirectory() + "/"
+ context.getProject().getBuild().getFinalName() + "-sources.jar");
});

// we should add the source jar as an attached artifact but for now, we can't
}
}

0 comments on commit 13cb8e9

Please sign in to comment.