Skip to content

Commit 9830bdc

Browse files
Fix build on jenkins
On Jenkins we also use Maven 3.6.3 we need specified maven.compiler.target/source at least
1 parent 6f30bed commit 9830bdc

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

src/it/projects/MJAVADOC-642/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
<url>https://issues.apache.org/jira/browse/MJAVADOC-642</url>
2424

2525
<properties>
26+
<maven.compiler.source>1.8</maven.compiler.source>
27+
<maven.compiler.target>1.8</maven.compiler.target>
2628
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2729
</properties>
2830

src/it/projects/MJAVADOC-642/src/main/java/mjavadoc642/Main.java

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
* This is the main class.
2424
*/
2525
public final class Main {
26+
27+
/**
28+
* Mising description on auto generated constructor cause javadoc warrning.
29+
*/
30+
Main() {}
31+
2632
/**
2733
* This is the main method.
2834
*

src/it/projects/MJAVADOC-642_cmdline/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
<url>https://issues.apache.org/jira/browse/MJAVADOC-642</url>
2424

2525
<properties>
26+
<maven.compiler.source>1.8</maven.compiler.source>
27+
<maven.compiler.target>1.8</maven.compiler.target>
2628
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2729
</properties>
2830

src/it/projects/MJAVADOC-642_cmdline/src/main/java/mjavadoc642/Main.java

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
* This is the main class.
2424
*/
2525
public final class Main {
26+
27+
/**
28+
* Mising description on auto generated constructor cause javadoc warrning.
29+
*/
30+
Main() {}
31+
2632
/**
2733
* This is the main method.
2834
*

src/it/projects/MJAVADOC-770/src/main/java/mjavadoc770/Main.java

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
* This is the main class.
2424
*/
2525
public final class Main {
26+
27+
/**
28+
* Mising description on auto generated constructor cause javadoc warrning.
29+
*/
30+
Main() {}
31+
2632
/**
2733
* This is the main method.
2834
*

0 commit comments

Comments
 (0)