Skip to content

Commit

Permalink
fix: change attach-sources to package phase
Browse files Browse the repository at this point in the history
Signed-off-by: Matheus Lenke <[email protected]>
  • Loading branch information
matheuslenke committed Jan 31, 2025
1 parent dd587d6 commit e1d525a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,27 +84,27 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- the following plugins are required for publishing to maven central -->
<!-- https://central.sonatype.org/publish/publish-portal-maven/ -->
<plugin>
Expand Down

0 comments on commit e1d525a

Please sign in to comment.