Skip to content

Commit

Permalink
Fix build on jenkins
Browse files Browse the repository at this point in the history
On Jenkins we also use Maven 3.6.3
we need specified maven.compiler.target/source at least
  • Loading branch information
slawekjaranowski committed Sep 10, 2023
1 parent 6f30bed commit 9830bdc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/it/projects/MJAVADOC-642/pom.xml
Expand Up @@ -23,6 +23,8 @@
<url>https://issues.apache.org/jira/browse/MJAVADOC-642</url>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
Expand Up @@ -23,6 +23,12 @@
* This is the main class.
*/
public final class Main {

/**
* Mising description on auto generated constructor cause javadoc warrning.
*/
Main() {}

/**
* This is the main method.
*
Expand Down
2 changes: 2 additions & 0 deletions src/it/projects/MJAVADOC-642_cmdline/pom.xml
Expand Up @@ -23,6 +23,8 @@
<url>https://issues.apache.org/jira/browse/MJAVADOC-642</url>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
Expand Up @@ -23,6 +23,12 @@
* This is the main class.
*/
public final class Main {

/**
* Mising description on auto generated constructor cause javadoc warrning.
*/
Main() {}

/**
* This is the main method.
*
Expand Down
Expand Up @@ -23,6 +23,12 @@
* This is the main class.
*/
public final class Main {

/**
* Mising description on auto generated constructor cause javadoc warrning.
*/
Main() {}

/**
* This is the main method.
*
Expand Down

0 comments on commit 9830bdc

Please sign in to comment.