You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2020/07/22 15:53:45 UTC

svn commit: r1880153 - in /jackrabbit/branches/2.18: ./ jackrabbit-parent/pom.xml

Author: reschke
Date: Wed Jul 22 15:53:45 2020
New Revision: 1880153

URL: http://svn.apache.org/viewvc?rev=1880153&view=rev
Log:
JCR-4621: add 'javadoc' profile for Jenkins matrix builds (merged 1880146 into 2.18)

Modified:
    jackrabbit/branches/2.18/   (props changed)
    jackrabbit/branches/2.18/jackrabbit-parent/pom.xml

Propchange: jackrabbit/branches/2.18/
------------------------------------------------------------------------------
  Merged /jackrabbit/trunk:r1880146

Modified: jackrabbit/branches/2.18/jackrabbit-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/branches/2.18/jackrabbit-parent/pom.xml?rev=1880153&r1=1880152&r2=1880153&view=diff
==============================================================================
--- jackrabbit/branches/2.18/jackrabbit-parent/pom.xml (original)
+++ jackrabbit/branches/2.18/jackrabbit-parent/pom.xml Wed Jul 22 15:53:45 2020
@@ -79,6 +79,30 @@
 
   <profiles>
     <profile>
+      <id>javadoc</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>verify</phase>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
       <id>pedantic</id>
       <build>
         <plugins>