Skip to content

Commit 2dace45

Browse files
committed
chore: Bump version - dependencies updates
Signed-off-by: Gregor Anders <[email protected]>
1 parent fe701bf commit 2dace45

File tree

16 files changed

+50
-35
lines changed

16 files changed

+50
-35
lines changed

.github/workflows/feature.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].5
37+
uses: actions/[email protected].8
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].5
43+
uses: actions/[email protected].8
4444
with:
4545
path: ~/.gradle/caches
4646
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].5
37+
uses: actions/[email protected].8
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].5
43+
uses: actions/[email protected].8
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].5
114+
uses: actions/[email protected].8
115115
with:
116116
path: gh-pages-artifact
117117
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
- name: Echo JAVA version
3535
run: java --version
3636
- name: Cache SonarCloud packages
37-
uses: actions/[email protected].5
37+
uses: actions/[email protected].8
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].5
43+
uses: actions/[email protected].8
4444
with:
4545
path: ~/.gradle/caches
4646
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

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
5+
#### Compiled using JAVA 17 with 1.8 as target and Gradle 7.5.1
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.8"
38+
id "io.github.gregoranders.project-configuration" version "0.0.7"
3939
}
4040
```
4141

@@ -48,7 +48,7 @@ buildscript {
4848
}
4949
}
5050
dependencies {
51-
classpath "io.github.gregoranders:project-configuration:0.0.8"
51+
classpath "io.github.gregoranders:project-configuration:0.0.7"
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.8 | :white_check_mark: |
7+
| 0.0.7 | :white_check_mark: |
88

99
## Reporting a Vulnerability
1010

build.gradle

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ plugins {
1111
id 'signing'
1212
id 'project-report'
1313
id 'build-dashboard'
14-
id 'com.gradle.plugin-publish' version '1.0.0'
15-
id 'com.github.spotbugs' version '5.0.9'
16-
id 'org.owasp.dependencycheck' version '7.1.1'
14+
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'
1717
id 'org.sonarqube' version '3.4.0.2513'
1818
}
1919

@@ -246,7 +246,7 @@ gradlePlugin {
246246
projectConfigurationPlugin {
247247
id = 'io.github.gregoranders.project-configuration'
248248
implementationClass = 'io.github.gregoranders.gradle.project.ProjectConfigurationPlugin'
249-
displayName = project.property('pluginDisplayName')
249+
// displayName = project.property('pluginDisplayName')
250250
}
251251
}
252252
}
@@ -257,9 +257,16 @@ pluginBundle {
257257

258258
description = project.property('pluginDescription')
259259

260-
pluginTags = [
261-
projectConfigurationPlugin: ['project', 'configuration', 'java', 'checkstyle', 'pmd', 'spotbugs', 'jacoco', 'dependencycheck']
262-
]
260+
plugins {
261+
projectConfigurationPlugin {
262+
//noinspection GroovyAssignabilityCheck
263+
displayName = project.property('pluginDisplayName')
264+
tags = ['project', 'configuration', 'java', 'checkstyle', 'pmd', 'spotbugs', 'jacoco', 'dependencycheck']
265+
}
266+
}
267+
// pluginTags = [
268+
// projectConfigurationPlugin: ['project', 'configuration', 'java', 'checkstyle', 'pmd', 'spotbugs', 'jacoco', 'dependencycheck']
269+
// ]
263270
}
264271

265272
test {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ description=Gradle JAVA Project Configuration Plugin
3333
pluginDisplayName=JAVA Project Configuration
3434
pluginDescription=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.
3535

36-
version=0.0.8
36+
version=0.0.7
3737

3838
url=https://github.com/gregoranders/gradle-project-configuration
3939
ghpUrl=https://maven.pkg.github.com/gregoranders/gradle-project-configuration
@@ -55,7 +55,7 @@ spockReportsVersion=2.1.1-groovy-3.0
5555
checkstyleVersion=10.3.2
5656
pmdVersion=6.48.0
5757
jacocoVersion=0.8.8
58-
dependencyCheckVersion=7.1.1
58+
dependencyCheckVersion=7.1.2
5959
spotbugsVersion=4.7.1
6060
spotbugsAnnotationsVersion=4.7.1
6161

gradle/wrapper/gradle-wrapper.jar

935 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
4-
distributionSha256Sum=cb87f222c5585bd46838ad4db78463a5c5f3d336e5e2b98dc7c0c586527351c2
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
4+
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

gradlew

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ set -- \
205205
org.gradle.wrapper.GradleWrapperMain \
206206
"$@"
207207

208+
# Stop when "xargs" is not available.
209+
if ! command -v xargs >/dev/null 2>&1
210+
then
211+
die "xargs is not available"
212+
fi
213+
208214
# Use "xargs" to parse quoted args.
209215
#
210216
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.

0 commit comments

Comments
 (0)