Skip to content

Commit

Permalink
[GR-59084] Revise Maven descriptions for Truffle and GraalWasm.
Browse files Browse the repository at this point in the history
PullRequest: graal/19049
  • Loading branch information
fniephaus committed Nov 10, 2024
2 parents 16ce05a + 4157780 commit c31b058
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion truffle/mx.truffle/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@
"TRUFFLE_API",
"TRUFFLE_COMPILER",
],
"description" : "Truffle runtime distribution.",
"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
"useModulePath": True,
"maven": {
"artifactId": "truffle-runtime",
Expand Down
4 changes: 2 additions & 2 deletions vm/mx.vm/mx_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def register_community_tools_distribution(owner_suite, register_distribution):
'artifactId': 'tools-community',
'tag': ['default', 'public'],
},
'description': 'Graalvm community tools.',
'description': 'This is POM dependency pulls in all tools for Graal Languages and Truffle Community Edition.',
}
tools_community = mx_pomdistribution.POMDistribution(owner_suite, 'TOOLS_COMMUNITY', [], tools_meta_poms, sorted(list(tools_licenses)), **attrs)
register_distribution(tools_community)
Expand Down Expand Up @@ -303,7 +303,7 @@ def register_community_languages_distribution(owner_suite, register_distribution
'artifactId': 'languages-community',
'tag': ['default', 'public'],
},
'description': 'Graalvm community languages.',
'description': 'This POM dependency pulls in all Graal Languages and Truffle Community Edition.',
}
languages_community = mx_pomdistribution.POMDistribution(owner_suite, 'LANGUAGES_COMMUNITY', [], languages_meta_poms, sorted(list(languages_licenses)), **attrs)
register_distribution(languages_community)
Expand Down
6 changes: 3 additions & 3 deletions wasm/mx.wasm/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"version" : "24.2.0",
"release" : False,
"versionConflictResolution" : "latest",
"url" : "http://graalvm.org/",
"url" : "http://graalvm.org/webassembly",
"developer" : {
"name": "GraalVM Development",
"email": "[email protected]",
Expand Down Expand Up @@ -250,7 +250,7 @@
"truffle:TRUFFLE_API",
"sdk:POLYGLOT",
],
"description" : "GraalWasm, an engine for the WebAssembly language in GraalVM.",
"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
"allowsJavadocWarnings": True,
"license" : "UPL",
"maven" : {
Expand All @@ -270,7 +270,7 @@
"artifactId": "wasm-community",
"tag": ["default", "public"],
},
"description": "Graal WASM engine.",
"description": "GraalWasm, a high-performance embeddable WebAssembly runtime for Java. This POM dependency pulls in GraalWasm dependencies and Truffle Community Edition.",
"license": "UPL",
},

Expand Down

0 comments on commit c31b058

Please sign in to comment.