Skip to content

Commit

Permalink
Generate sources and javadoc during package and not verify
Browse files Browse the repository at this point in the history
This should prevent javadoc problems during release or similar situations
  • Loading branch information
AB-xdev committed Nov 22, 2024
1 parent 946e9b2 commit d12ec22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template-placeholder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
Expand All @@ -165,7 +165,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand Down

0 comments on commit d12ec22

Please sign in to comment.