Skip to content

Commit f3038fe

Browse files
committed
Gradle Plugin: Skip Maven JavaDoc execution
[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v23.09/": change = 104547]
1 parent b7307c0 commit f3038fe

File tree

1 file changed

+19
-9
lines changed

1 file changed

+19
-9
lines changed

prj/plugins/gradle/pom.xml

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,25 @@
5252

5353
<build>
5454
<plugins>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-javadoc-plugin</artifactId>
58+
<executions>
59+
<execution>
60+
<id>javadoc</id>
61+
<phase>process-classes</phase>
62+
<goals>
63+
<goal>javadoc</goal>
64+
</goals>
65+
<configuration>
66+
<skip>true</skip>
67+
</configuration>
68+
</execution>
69+
</executions>
70+
<configuration>
71+
<skip>true</skip>
72+
</configuration>
73+
</plugin>
5574
<plugin>
5675
<groupId>org.apache.maven.plugins</groupId>
5776
<artifactId>maven-clean-plugin</artifactId>
@@ -244,15 +263,6 @@
244263
<gradle.skip.test>false</gradle.skip.test>
245264
</properties>
246265
</profile>
247-
<profile>
248-
<id>skipMavenJavaDoc</id>
249-
<activation>
250-
<activeByDefault>true</activeByDefault>
251-
</activation>
252-
<properties>
253-
<maven.javadoc.skip>true</maven.javadoc.skip>
254-
</properties>
255-
</profile>
256266
<profile>
257267
<id>gradleProxy</id>
258268
<activation>

0 commit comments

Comments
 (0)