mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-16 21:05:50 +00:00
Compare commits
No commits in common. "ce645feeba1821a552b95efced01630bb6a2c2f6" and "6781360ed6bdca79e1735e02856803b3d6df3b06" have entirely different histories.
ce645feeba
...
6781360ed6
4 changed files with 27 additions and 28 deletions
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
pool: 'default'
|
||||
trigger:
|
||||
branches:
|
||||
include:
|
||||
- main
|
||||
stages:
|
||||
- stage: build
|
||||
jobs:
|
||||
- job: jobbuild
|
||||
steps:
|
||||
- task: Gardle@3
|
||||
inputs:
|
||||
gradleWrapperFile: 'gradlew'
|
||||
publishJUnitResults: true
|
||||
testResultFiles: '**/TEST-*.xml'
|
||||
jdkVersionOption: '1.17'
|
||||
goals: 'validate'
|
|
@ -1,19 +1,18 @@
|
|||
---
|
||||
pool: 'default'
|
||||
pool: default
|
||||
trigger:
|
||||
branches:
|
||||
include:
|
||||
- main
|
||||
- main
|
||||
stages:
|
||||
- stage: build
|
||||
jobs:
|
||||
- job: jobbuild
|
||||
steps:
|
||||
- task: Gradle@3
|
||||
- task: maven@4
|
||||
inputs:
|
||||
tasks: 'build'
|
||||
gradleWrapperFile: 'gradlew'
|
||||
mavemPOMFile: pom.xml
|
||||
publishJUnitResults: true
|
||||
testResultFiles: '**/TEST-*.xml'
|
||||
jdkVersionOption: '1.17'
|
||||
goals: 'deploy'
|
||||
testResultFiles: '**/surefire-reports/TEST-*.xml'
|
||||
jdkVersionOption: '21'
|
||||
goals: package
|
||||
|
||||
|
||||
|
|
9
src/main/resources/messages/messages_fa.properties
Normal file
9
src/main/resources/messages/messages_fa.properties
Normal file
|
@ -0,0 +1,9 @@
|
|||
welcome=خوش آمدید
|
||||
required=الزامی
|
||||
notFound=یافت نشد
|
||||
duplicate=قبلا استفاده شده
|
||||
nonNumeric=باید عددی باشد
|
||||
duplicateFormSubmission=ارسال تکراری فرم مجاز نیست
|
||||
typeMismatch.date=تاریخ نامعتبر
|
||||
typeMismatch.birthDate=تاریخ تولد نامعتبر
|
||||
|
9
src/main/resources/messages/messages_tr.properties
Normal file
9
src/main/resources/messages/messages_tr.properties
Normal file
|
@ -0,0 +1,9 @@
|
|||
welcome=hoş geldiniz
|
||||
required=gerekli
|
||||
notFound=bulunamadı
|
||||
duplicate=zaten kullanılıyor
|
||||
nonNumeric=sadece sayısal olmalıdır
|
||||
duplicateFormSubmission=Formun tekrar gönderilmesine izin verilmez
|
||||
typeMismatch.date=geçersiz tarih
|
||||
typeMismatch.birthDate=geçersiz tarih
|
||||
|
Loading…
Reference in a new issue