Skip to content

Commit 87be831

Browse files
authored
Merge pull request #670 from bci-oss/bugfix/663-samm-validate-not-working-with-samm-cli-on-macos
Add org.graalvm.js:js dependency is missing in the fat jar
2 parents 6a5fa29 + bebf226 commit 87be831

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

core/esmf-aspect-model-validator/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
<dependency>
4444
<groupId>org.graalvm.js</groupId>
4545
<artifactId>js</artifactId>
46-
<type>pom</type>
46+
<type>jar</type>
47+
<version>${graalvm-version}</version>
4748
</dependency>
4849
<dependency>
4950
<groupId>org.graalvm.js</groupId>

tools/samm-cli/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,14 @@
9797
<dependency>
9898
<groupId>org.graalvm.js</groupId>
9999
<artifactId>js</artifactId>
100-
<type>pom</type>
100+
<type>jar</type>
101+
<version>${graalvm-version}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.graalvm.js</groupId>
105+
<artifactId>js-scriptengine</artifactId>
106+
<type>jar</type>
107+
<version>${graalvm-version}</version>
101108
</dependency>
102109

103110
<!-- Test dependencies -->

0 commit comments

Comments
 (0)