Skip to content

Commit

Permalink
JaCoCo hook no longer runs (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Mar 17, 2023
1 parent 724edfc commit a1db5e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/jenkins/tools/test/hook/JacocoHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class JacocoHook extends PluginCompatTesterHookBeforeExecution {
@Override
public boolean check(@NonNull BeforeExecutionContext context) {
Model model = context.getModel();
return "org.jenkins-ci.plugins".equals(model.getGroupId())
&& "jacoco".equals(model.getArtifactId())
&& "hpi".equals(model.getPackaging());
// pending https://github.com/jenkinsci/jacoco-plugin/pull/206
// "org.jenkins-ci.plugins".equals(model.getGroupId())
return "jacoco".equals(model.getArtifactId()) && "hpi".equals(model.getPackaging());
}

@Override
Expand Down

0 comments on commit a1db5e6

Please sign in to comment.