Skip to content

Commit

Permalink
Enables structurizr-core to be used as a transitive dependency by c…
Browse files Browse the repository at this point in the history
…onsumers of `structurizr-client`.
  • Loading branch information
simonbrowndotje committed Aug 15, 2022
1 parent 702a4de commit d0697c5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defaultTasks 'clean', 'compileJava', 'test'

subprojects { proj ->

apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'

description = 'Structurizr'
group = 'com.structurizr'
version = '1.14.0'
version = '1.14.1'

repositories {
mavenCentral()
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.14.1 (15th August 2022)

- Enables `structurizr-core` to be used as a transitive dependency by consumers of `structurizr-client`.

## 1.14.0 (14th August 2022)

- Adds a helper method (`AbstractImpliedRelationshipsStrategy.createImpliedRelationship`) to create implied relationships, which can then be used by custom implementations.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Structurizr for Java binaries are hosted on [Maven Central](https://repo1.ma

Name | Description
---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------
com.structurizr:structurizr-client:1.14.0 | The Structurizr API client library.
com.structurizr:structurizr-client:1.14.1 | The Structurizr API client library.

## 2. Create a Java program

Expand Down
2 changes: 1 addition & 1 deletion structurizr-client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {

implementation project(':structurizr-core')
api project(':structurizr-core')

implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'

Expand Down
1 change: 1 addition & 0 deletions structurizr-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ dependencies {

testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.9.1'

}

0 comments on commit d0697c5

Please sign in to comment.