se.solrike.conventions.java-conventions
所有者: Lucas Persson
Checkstyle、Dependency check、Jacoco、Java、Sonarlint、Spotbugs、Spotless插件的约定配置。
https://github.com/Lucas3oo/solrike-conventions-gradle-plugin
来源: https://github.com/Lucas3oo/solrike-conventions-gradle-plugin
版本 1.0.0-beta.7 (最新版)
1.0.0-beta.7
创建于2024年1月10日。
Gradle约定插件,针对Java项目。配置Checkstyle、Dependency check、Eclipse、Jacoco、Java、Sonarlint、Spotbugs、Spotless插件。例如,定义Checkstyle规则、Spotbugs排除过滤器、更改默认包含和排除的Sonarlint规则和Spotless的格式化规则。在Eclipse .classpath文件中设置输出文件夹。
使用plugins DSL
plugins {
id("se.solrike.conventions.java-conventions") version "1.0.0-beta.7"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("se.solrike.conventions:solrike-conventions-gradle-plugin:1.0.0-beta.7")
}
}
apply(plugin = "se.solrike.conventions.java-conventions")
使用plugins DSL
plugins {
id "se.solrike.conventions.java-conventions" version "1.0.0-beta.7"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "se.solrike.conventions:solrike-conventions-gradle-plugin:1.0.0-beta.7"
}
}
apply plugin: "se.solrike.conventions.java-conventions"