File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 15
15
# These ignores are specific to a cross-build against Maven
16
16
- ' pom.xml'
17
17
- ' mvnw*' # Wraper scripts
18
- - ' .mvn'
18
+ - ' .mvn/** '
19
19
- ' .github/workflows/*maven*'
20
20
# These ignores are specific to this project
21
21
- ' run-with-maven.sh'
27
27
# These ignores are specific to a cross-build against Maven
28
28
- ' pom.xml'
29
29
- ' mvnw*' # Wrapper scripts
30
- - ' .mvn'
30
+ - ' .mvn/** '
31
31
- ' .github/workflows/*maven*'
32
32
# These ignores are specific to this project
33
33
- ' run-with-maven.sh'
Original file line number Diff line number Diff line change 14
14
- ' images/**'
15
15
# These ignores are specific to a cross-build against Gradle
16
16
- ' build.gradle'
17
- - ' gradle' # Directory is distinct from files in GitHub ignores
17
+ - ' gradle/** ' # Directory is distinct from files in GitHub ignores
18
18
- ' gradle*' # Wrapper scripts and properties
19
19
- ' .gradle'
20
20
- ' .github/workflows/*gradle*'
27
27
- ' images/**'
28
28
# These ignores are specific to a cross-build against Gradle
29
29
- ' build.gradle'
30
- - ' gradle' # Directory is distinct from files in GitHub ignores
30
+ - ' gradle/** ' # Directory is distinct from files in GitHub ignores
31
31
- ' gradle*' # Wrapper scripts and properties
32
32
- ' .gradle'
33
33
- ' .github/workflows/*gradle*'
Original file line number Diff line number Diff line change @@ -3,13 +3,16 @@ import com.github.spotbugs.snom.Confidence
3
3
import com.github.spotbugs.snom.Effort
4
4
5
5
plugins {
6
+ // TODO: Since Gradle is not static description but live code, does the
7
+ // ordering of plugins have impact?
8
+ id " java" // Gradle support for Java
9
+ // TODO: #607. How to leverage the Gradle dashboard?
6
10
id " build-dashboard" // See build/reports/buildDashboard/index.html
7
- // TODO: project-report is presently broken because of pitest task
11
+ // TODO: Leverage the projectReport task for showing in CI
8
12
id " project-report" // Try the `projectReport` task
9
13
alias libs. plugins. com. dorongold. task. tree. plugin
10
14
alias libs. plugins. com. github. ben. manes. versions. plugin
11
15
alias libs. plugins. nl. littlerobots. version. catalog. update. plugin
12
- id " java" // Gradle support for Java
13
16
id " checkstyle" // To check that code follow style standards
14
17
id " jacoco" // To run test coverage
15
18
id " pmd" // Static analysis based on source (does not check compiled code)
You can’t perform that action at this time.
0 commit comments