-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
36 lines (36 loc) · 1016 Bytes
/
Jenkinsfile
File metadata and controls
36 lines (36 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
pipeline {
agent any
stages {
stage('Checkout Code') {
steps {
// Corrected the repository URL and ensured 'branch' syntax is accurate
git branch: 'main', url: 'https://github.com/your-repo/java-project.git'
}
}
stage('Build') {
steps {
// Runs Maven clean and package commands
sh 'mvn clean package'
}
}
stage('Test') {
steps {
// Runs Maven tests
sh 'mvn test'
}
}
stage('Package') {
steps {
// Packages the application
sh 'mvn package'
}
}
stage('Docker Build & Push') {
steps {
// Corrected the Docker repository URL format
sh 'docker build -t sunestech/java-app:latest .'
sh 'docker push sunestech/java-app:latest'
}
}
}
}