121 lines
4.1 KiB
PowerShell
121 lines
4.1 KiB
PowerShell
# PowerShell script for building and deploying arm_am-pom to JBoss EAP 8.0
|
|
|
|
# Configuration
|
|
$JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-8.0"
|
|
$PROJECT_DIR = "C:\Dev2012\source\WindSurf\adv8\arm_am-pom"
|
|
$DEPLOYMENT_DIR = "$JBOSS_HOME\standalone\deployments"
|
|
$MAVEN_PROFILE = "adv360-DEV" # Default development profile
|
|
$JAVA_HOME = "C:\Dev2012\BUILDERS\java\jdk-17.0.9" # Path to Java 17
|
|
|
|
# Store the original directory
|
|
$originalDirectory = Get-Location
|
|
|
|
# Function to check if JBoss is running
|
|
function Is-JBossRunning {
|
|
$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
|
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 17 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
|
|
|
|
# Build process
|
|
Write-Host "Building project with profile $MAVEN_PROFILE..." -ForegroundColor Yellow
|
|
|
|
# Build parent
|
|
mvn clean install -N "-P$MAVEN_PROFILE"
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Host "Maven parent build failed!" -ForegroundColor Red
|
|
Set-Location $originalDirectory
|
|
exit 1
|
|
}
|
|
|
|
# Build EJB module
|
|
Set-Location "$PROJECT_DIR\arm_am-ejb"
|
|
mvn clean install -DskipTests "-P$MAVEN_PROFILE"
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Host "Maven EJB module build failed!" -ForegroundColor Red
|
|
Set-Location $originalDirectory # Restore original directory
|
|
exit 1
|
|
}
|
|
|
|
# Build WAR module
|
|
Set-Location "$PROJECT_DIR\arm_am"
|
|
mvn clean install -DskipTests "-P$MAVEN_PROFILE"
|
|
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"
|
|
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
|