Skip to content

Commit

Permalink
[MJAVADOC-774] add dev profile to avoid plugin build depending on its…
Browse files Browse the repository at this point in the history
…elf being already installed
  • Loading branch information
hboutemy committed Sep 19, 2023
1 parent 4a1e9c2 commit 4ba5ae7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,6 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<failOnWarnings>false</failOnWarnings>
</configuration>
Expand Down Expand Up @@ -598,5 +597,19 @@ under the License.
</plugins>
</build>
</profile>
<profile>
<id>dev</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>

0 comments on commit 4ba5ae7

Please # to comment.