This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch gremlin-mcp in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 5425d79df7bc419f4e622ffc789e729887d341ea Author: Stephen Mallette <[email protected]> AuthorDate: Wed Oct 1 10:29:48 2025 -0400 Use centralized node version for gremlint --- gremlint/pom.xml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gremlint/pom.xml b/gremlint/pom.xml index dc4212769c..c94e3255c9 100644 --- a/gremlint/pom.xml +++ b/gremlint/pom.xml @@ -28,8 +28,6 @@ limitations under the License. <properties> <maven.test.skip>false</maven.test.skip> <skipTests>${maven.test.skip}</skipTests> - <npm.version>10.8.2</npm.version> - <node.version>v20.19.4</node.version> </properties> <build> <directory>${basedir}/target</directory> @@ -136,8 +134,8 @@ limitations under the License. </execution> </executions> <configuration> - <nodeVersion>${node.version}</nodeVersion> - <npmVersion>${npm.version}</npmVersion> + <nodeVersion>${runtime.node.version}</nodeVersion> + <npmVersion>${runtime.npm.version}</npmVersion> </configuration> </plugin> <!-- @@ -212,8 +210,8 @@ limitations under the License. activated and that should be good enough given our deployment process. --> <skip>false</skip> - <nodeVersion>${node.version}</nodeVersion> - <npmVersion>${npm.version}</npmVersion> + <nodeVersion>${runtime.node.version}</nodeVersion> + <npmVersion>${runtime.npm.version}</npmVersion> </configuration> </plugin> </plugins>
