Skip to content
Open
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
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "gradle"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
open-pull-requests-limit: 2

- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"
open-pull-requests-limit: 2
1 change: 1 addition & 0 deletions .github/workflows/ci_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
pull_request:
branches:
- main
- "release**"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion artifacts.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def commonArtifactVersion = "0.2"
def commonArtifactVersion = "0.3"
ext {
artifactVersions = [
visitors: commonArtifactVersion,
Expand Down
6 changes: 6 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[versions]
junit_version = "4.13.2"

[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit_version" }
find-bugs = "com.google.code.findbugs:jsr305:3.0.2"
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 2 additions & 1 deletion visitors/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ java {
}

dependencies {
testImplementation 'junit:junit:4.13.2'
implementation libs.find.bugs
testImplementation libs.junit
}

publishing {
Expand Down