Skip to content

Commit

Permalink
added source and javadoc plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
firatkucuk committed Dec 5, 2023
1 parent 9fd15ae commit aec0eca
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,32 @@

<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
Expand Down

0 comments on commit aec0eca

Please sign in to comment.