Skip to content

Commit

Permalink
added API Error example - mark maven unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T committed Nov 4, 2024
1 parent 9474c95 commit cfd0d76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ pipeline {
recordIssues(publishAllIssues:false, ignoreQualityGate:true,
tool: eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'),
qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]])
recordIssues publishAllIssues:false, tools: [mavenConsole(), javaDoc()]
recordIssues(publishAllIssues:false, ignoreQualityGate:true,
tools: [mavenConsole(), javaDoc()]
qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]])
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ public boolean isAvailable() {
return true;
}

/**
* Implementators of <code>org.eclipse.ui.browser.browsers</code> extension
* points must provide an implementation of this abstract class.
*
* @since 3.8
*/
public void addedWithoutUpdate() {
}
/**
* Obtains a new instance of a web browser.
*
Expand Down

0 comments on commit cfd0d76

Please sign in to comment.