se.bjurr.violations.comments.github.plugin.gradle.ViolationCommentsToGitHubGradlePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of violation-comments-to-github-gradle-plugin Show documentation
Show all versions of violation-comments-to-github-gradle-plugin Show documentation
Gradle plugin that will comment GitHub pull requests with results from static code analysis
package se.bjurr.violations.comments.github.plugin.gradle;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
public class ViolationCommentsToGitHubGradlePlugin implements Plugin {
@Override
public void apply(Project target) {
target
.getExtensions()
.create("violationCommentsToGitHubPlugin", ViolationCommentsToGitHubPluginExtension.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy