Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 6b35052

Browse files
authored
Merge pull request #550 from planetf1/main
2 parents 37c3cec + 0501b7a commit 6b35052

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: check stale issues and prs
1515
if: startsWith(github.repository,'odpi/')
16-
uses: actions/stale@v7
16+
uses: actions/stale@v8
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
stale-issue-message: >

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ subprojects {
5959

6060
// Assign variables for any constraints
6161
ext {
62-
egeriaversion = '4.0-SNAPSHOT'
62+
egeriaversion = '4.0'
6363
atlasversion = '2.3.0'
6464
jaxbversion = '2.3.1'
6565
mockserverversion = '5.15.0'
@@ -69,9 +69,9 @@ subprojects {
6969
dependencies {
7070
implementation platform("org.odpi.egeria:egeria:${egeriaversion}")
7171
constraints {
72-
implementation "com.fasterxml.jackson.core:jackson-annotations"
73-
implementation "com.fasterxml.jackson.core:jackson-core"
74-
implementation "com.fasterxml.jackson.core:jackson-databind"
72+
compileOnly "com.fasterxml.jackson.core:jackson-annotations"
73+
compileOnly "com.fasterxml.jackson.core:jackson-core"
74+
compileOnly "com.fasterxml.jackson.core:jackson-databind"
7575
implementation "org.apache.atlas:atlas-common:${atlasversion}"
7676
implementation "org.apache.atlas:atlas-client-v2:${atlasversion}"
7777
implementation "org.apache.atlas:atlas-intg:${atlasversion}"
@@ -137,8 +137,8 @@ subprojects {
137137
includeEngines 'junit-jupiter'
138138
}
139139
dependencies {
140-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
141-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
140+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
141+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
142142
}
143143

144144
testLogging {

gradle/wrapper/gradle-wrapper.jar

34 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
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-8.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144144
case $MAX_FD in #(
145145
max*)
146146
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147-
# shellcheck disable=SC3045
147+
# shellcheck disable=SC3045
148148
MAX_FD=$( ulimit -H -n ) ||
149149
warn "Could not query maximum file descriptor limit"
150150
esac
151151
case $MAX_FD in #(
152152
'' | soft) :;; #(
153153
*)
154154
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155-
# shellcheck disable=SC3045
155+
# shellcheck disable=SC3045
156156
ulimit -n "$MAX_FD" ||
157157
warn "Could not set maximum file descriptor limit to $MAX_FD"
158158
esac

settings.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ pluginManagement {
1616
}
1717
plugins {
1818
id "io.freefair.aggregate-javadoc" version "6.6.3"
19-
id "io.freefair.lombok" version "6.6.3"
19+
id "io.freefair.lombok" version "8.0.1"
2020
// Checks for unnecessary dependencies
21-
id("com.autonomousapps.dependency-analysis") version "1.19.0"
21+
id("com.autonomousapps.dependency-analysis") version "1.20.0"
2222
// helps resolve log implementation clashes
2323
id 'dev.jacomet.logging-capabilities' version "0.11.0"
2424
// This plugin helps resolve jakarta/javax dev.jacomet.logging-capabilities
2525
id 'org.gradlex.java-ecosystem-capabilities' version "1.1"
2626
// Docs don't recommend specifying a version for checkstyle
2727
id 'checkstyle'
28-
id 'org.springframework.boot' version '2.7.9'
29-
id 'com.github.johnrengelman.shadow' version '7.1.2'
28+
id 'org.springframework.boot' version '3.0.6'
29+
id 'com.github.johnrengelman.shadow' version '8.1.1'
3030
id 'com.github.psxpaul.execfork' version '0.2.2'
3131
}
3232
}

0 commit comments

Comments
 (0)