Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/broken_links_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
run: |
mkdir -p ./target
echo '{ "aliveStatusCodes": [429, 200] }' > ./target/broken_links_checker.json
- uses: gaurav-nelson/github-action-markdown-link-check@v1
- uses: tcort/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: ./target/broken_links_checker.json
config-file: ./target/broken_links_checker.json
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
run:
shell: "bash"
strategy:
fail-fast: false
matrix:
java: [17, 21]
concurrency:
Expand All @@ -34,9 +35,7 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: |
17
21
java-version: ${{ matrix.java }}

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
Expand All @@ -49,7 +48,7 @@ jobs:
restore-keys: ${{ runner.os }}-java-${{ matrix.java }}-sonar

- name: Build with Java ${{ matrix.java }}
run: ./gradlew build --warning-mode all -PjavaVersion=${{ matrix.java }}
run: ./gradlew build --info --warning-mode all -PjavaVersion=${{ matrix.java }}

- name: Sonar analysis
if: ${{ env.DEFAULT_JAVA == matrix.java && env.SONAR_TOKEN != null }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 4 * * 3'
# schedule:
# - cron: '0 4 * * 3'

jobs:
analyze:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [PR #51](https://github.com/itsallcode/openfasttrace-gradle/pull/51)
## [3.1.0] - 2025-08-03

- [PR #51](https://github.com/itsallcode/openfasttrace-gradle/pull/51) (Thanks to [@koppor](https://github.com/koppor) for his contribution!)
- Upgrade to [OpenFastTrace 4.2.0](https://github.com/itsallcode/openfasttrace/releases/tag/4.2.0)

## [3.0.1] - 2024-09-07
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gradle plugin for the requirement tracing suite [OpenFastTrace](https://github.c

```groovy
plugins {
id "org.itsallcode.openfasttrace" version "3.0.1"
id "org.itsallcode.openfasttrace" version "3.1.0"
}
```

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ plugins {
id 'java-gradle-plugin'
id 'jacoco'
id 'signing'
id 'com.gradle.plugin-publish' version '1.2.2'
id 'org.sonarqube' version '5.1.0.4882'
id 'com.gradle.plugin-publish' version '1.3.1'
id 'org.sonarqube' version '6.2.0.5505'
id 'pl.droidsonroids.jacoco.testkit' version '1.0.12'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'org.sonatype.gradle.plugins.scan' version '2.8.3'
id 'com.github.ben-manes.versions' version '0.52.0'
id 'org.sonatype.gradle.plugins.scan' version '3.1.2'
}

repositories {
Expand All @@ -15,7 +15,7 @@ repositories {

apply from: 'gradle/workAroundJacocoGradleTestKitIssueOnWindows.gradle'

version = '3.0.2'
version = '3.1.0'
group = 'org.itsallcode'

ext {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
9 changes: 4 additions & 5 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

public enum GradleTestConfig
{
CURRENT_VERSION(null),
THIS_VERSION(null),
/**
* We support the latest Gradle version and the previous two.
*/
EIGHT_EIGHT("8.8"), EIGHT_NINE("8.9"), EIGHT_TEN("8.10");
PREVIOUS_VERSION_MINUS_ONE("8.12"), PREVIOUS_VERSION("8.13"), CURRENT_VERSION("8.14");

public final String gradleVersion;

Expand Down