mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
change Naming for user name
This commit is contained in:
parent
05b1576183
commit
3a5453e272
2 changed files with 9 additions and 5 deletions
10
Jenkinsfile/Jenkinsfile
vendored
10
Jenkinsfile/Jenkinsfile
vendored
|
@ -1,7 +1,11 @@
|
|||
pipeline {
|
||||
agent any // This runs the pipeline on any available agent
|
||||
|
||||
|
||||
environment {
|
||||
// Set environment variables if needed
|
||||
APP_DIR = "/home/vagrant/petclinic"
|
||||
REPO_URL = "https://github.com/yiting68/spring-petclinic.git"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
|
@ -14,14 +18,14 @@ pipeline {
|
|||
stage('Build') {
|
||||
steps {
|
||||
// Install dependencies and build the project
|
||||
gradlew clean build // assuming you are using Gradle
|
||||
sh './gradlew clean build' // assuming you are using Gradle
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
// Run tests (JUnit tests in this case)
|
||||
./gradlew test
|
||||
sh './gradlew test'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ duplicateFormSubmission=Duplicate form submission is not allowed
|
|||
typeMismatch.date=invalid date
|
||||
typeMismatch.birthDate=invalid date
|
||||
owner=Owner
|
||||
firstName=First Name
|
||||
lastName=Last Name
|
||||
firstName=enter your First Name
|
||||
lastName=enter you Last Name
|
||||
address=Address
|
||||
city=City
|
||||
telephone=Telephone
|
||||
|
|
Loading…
Reference in a new issue