Skip to content

Commit

Permalink
Add additional required maven plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
wavejumper committed Jan 7, 2025
1 parent c87079d commit 3095f44
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,15 @@
[org.apache.kafka/kafka-streams "3.7.1" :scope "provided"]]
:pom-plugins [[org.sonatype.central/central-publishing-maven-plugin "0.6.0"
{:extensions "true"
:configuration [:publishingServerId "central"]}]]
:configuration [:publishingServerId "central"]}]
[org.apache.maven.plugins/maven-source-plugin "2.2.1"
{:executions ([:execution
[:id "attach-sources"]
[:goals [:goal "jar-no-fork"]]])}]
[org.apache.maven.plugins/maven-javadoc-plugin
{:executions ([:execution
[:id "attach-javadocs"]
[:goals [:goal "jar"]]])}]]
:uberjar {:prep-tasks ["clean" "javac" "compile"]
:aot :all}
:classifiers [["sources" {:source-paths ^:replace []
Expand Down

0 comments on commit 3095f44

Please sign in to comment.