# PowerShell script for building and deploying arm_am-pom to JBoss EAP 7.4 # Configuration $JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-7.4" $PROJECT_DIR = "C:\Dev2012\source\WindSurf\adv\arm_am-pom" $DEPLOYMENT_DIR = "$JBOSS_HOME\standalone\deployments" $MAVEN_PROFILE = "adv360-DEV" # Default development profile $JAVA_HOME = "C:\Dev2012\BUILDERS\java\jdk1.8.0_291" # Path to Java 8 # Store the original directory $originalDirectory = Get-Location # Function to check if JBoss is running function Is-JBossRunning { $jbossProcess = Get-Process -Name "java" -ErrorAction SilentlyContinue | Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" } return $null -ne $jbossProcess } Write-Host "Starting build and deploy process..." -ForegroundColor Green # Check if Java exists if (-not (Test-Path $JAVA_HOME)) { Write-Host "Error: Java 8 not found at $JAVA_HOME" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Set JAVA_HOME for the build $env:JAVA_HOME = $JAVA_HOME Write-Host "Using Java from: $JAVA_HOME" -ForegroundColor Yellow # Check if JBoss directory exists if (-not (Test-Path $JBOSS_HOME)) { Write-Host "Error: JBoss directory not found at $JBOSS_HOME" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Check if project directory exists if (-not (Test-Path $PROJECT_DIR)) { Write-Host "Error: Project directory not found at $PROJECT_DIR" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Navigate to project directory Set-Location $PROJECT_DIR # Clean and build the project with Maven Write-Host "Building project with Maven using profile $MAVEN_PROFILE..." -ForegroundColor Yellow Write-Host "Current directory: $(Get-Location)" -ForegroundColor Yellow # First build the parent and modules with debug output Write-Host "Building parent POM..." -ForegroundColor Yellow & "$env:JAVA_HOME\bin\java" -version mvn clean install -N -P$MAVEN_PROFILE -X if ($LASTEXITCODE -ne 0) { Write-Host "Maven parent build failed!" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Build the EJB module first with debug output Write-Host "Building EJB module..." -ForegroundColor Yellow Set-Location "$PROJECT_DIR\arm_am-ejb" mvn clean install -DskipTests -P$MAVEN_PROFILE -X if ($LASTEXITCODE -ne 0) { Write-Host "Maven EJB module build failed!" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Build the WAR module with debug output Write-Host "Building WAR module..." -ForegroundColor Yellow Set-Location "$PROJECT_DIR\arm_am" mvn clean install -DskipTests -P$MAVEN_PROFILE -X if ($LASTEXITCODE -ne 0) { Write-Host "Maven WAR module build failed!" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Finally build the EAR module with debug output Write-Host "Building EAR module..." -ForegroundColor Yellow Set-Location "$PROJECT_DIR\arm_am-ear" mvn clean package -DskipTests -P$MAVEN_PROFILE -X if ($LASTEXITCODE -ne 0) { Write-Host "Maven EAR module build failed!" -ForegroundColor Red Set-Location $originalDirectory # Restore original directory exit 1 } # Check if build produced the EAR file $earFile = Get-ChildItem -Path "$PROJECT_DIR\arm_am-ear\target\*.ear" -ErrorAction SilentlyContinue | Select-Object -First 1 if (-not $earFile) { Write-Host "Error: EAR file not found after build" -ForegroundColor Red Write-Host "Searching in: $PROJECT_DIR\arm_am-ear\target\" -ForegroundColor Yellow Set-Location $originalDirectory # Restore original directory exit 1 } # Create deployments directory if it doesn't exist if (-not (Test-Path $DEPLOYMENT_DIR)) { New-Item -ItemType Directory -Path $DEPLOYMENT_DIR } # Copy EAR file to JBoss deployments directory Write-Host "Deploying EAR to JBoss..." -ForegroundColor Yellow Write-Host "Copying from: $($earFile.FullName)" -ForegroundColor Yellow Write-Host "Copying to: $DEPLOYMENT_DIR" -ForegroundColor Yellow Copy-Item $earFile.FullName $DEPLOYMENT_DIR # Check if JBoss is running if (Is-JBossRunning) { Write-Host "JBoss is running - deployment will be automatically picked up" -ForegroundColor Green } else { Write-Host "Note: JBoss is not running. Start JBoss to complete deployment" -ForegroundColor Yellow } Write-Host "Build and deploy process completed!" -ForegroundColor Green # Restore the original directory Set-Location $originalDirectory