Skip to content

Commit f2ef894

Browse files
committed
2024.5.1
1 parent 30efe92 commit f2ef894

File tree

21 files changed

+36
-25
lines changed

21 files changed

+36
-25
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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>capability-tests</artifactId>

capability/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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>capability</artifactId>

capability/src/main/java/org/nasdanika/capability/emf/ResourceSetCapabilityFactory.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ protected ResourceSet contribute(
4646
for (CapabilityProvider<Object> cp: contributorProviders) {
4747
cp.getPublisher().subscribe(contributor -> ((ResourceSetContributor) contributor).contribute(resourceSet, progressMonitor));
4848
}
49-
Consumer<ResourceSet> configurator = requirement.configurator();
50-
if (configurator != null) {
51-
configurator.accept(resourceSet);
49+
50+
if (requirement != null) {
51+
Consumer<ResourceSet> configurator = requirement.configurator();
52+
if (configurator != null) {
53+
configurator.accept(resourceSet);
54+
}
5255
}
5356

5457
return resourceSet;

cli/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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>cli</artifactId>

common/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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>common</artifactId>

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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>diagram</artifactId>

drawio.model/pom.xml

Lines changed: 1 addition & 1 deletion
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.5.0</version>
8+
<version>2024.5.1</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>drawio-model</artifactId>

drawio/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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>drawio</artifactId>

emf/pom.xml

Lines changed: 1 addition & 1 deletion
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.5.0</version>
6+
<version>2024.5.1</version>
77
<relativePath>..</relativePath>
88
</parent>
99
<artifactId>emf</artifactId>

exec.gen/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.5.0</version>
7+
<version>2024.5.1</version>
88
<relativePath>..</relativePath>
99
</parent>
1010
<artifactId>exec-gen</artifactId>

0 commit comments

Comments
 (0)