@echo off setlocal enabledelayedexpansion set /p GROUP_ID=Enter the group ID (e.g., com.sencorsta): set /p PROJECT_NAME=Enter the project name (e.g., SuperMarioGame): REM 构建 DgroupId、DartifactId 和 Dpackage 参数 set "DgroupId=!GROUP_ID!" set "DartifactId=!PROJECT_NAME!" set "Dpackage=!GROUP_ID!" echo DgroupId: !DgroupId! echo DartifactId: !DartifactId! echo Dpackage: !Dpackage! mvn archetype:generate ^ -DarchetypeGroupId=com.sencorsta ^ -DarchetypeArtifactId=idsArchetypes ^ -DinteractiveMode=false ^ -Dversion=2.0-SNAPSHOT ^ -Dpackage=!Dpackage! ^ -DgroupId=!DgroupId! ^ -DartifactId=!DartifactId! endlocal