Skip to content

Commit 471726d

Browse files
Bump dependencies.
1 parent 3611482 commit 471726d

File tree

11 files changed

+15
-21
lines changed

11 files changed

+15
-21
lines changed

build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ subprojects { proj ->
1313
mavenCentral()
1414
}
1515

16+
dependencies {
17+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
18+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3'
19+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
20+
}
21+
1622
test {
1723
useJUnitPlatform()
1824
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

structurizr-autolayout/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ dependencies {
33
api project(':structurizr-export')
44

55
testImplementation project(':structurizr-client')
6-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
76

87
}
98

structurizr-client/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ dependencies {
22

33
api project(':structurizr-core')
44

5-
api 'com.fasterxml.jackson.core:jackson-databind:2.18.1'
6-
api 'org.apache.httpcomponents.client5:httpclient5:5.4.1'
5+
api 'com.fasterxml.jackson.core:jackson-databind:2.18.3'
6+
api 'org.apache.httpcomponents.client5:httpclient5:5.4.3'
77
api 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
88

9-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
10-
119
}
1210

1311
sourceSets {

structurizr-component/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ dependencies {
55
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.26.2'
66

77
testImplementation project(':structurizr-annotation')
8-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
98

109
}
1110

structurizr-core/build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
dependencies {
22

3-
api 'com.fasterxml.jackson.core:jackson-annotations:2.18.1'
3+
api 'com.fasterxml.jackson.core:jackson-annotations:2.18.3'
44
api 'com.google.code.findbugs:jsr305:3.0.2'
5-
api 'commons-logging:commons-logging:1.3.4'
5+
api 'commons-logging:commons-logging:1.3.5'
66

7-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
8-
testImplementation 'org.assertj:assertj-core:3.26.3'
7+
testImplementation 'org.assertj:assertj-core:3.27.3'
98

109
}

structurizr-dsl/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ dependencies {
55
api project(':structurizr-export')
66
api project(':structurizr-component')
77

8-
testImplementation 'org.codehaus.groovy:groovy-jsr223:3.0.22'
8+
testImplementation 'org.codehaus.groovy:groovy-jsr223:3.0.24'
99
testImplementation 'org.jetbrains.kotlin:kotlin-scripting-jsr223:1.9.25'
10-
testImplementation 'org.jruby:jruby-core:9.4.8.0'
10+
testImplementation 'org.jruby:jruby-core:9.4.12.0'
1111

12-
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
13-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3'
1412
}
1513

1614
description = 'Structurizr DSL'

structurizr-export/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ dependencies {
33
api project(':structurizr-core')
44

55
testImplementation project(':structurizr-client')
6-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
76

87
}
98

structurizr-import/build.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ dependencies {
22

33
api project(':structurizr-core')
44

5-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
6-
75
}
86

97
description = 'Utilities to import diagrams and documentation into a Structurizr workspace'

structurizr-inspection/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ dependencies {
33
api project(':structurizr-core')
44

55
testImplementation project(':structurizr-dsl')
6-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
76

87
}

structurizr-neo4j/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
dependencies {
22

33
api project(':structurizr-core')
4-
implementation 'org.neo4j.driver:neo4j-java-driver:5.27.0'
4+
implementation 'org.neo4j.driver:neo4j-java-driver:5.28.4'
55

66
testImplementation project(':structurizr-client')
7-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
87

98
}

0 commit comments

Comments
 (0)