Skip to content

Commit

Permalink
Update to PlantUML 1.2023.2
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Mar 8, 2023
1 parent f99cd1f commit b352eda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plantuml-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ description = "Gradle Plugin for PlantUML"

dependencies {
//noinspection GradlePackageUpdate
compileOnly 'net.sourceforge.plantuml:plantuml:1.2023.1'
compileOnly 'net.sourceforge.plantuml:plantuml:1.2023.2'

testRuntimeOnly 'net.sourceforge.plantuml:plantuml:1.2023.1'
testRuntimeOnly 'net.sourceforge.plantuml:plantuml:1.2023.2'
}

gradlePlugin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void apply(Project project) {
Configuration plantuml = project.getConfigurations().create("plantuml");

plantuml.defaultDependencies(s -> {
s.add(project.getDependencies().create("net.sourceforge.plantuml:plantuml:1.2023.1"));
s.add(project.getDependencies().create("net.sourceforge.plantuml:plantuml:1.2023.2"));
});

project.getTasks().withType(PlantumlTask.class).configureEach(plantumlTask -> {
Expand Down

0 comments on commit b352eda

Please sign in to comment.