Skip to content

Commit

Permalink
Gradle Plugin: Skip Maven JavaDoc execution
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v23.09/": change = 104547]
  • Loading branch information
ghillert committed Nov 8, 2023
1 parent b7307c0 commit f3038fe
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions prj/plugins/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,25 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>process-classes</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
Expand Down Expand Up @@ -244,15 +263,6 @@
<gradle.skip.test>false</gradle.skip.test>
</properties>
</profile>
<profile>
<id>skipMavenJavaDoc</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</profile>
<profile>
<id>gradleProxy</id>
<activation>
Expand Down

0 comments on commit f3038fe

Please sign in to comment.