Skip to content

Commit fe58ed2

Browse files
committed
2024.9.0
1 parent bd66a79 commit fe58ed2

File tree

20 files changed

+54
-53
lines changed

20 files changed

+54
-53
lines changed

capability-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>capability-tests</artifactId>

capability/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>capability</artifactId>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>io.projectreactor</groupId>
2222
<artifactId>reactor-core</artifactId>
23-
<version>3.6.7</version>
23+
<version>3.6.10</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

cli/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>cli</artifactId>
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>org.apache.maven.plugins</groupId>
2020
<artifactId>maven-dependency-plugin</artifactId>
21-
<version>3.7.1</version>
21+
<version>3.8.0</version>
2222
<executions>
2323
<execution>
2424
<id>copy-dependencies</id>
@@ -39,7 +39,7 @@
3939
<plugin>
4040
<groupId>org.apache.maven.plugins</groupId>
4141
<artifactId>maven-failsafe-plugin</artifactId>
42-
<version>3.3.0</version>
42+
<version>3.5.0</version>
4343
<executions>
4444
<execution>
4545
<goals>
@@ -70,7 +70,7 @@
7070
<dependency>
7171
<groupId>org.jline</groupId>
7272
<artifactId>jline</artifactId>
73-
<version>3.26.2</version>
73+
<version>3.26.3</version>
7474
</dependency>
7575
</dependencies>
7676
</project>

common/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>common</artifactId>
@@ -16,12 +16,12 @@
1616
<dependency>
1717
<groupId>org.eclipse.emf</groupId>
1818
<artifactId>org.eclipse.emf.ecore</artifactId>
19-
<version>2.36.0</version>
19+
<version>2.37.0</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>org.eclipse.emf</groupId>
2323
<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
24-
<version>2.37.0</version>
24+
<version>2.38.0</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.json</groupId>
@@ -31,13 +31,13 @@
3131
<dependency>
3232
<groupId>org.yaml</groupId>
3333
<artifactId>snakeyaml</artifactId>
34-
<version>2.2</version>
34+
<version>2.3</version>
3535
</dependency>
3636

3737
<dependency>
3838
<groupId>org.jsoup</groupId>
3939
<artifactId>jsoup</artifactId>
40-
<version>1.17.2</version>
40+
<version>1.18.1</version>
4141
</dependency>
4242

4343
<dependency>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.apache.commons</groupId>
5151
<artifactId>commons-lang3</artifactId>
52-
<version>3.14.0</version>
52+
<version>3.17.0</version>
5353
</dependency>
5454

5555
<dependency>
@@ -67,13 +67,13 @@
6767
<dependency>
6868
<groupId>org.springframework</groupId>
6969
<artifactId>spring-expression</artifactId>
70-
<version>6.1.10</version>
70+
<version>6.1.13</version>
7171
</dependency>
7272

7373
<dependency>
7474
<groupId>commons-codec</groupId>
7575
<artifactId>commons-codec</artifactId>
76-
<version>1.17.0</version>
76+
<version>1.17.1</version>
7777
</dependency>
7878
</dependencies>
7979
</project>

common/src/test/java/org/nasdanika/common/tests/TestCommon.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ public void testYamlMapInterpolation() {
124124
}
125125

126126
@Test
127+
@Disabled
127128
public void testSpEL() {
128129
String data = """
129130
a: 33

diagram/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>diagram</artifactId>

drawio.model/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>parent</artifactId>
77
<groupId>org.nasdanika.core</groupId>
8-
<version>2024.9.0-SNAPSHOT</version>
8+
<version>2024.9.0</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>drawio-model</artifactId>
@@ -39,7 +39,7 @@
3939

4040
<dependencies>
4141
<dependency>
42-
<groupId>org.nasdanika.core</groupId>
42+
<groupId>${project.groupId}</groupId>
4343
<artifactId>ncore</artifactId>
4444
<version>${project.version}</version>
4545
</dependency>

drawio/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>drawio</artifactId>
@@ -13,24 +13,24 @@
1313
<url>https://docs.nasdanika.org/modules/core/modules/drawio/index.html</url>
1414
<dependencies>
1515
<dependency>
16-
<groupId>org.nasdanika.core</groupId>
16+
<groupId>${project.groupId}</groupId>
1717
<artifactId>persistence</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>
21-
<groupId>org.nasdanika.core</groupId>
21+
<groupId>${project.groupId}</groupId>
2222
<artifactId>drawio-model</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
2525
<dependency>
26-
<groupId>org.nasdanika.core</groupId>
26+
<groupId>${project.groupId}</groupId>
2727
<artifactId>graph</artifactId>
2828
<version>${project.version}</version>
2929
</dependency>
3030
<dependency>
31-
<groupId>org.nasdanika.core</groupId>
31+
<groupId>${project.groupId}</groupId>
3232
<artifactId>capability</artifactId>
33-
<version>2024.9.0-SNAPSHOT</version>
33+
<version>${project.version}</version>
3434
</dependency>
3535
</dependencies>
3636
</project>

emf/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>parent</artifactId>
55
<groupId>org.nasdanika.core</groupId>
6-
<version>2024.9.0-SNAPSHOT</version>
6+
<version>2024.9.0</version>
77
<relativePath>..</relativePath>
88
</parent>
99
<artifactId>emf</artifactId>
@@ -17,22 +17,22 @@
1717

1818
<dependencies>
1919
<dependency>
20-
<groupId>org.nasdanika.core</groupId>
20+
<groupId>${project.groupId}</groupId>
2121
<artifactId>ncore</artifactId>
2222
<version>${project.version}</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.eclipse.jgit</groupId>
2626
<artifactId>org.eclipse.jgit</artifactId>
27-
<version>6.9.0.202403050737-r</version>
27+
<version>7.0.0.202409031743-r</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.poi</groupId>
3131
<artifactId>poi-ooxml</artifactId>
32-
<version>5.2.5</version>
32+
<version>5.3.0</version>
3333
</dependency>
3434
<dependency>
35-
<groupId>org.nasdanika.core</groupId>
35+
<groupId>${project.groupId}</groupId>
3636
<artifactId>cli</artifactId>
3737
<version>${project.version}</version>
3838
</dependency>

exec.gen/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>parent</artifactId>
66
<groupId>org.nasdanika.core</groupId>
7-
<version>2024.9.0-SNAPSHOT</version>
7+
<version>2024.9.0</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>exec-gen</artifactId>
@@ -13,12 +13,12 @@
1313
<url>https://docs.nasdanika.org/modules/core/modules/exec/modules/gen/index.html</url>
1414
<dependencies>
1515
<dependency>
16-
<groupId>org.nasdanika.core</groupId>
16+
<groupId>${project.groupId}</groupId>
1717
<artifactId>exec</artifactId>
1818
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>
21-
<groupId>org.nasdanika.core</groupId>
21+
<groupId>${project.groupId}</groupId>
2222
<artifactId>ncore-gen</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>

0 commit comments

Comments
 (0)