Skip to content

Commit a399117

Browse files
committed
chore: use Gradle 7.6
- update Copyright - ⬆️ Gradle 7.6 - ⬆️ build plugins Signed-off-by: Gregor Anders <[email protected]>
1 parent 2dace45 commit a399117

File tree

48 files changed

+145
-127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+145
-127
lines changed

.github/workflows/feature.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626
- name: Set up JDK
27-
uses: actions/setup-java@v3.4.1
27+
uses: actions/setup-java@v3.9.0
2828
with:
2929
distribution: 'temurin'
3030
cache: 'gradle'
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].8
37+
uses: actions/[email protected].11
3838
with:
3939
path: ~/.sonar/cache
4040
key: ${{ runner.os }}-sonar
4141
restore-keys: ${{ runner.os }}-sonar
4242
- name: Cache Gradle packages
43-
uses: actions/[email protected].8
43+
uses: actions/[email protected].11
4444
with:
4545
path: ~/.gradle/caches
4646
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626
- name: Set up JDK
27-
uses: actions/setup-java@v3.4.1
27+
uses: actions/setup-java@v3.9.0
2828
with:
2929
distribution: 'temurin'
3030
cache: 'gradle'
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].8
37+
uses: actions/[email protected].11
3838
with:
3939
path: ~/.sonar/cache
4040
key: ${{ runner.os }}-sonar
4141
restore-keys: ${{ runner.os }}-sonar
4242
- name: Cache Gradle packages
43-
uses: actions/[email protected].8
43+
uses: actions/[email protected].11
4444
with:
4545
path: ~/.gradle/caches
4646
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
@@ -111,7 +111,7 @@ jobs:
111111
name: gh-pages
112112
path: gh-pages-artifact
113113
- name: Get cached gems
114-
uses: actions/[email protected].8
114+
uses: actions/[email protected].11
115115
with:
116116
path: gh-pages-artifact
117117
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626
- name: Set up JDK
27-
uses: actions/setup-java@v3.4.1
27+
uses: actions/setup-java@v3.9.0
2828
with:
2929
distribution: 'temurin'
3030
cache: 'gradle'
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].8
37+
uses: actions/[email protected].11
3838
with:
3939
path: ~/.sonar/cache
4040
key: ${{ runner.os }}-sonar
4141
restore-keys: ${{ runner.os }}-sonar
4242
- name: Cache Gradle packages
43-
uses: actions/[email protected].8
43+
uses: actions/[email protected].11
4444
with:
4545
path: ~/.gradle/caches
4646
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Gregor Anders
3+
Copyright (c) 2022 - present Gregor Anders
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Following the principle of *convention over configuration* this Gradle plugin provides default configurations for various plugins of a Gradle JVM project so that you do not need to copy boilerplate code throughout your projects.
44

5-
#### Compiled using JAVA 17 with 1.8 as target and Gradle 7.5.1
5+
#### Compiled using JAVA 17 with 1.8 as target and Gradle 7.6
66

77
[![Release][release-image]][release-url]
88

@@ -35,7 +35,7 @@
3535
### Using the plugins DSL
3636
```groovy
3737
plugins {
38-
id "io.github.gregoranders.project-configuration" version "0.0.7"
38+
id "io.github.gregoranders.project-configuration" version "0.0.8"
3939
}
4040
```
4141

@@ -48,7 +48,7 @@ buildscript {
4848
}
4949
}
5050
dependencies {
51-
classpath "io.github.gregoranders:project-configuration:0.0.7"
51+
classpath "io.github.gregoranders:project-configuration:0.0.8"
5252
}
5353
}
5454

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| Version | Supported |
66
|---------|---------------------|
7-
| 0.0.7 | :white_check_mark: |
7+
| 0.0.8 | :white_check_mark: |
88

99
## Reporting a Vulnerability
1010

build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ plugins {
1212
id 'project-report'
1313
id 'build-dashboard'
1414
id 'com.gradle.plugin-publish' version '0.21.0'
15-
id 'com.github.spotbugs' version '5.0.10'
16-
id 'org.owasp.dependencycheck' version '7.1.2'
17-
id 'org.sonarqube' version '3.4.0.2513'
15+
id 'com.github.spotbugs' version '5.0.13'
16+
id 'org.owasp.dependencycheck' version '7.4.1'
17+
id 'org.sonarqube' version '3.5.0.2730'
1818
}
1919

2020
def javaVersion = JavaVersion.VERSION_17
2121

22+
wrapper {
23+
gradleVersion = '7.6'
24+
distributionType = Wrapper.DistributionType.BIN
25+
distributionSha256Sum = '7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b'
26+
}
27+
2228
repositories {
2329
mavenCentral()
2430
mavenLocal()

config/checkstyle/checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
~ MIT License
44
~
5-
~ Copyright (c) 2022 Gregor Anders
5+
~ Copyright (c) 2022 - present Gregor Anders
66
~
77
~ Permission is hereby granted, free of charge, to any person obtaining a copy
88
~ of this software and associated documentation files (the "Software"), to deal

config/checkstyle/header.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 Gregor Anders
4+
* Copyright (c) 2022 - present Gregor Anders
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

config/checkstyle/suppressions.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
~ MIT License
44
~
5-
~ Copyright (c) 2022 Gregor Anders
5+
~ Copyright (c) 2022 - present Gregor Anders
66
~
77
~ Permission is hereby granted, free of charge, to any person obtaining a copy
88
~ of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,7 @@
2323
~ SOFTWARE.
2424
-->
2525
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN"
26-
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
26+
"http://www.puppycrawl.com/dtds/suppressions_1_2.dtd">
2727
<suppressions>
2828

2929
</suppressions>

0 commit comments

Comments
 (0)