Skip to content

Commit

Permalink
- Upgrades dependencies, targets Java 17.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Sep 18, 2023
1 parent c7e33ab commit 940a0e9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ subprojects { proj ->

description = 'Structurizr'
group = 'com.structurizr'
version = '1.26.1'
version = '1.27.0'

repositories {
mavenCentral()
Expand All @@ -34,8 +34,8 @@ subprojects { proj ->
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 17
targetCompatibility = 17

java {
withJavadocJar()
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.27.0 (unreleased)

- Upgrades dependencies, targets Java 17.

## 1.26.1 (28th July 2023)

- Adds the ability to specify the workspace visibility (private/public) via the workspace configuration.
Expand Down
6 changes: 3 additions & 3 deletions structurizr-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ dependencies {

api project(':structurizr-core')

api 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
api 'com.fasterxml.jackson.core:jackson-databind:2.15.1'
api 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
api 'javax.xml.bind:jaxb-api:2.3.1'
api 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'

testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'

}

Expand Down
6 changes: 3 additions & 3 deletions structurizr-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
dependencies {

api 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
api 'com.fasterxml.jackson.core:jackson-annotations:2.15.1'
api 'com.google.code.findbugs:jsr305:3.0.2'
api 'commons-logging:commons-logging:1.2'

testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
testImplementation 'org.assertj:assertj-core:3.23.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testImplementation 'org.assertj:assertj-core:3.24.2'

}

0 comments on commit 940a0e9

Please sign in to comment.