Skip to content

Commit 9c230f5

Browse files
Merge pull request #7323 from deutschebank/db-contrib/waltz-7322-merge-issue-resolution
Db contrib/waltz 7322 merge issue resolution
2 parents 07e3d25 + 3ac4cb6 commit 9c230f5

File tree

18 files changed

+98
-17
lines changed

18 files changed

+98
-17
lines changed

.github/ISSUE_TEMPLATE/Meeting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Monday DD MMM yyyy - 8am EST / 1pm UK
88
Occurs the second Monday of every month
99

1010
## Zoom
11-
Join Zoom Meeting
12-
https://zoom.us/j/98495304665
11+
[Join Zoom Meeting](
12+
https://zoom-lfx.platform.linuxfoundation.org/meeting/96950469863?password=a4229b81-221e-4262-8d22-f7ba73ca007f)
1313

14-
Meeting ID: 984 9530 4665
15-
Passcode: 202795
14+
15+
Register for the meeting [here](https://zoom-lfx.platform.linuxfoundation.org/meeting/96950469863?password=a4229b81-221e-4262-8d22-f7ba73ca007f&invite=true)
1616

1717
Find your local number: https://zoom.us/u/aeyTu3Q7E8
1818

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ services:
99
- postgres
1010

1111
postgres:
12-
image: postgres:11
12+
image: postgres:16
1313
environment:
1414
POSTGRES_USER: waltz
1515
POSTGRES_DB: waltz
1616
POSTGRES_PASSWORD: waltz
17+
ports:
18+
- 5432:5432

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<groupId>org.finos</groupId>
3333
<artifactId>waltz</artifactId>
34-
<version>1.72-SNAPSHOT</version>
34+
<version>1.73.0-SNAPSHOT</version>
3535
<modules>
3636
<module>waltz-common</module>
3737
<module>waltz-model</module>
@@ -99,6 +99,7 @@
9999
<pcollections.version>4.0.1</pcollections.version>
100100
<poi.version>5.2.4</poi.version>
101101
<slf4j.version>2.0.7</slf4j.version>
102+
<snakeyaml.version>1.33</snakeyaml.version>
102103
<spark.version>2.9.1</spark.version> <!-- 2.9.3 causes issues with tomcat -->
103104
<spark-freemarker.version>2.7.1</spark-freemarker.version>
104105
<spring.version>5.3.30</spring.version>
@@ -109,7 +110,7 @@
109110

110111
<timestamp>${maven.build.timestamp}</timestamp>
111112
<playwright.skip>true</playwright.skip>
112-
<jetty.version>9.4.55.v20240627</jetty.version>
113+
<jetty.version>9.4.57.v20241219</jetty.version>
113114
</properties>
114115

115116

@@ -321,6 +322,11 @@
321322
<artifactId>poi-ooxml</artifactId>
322323
<version>${poi.version}</version>
323324
</dependency>
325+
<dependency>
326+
<groupId>org.yaml</groupId>
327+
<artifactId>snakeyaml</artifactId>
328+
<version>${snakeyaml.version}</version>
329+
</dependency>
324330

325331

326332
<!-- test -->

waltz-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>waltz</artifactId>
2525
<groupId>org.finos</groupId>
26-
<version>1.72-SNAPSHOT</version>
26+
<version>1.73.0-SNAPSHOT</version>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>
2929

waltz-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>waltz</artifactId>
2525
<groupId>org.finos</groupId>
26-
<version>1.72-SNAPSHOT</version>
26+
<version>1.73.0-SNAPSHOT</version>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>
2929

waltz-integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>waltz</artifactId>
2525
<groupId>org.finos</groupId>
26-
<version>1.72-SNAPSHOT</version>
26+
<version>1.73.0-SNAPSHOT</version>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>
2929

waltz-jobs/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>waltz</artifactId>
2525
<groupId>org.finos</groupId>
26-
<version>1.72-SNAPSHOT</version>
26+
<version>1.73.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<modelVersion>4.0.0</modelVersion>
@@ -71,6 +71,11 @@
7171
<version>${poi.version}</version>
7272
</dependency>
7373

74+
<dependency>
75+
<groupId>org.yaml</groupId>
76+
<artifactId>snakeyaml</artifactId>
77+
</dependency>
78+
7479
<dependency>
7580
<groupId>org.apache.commons</groupId>
7681
<artifactId>commons-jexl3</artifactId>

waltz-jobs/src/main/java/org/finos/waltz/jobs/generators/PhysicalFlowGenerator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ private static List<PhysicalFlowRecord> mkPhysicalFlowRecords(PhysicalSpecificat
9393
record.setLastUpdatedBy("admin");
9494
record.setCreatedBy("admin");
9595
record.setCreatedAt(nowUtcTimestamp());
96+
record.setName(String.format("Physical Flow: Spec: [%s], Logical Flow: [%s]", spec.name(), logicalFlowId));
9697
return record;
9798
})
9899
.collect(Collectors.toList());

waltz-jobs/src/main/java/org/finos/waltz/jobs/tools/importers/licence/finos/FinosLicenceComplianceImporter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ private List<LicenceCompliance> parseData(String directoryPath) throws IOExcepti
319319

320320
private Optional<LicenceCompliance> parseCompliance(Path path) {
321321
try {
322+
System.out.println("Parsing: " + path);
322323
LicenceCompliance compliance = getYamlMapper().readValue(path.toFile(), LicenceCompliance.class);
323324
return Optional.of(compliance);
324325
} catch (IOException e) {

waltz-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>waltz</artifactId>
2525
<groupId>org.finos</groupId>
26-
<version>1.72-SNAPSHOT</version>
26+
<version>1.73.0-SNAPSHOT</version>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>
2929

0 commit comments

Comments
 (0)