You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by nt...@apache.org on 2019/10/09 13:27:59 UTC

[cayenne] branch STABLE-4.0 updated: Set correct source level for javadoc plugin

This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch STABLE-4.0
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/STABLE-4.0 by this push:
     new 7785539  Set correct source level for javadoc plugin
7785539 is described below

commit 7785539700586633d61e7255b055f58d23fca3a4
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Wed Oct 9 16:27:52 2019 +0300

    Set correct source level for javadoc plugin
---
 cayenne-java8/pom.xml                       | 6 ++++++
 tutorials/tutorial-rop-client-http2/pom.xml | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/cayenne-java8/pom.xml b/cayenne-java8/pom.xml
index 05d167f..41a5da1 100644
--- a/cayenne-java8/pom.xml
+++ b/cayenne-java8/pom.xml
@@ -85,6 +85,12 @@
 				</configuration>
 			</plugin>
 			<plugin>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<configuration>
+					<source>1.8</source>
+				</configuration>
+			</plugin>
+			<plugin>
 				<groupId>org.apache.cayenne.plugins</groupId>
 				<artifactId>cayenne-maven-plugin</artifactId>
 				<version>${project.version}</version>
diff --git a/tutorials/tutorial-rop-client-http2/pom.xml b/tutorials/tutorial-rop-client-http2/pom.xml
index dffefdd..b372f2e 100644
--- a/tutorials/tutorial-rop-client-http2/pom.xml
+++ b/tutorials/tutorial-rop-client-http2/pom.xml
@@ -56,6 +56,12 @@
                     <target>1.8</target>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <source>1.8</source>
+                </configuration>
+            </plugin>
         </plugins>
     </build>