On 14/10/2025 16:59, Joel Griffith wrote:
My organization's main webapp has been disabled since upgrading to Tomcat 10 due to the jakarta namespace transition. I'm attempting to use the migration tool provided at https://tomcat.apache.org/download-migration.cgi, but I haven't had much luck.I downloaded the file 'jakartaee-migration-1.0.9-bin.tar.gz' and unarchived it into the folder `jakartaee-migration-1.0.9/`. That folder contains a README with the instructions ``` ### Build Build the migration tool from source with: ./mvnw verify ``` There is no 'mvnw', however. ``` jakartaee-migration-1.0.9$ find . -name "*mvnw*" jakartaee-migration-1.0.9$ ./mvnw verify -bash: ./mvnw: No such file or directory ``` I'm immediately lost. How do I use this tool?
You have downloaded the binary. You don't need to build from source. Skip to the Migrate section.
Use the bin/migrate.sh script as that is easier than building the class path yourself.
> cd bin > ./migrate.sh <source> <destination> Mark --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
