#!/bin/bash # 简化版单体服务构建脚本 # 作者: emotion-museum # 日期: 2025-07-21 set -e echo "🚀 开始构建emotion-single简化版..." # 清理并构建 mvn clean package -DskipTests if [ -f "target/emotion-single-1.0.0.jar" ]; then echo "✅ 构建成功: target/emotion-single-1.0.0.jar" ls -lh target/emotion-single-1.0.0.jar else echo "❌ 构建失败" exit 1 fi echo "🎉 构建完成!"