Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
2023.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Dec 27, 2023
1 parent 179f2a0 commit 4544737
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.nasdanika</groupId>
<artifactId>plantuml-diagram-generator</artifactId>
<version>2023.12.0</version>
<version>2023.12.1</version>
<packaging>jar</packaging>
<name>PlantUML DiagramGenerator</name>
<description>org.nasdanika.common.DiagramGenerator which uses PlantUML</description>
Expand Down Expand Up @@ -32,7 +32,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.0</version>
<configuration>
<source>17</source>
<target>17</target>
Expand All @@ -54,7 +54,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.3</version>

<executions>
<execution>
Expand Down Expand Up @@ -120,12 +120,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.3</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<version>5.10.1</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -135,19 +135,26 @@
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>common</artifactId>
<version>2023.12.0</version>
<version>2023.12.1</version>
</dependency>

<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<version>1.2023.12</version>
<version>1.2023.13</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<version>5.10.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 4544737

Please sign in to comment.