Skip to content

Commit

Permalink
Fix issues with publishing a plugin
Browse files Browse the repository at this point in the history
* Set developers in RootProjectInfo because Maven requires it
* Ensure scoverage is disabled in plugins
* Add the Publishing helper to plugins
* Enable the ScriptedPlugin for testing plugins
* Updated scaladoc for OssumInPlugin functions
  • Loading branch information
reid-spencer committed Dec 15, 2023
1 parent e94452a commit c4c1403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/ossuminc/sbt/helpers/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Plugin {

def configure(project: Project): Project = {
project
.enablePlugins(SbtPlugin, JavaAppPackaging)
.enablePlugins(SbtPlugin, JavaAppPackaging, ScriptedPlugin)
.configure(With.basic, With.scala2, With.scalafmt)
.disablePlugins(ScoverageSbtPlugin)
.settings(
Expand Down

0 comments on commit c4c1403

Please sign in to comment.