Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright 2018-2023 Open Text.
Copyright 2018-2025 Open Text.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@

<groupId>com.github.uxaspects</groupId>
<artifactId>buildenv-image</artifactId>
<version>4.2.0-SNAPSHOT</version>
<version>5.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>UXAspects Build Environment Image</name>
Expand Down Expand Up @@ -74,7 +74,7 @@
</developers>

<properties>
<copyrightYear>2023</copyrightYear>
<copyrightYear>2025</copyrightYear>
<copyrightNotice>Copyright ${project.inceptionYear}-${copyrightYear} Open Text.</copyrightNotice>
<dockerHubOrganization>uxaspects</dockerHubOrganization>
<dockerUXAspectsOrg>${dockerImagePrefix}${dockerHubOrganization}${dockerOrgSeperator}</dockerUXAspectsOrg>
Expand All @@ -88,7 +88,7 @@
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.27.2</version>
<version>0.46.0</version>
<executions>
<execution>
<id>docker-build</id>
Expand Down
4 changes: 1 addition & 3 deletions release-notes-4.2.0.md → release-notes-5.0.0.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
!not-ready-for-release!

#### Version Number
${version-number}

#### New Features

#### Known Issues
- Updating to Node 22
7 changes: 4 additions & 3 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2023 Open Text.
# Copyright 2022-2025 Open Text.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -22,10 +22,11 @@ FROM maven:3.8.4-jdk-11
#
# Install Node.js (which includes npm)
#
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - && \
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && \
apt-get install -y nodejs && \
echo "Node.js version: $(node -v)" && \
npm install npm@10.1.0 -g && \
npm install npm@latest -g && \
npm install --global corepack@latest && \
echo "NPM version: $(npm -v)"

#
Expand Down