This repository was archived by the owner on Jun 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : check stale issues and prs
15
15
if : startsWith(github.repository,'odpi/')
16
- uses : actions/stale@v7
16
+ uses : actions/stale@v8
17
17
with :
18
18
repo-token : ${{ secrets.GITHUB_TOKEN }}
19
19
stale-issue-message : >
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ subprojects {
59
59
60
60
// Assign variables for any constraints
61
61
ext {
62
- egeriaversion = ' 4.0-SNAPSHOT '
62
+ egeriaversion = ' 4.0'
63
63
atlasversion = ' 2.3.0'
64
64
jaxbversion = ' 2.3.1'
65
65
mockserverversion = ' 5.15.0'
@@ -69,9 +69,9 @@ subprojects {
69
69
dependencies {
70
70
implementation platform(" org.odpi.egeria:egeria:${ egeriaversion} " )
71
71
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"
75
75
implementation " org.apache.atlas:atlas-common:${ atlasversion} "
76
76
implementation " org.apache.atlas:atlas-client-v2:${ atlasversion} "
77
77
implementation " org.apache.atlas:atlas-intg:${ atlasversion} "
@@ -137,8 +137,8 @@ subprojects {
137
137
includeEngines ' junit-jupiter'
138
138
}
139
139
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 '
142
142
}
143
143
144
144
testLogging {
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
networkTimeout =10000
5
5
zipStoreBase =GRADLE_USER_HOME
6
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144
144
case $MAX_FD in # (
145
145
max* )
146
146
# 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
148
148
MAX_FD=$( ulimit -H -n ) ||
149
149
warn " Could not query maximum file descriptor limit"
150
150
esac
151
151
case $MAX_FD in # (
152
152
' ' | soft) : ;; # (
153
153
* )
154
154
# 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
156
156
ulimit -n " $MAX_FD " ||
157
157
warn " Could not set maximum file descriptor limit to $MAX_FD "
158
158
esac
Original file line number Diff line number Diff line change @@ -16,17 +16,17 @@ pluginManagement {
16
16
}
17
17
plugins {
18
18
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 "
20
20
// Checks for unnecessary dependencies
21
- id(" com.autonomousapps.dependency-analysis" ) version " 1.19 .0"
21
+ id(" com.autonomousapps.dependency-analysis" ) version " 1.20 .0"
22
22
// helps resolve log implementation clashes
23
23
id ' dev.jacomet.logging-capabilities' version " 0.11.0"
24
24
// This plugin helps resolve jakarta/javax dev.jacomet.logging-capabilities
25
25
id ' org.gradlex.java-ecosystem-capabilities' version " 1.1"
26
26
// Docs don't recommend specifying a version for checkstyle
27
27
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 '
30
30
id ' com.github.psxpaul.execfork' version ' 0.2.2'
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments