Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
Add plugin maven
  • Loading branch information
josepharul82 authored Sep 19, 2023
1 parent 650cc87 commit fc6f791
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@
<version>${mockito-core.version}</version>
</dependency>



</dependencies>

<dependencyManagement>
Expand Down Expand Up @@ -485,6 +487,39 @@
</plugin>
-->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<javadocExecutable>
${java.home}/bin/javadoc
</javadocExecutable>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit fc6f791

Please sign in to comment.