Skip to content

Commit c31b058

Browse files
committed
[GR-59084] Revise Maven descriptions for Truffle and GraalWasm.
PullRequest: graal/19049
2 parents 16ce05a + 4157780 commit c31b058

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

truffle/mx.truffle/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1647,7 +1647,7 @@
16471647
"TRUFFLE_API",
16481648
"TRUFFLE_COMPILER",
16491649
],
1650-
"description" : "Truffle runtime distribution.",
1650+
"description" : "The community edition of the Truffle runtime for Graal Languages. It is not recommended to depend on this artifact directly. Instead, use a POM dependency of one or more Graal Languages (for example `org.graalvm.polyglot:js-community`) to ensure all dependencies are pulled in correctly.", # pylint: disable=line-too-long
16511651
"useModulePath": True,
16521652
"maven": {
16531653
"artifactId": "truffle-runtime",

vm/mx.vm/mx_vm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def register_community_tools_distribution(owner_suite, register_distribution):
241241
'artifactId': 'tools-community',
242242
'tag': ['default', 'public'],
243243
},
244-
'description': 'Graalvm community tools.',
244+
'description': 'This is POM dependency pulls in all tools for Graal Languages and Truffle Community Edition.',
245245
}
246246
tools_community = mx_pomdistribution.POMDistribution(owner_suite, 'TOOLS_COMMUNITY', [], tools_meta_poms, sorted(list(tools_licenses)), **attrs)
247247
register_distribution(tools_community)
@@ -303,7 +303,7 @@ def register_community_languages_distribution(owner_suite, register_distribution
303303
'artifactId': 'languages-community',
304304
'tag': ['default', 'public'],
305305
},
306-
'description': 'Graalvm community languages.',
306+
'description': 'This POM dependency pulls in all Graal Languages and Truffle Community Edition.',
307307
}
308308
languages_community = mx_pomdistribution.POMDistribution(owner_suite, 'LANGUAGES_COMMUNITY', [], languages_meta_poms, sorted(list(languages_licenses)), **attrs)
309309
register_distribution(languages_community)

wasm/mx.wasm/suite.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"version" : "24.2.0",
4646
"release" : False,
4747
"versionConflictResolution" : "latest",
48-
"url" : "http://graalvm.org/",
48+
"url" : "http://graalvm.org/webassembly",
4949
"developer" : {
5050
"name": "GraalVM Development",
5151
"email": "graalvm-dev@oss.oracle.com",
@@ -250,7 +250,7 @@
250250
"truffle:TRUFFLE_API",
251251
"sdk:POLYGLOT",
252252
],
253-
"description" : "GraalWasm, an engine for the WebAssembly language in GraalVM.",
253+
"description" : "GraalWasm, a high-performance embeddable WebAssembly runtime for Java. This artifact includes the core language runtime. It is not recommended to depend on the artifact directly. Instead, use `org.graalvm.polyglot:wasm` or `org.graalvm.polyglot:wasm-community` to ensure all dependencies are pulled in correctly.", # pylint: disable=line-too-long
254254
"allowsJavadocWarnings": True,
255255
"license" : "UPL",
256256
"maven" : {
@@ -270,7 +270,7 @@
270270
"artifactId": "wasm-community",
271271
"tag": ["default", "public"],
272272
},
273-
"description": "Graal WASM engine.",
273+
"description": "GraalWasm, a high-performance embeddable WebAssembly runtime for Java. This POM dependency pulls in GraalWasm dependencies and Truffle Community Edition.",
274274
"license": "UPL",
275275
},
276276

0 commit comments

Comments
 (0)