Skip to content

Commit

Permalink
Bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Sep 26, 2024
1 parent a461ef0 commit 2986e7c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21.0.1_12-jre-jammy
FROM eclipse-temurin:21.0.4_7-jre-jammy

RUN apt-get update && apt-get install -y unzip && apt install -y graphviz && rm -rf /var/lib/apt/lists/*

Expand Down
24 changes: 12 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,31 @@ targetCompatibility = 17

repositories {
mavenCentral()
// mavenLocal()
}

dependencies {
def structurizrVersion = '3.0.0'

def structurizrVersion = '3.0.0'
implementation "com.structurizr:structurizr-dsl:${structurizrVersion}"
implementation "com.structurizr:structurizr-export:${structurizrVersion}"
implementation "com.structurizr:structurizr-autolayout:${structurizrVersion}"
implementation "com.structurizr:structurizr-inspection:${structurizrVersion}"

implementation 'io.github.goto1134:structurizr-d2-exporter:1.5.3'

implementation 'commons-cli:commons-cli:1.5.0'
implementation 'commons-cli:commons-cli:1.9.0'

implementation 'org.codehaus.groovy:groovy-jsr223:3.0.19'
implementation 'org.jetbrains.kotlin:kotlin-scripting-jsr223:1.8.10'
implementation 'org.jruby:jruby-core:9.4.4.0'
implementation 'org.codehaus.groovy:groovy-jsr223:3.0.22'
implementation 'org.jetbrains.kotlin:kotlin-scripting-jsr223:1.9.25'
implementation 'org.jruby:jruby-core:9.4.8.0'

implementation 'commons-logging:commons-logging:1.2'
implementation 'org.apache.logging.log4j:log4j-api:2.23.0'
implementation 'org.apache.logging.log4j:log4j-core:2.23.0'
implementation 'org.apache.logging.log4j:log4j-jcl:2.23.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.23.0'
def log4jVersion = '2.24.0'
implementation "org.apache.logging.log4j:log4j-api:${log4jVersion}"
implementation "org.apache.logging.log4j:log4j-core:${log4jVersion}"
implementation "org.apache.logging.log4j:log4j-jcl:${log4jVersion}"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}"

testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.0'

}

Expand Down

0 comments on commit 2986e7c

Please sign in to comment.