mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 05:15: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:
|
trigger:
|
||||||
branches:
|
- main
|
||||||
include:
|
|
||||||
- main
|
|
||||||
stages:
|
stages:
|
||||||
- stage: build
|
- stage: build
|
||||||
jobs:
|
jobs:
|
||||||
- job: jobbuild
|
- job: jobbuild
|
||||||
steps:
|
steps:
|
||||||
- task: Gradle@3
|
- task: maven@4
|
||||||
inputs:
|
inputs:
|
||||||
tasks: 'build'
|
mavemPOMFile: pom.xml
|
||||||
gradleWrapperFile: 'gradlew'
|
|
||||||
publishJUnitResults: true
|
publishJUnitResults: true
|
||||||
testResultFiles: '**/TEST-*.xml'
|
testResultFiles: '**/surefire-reports/TEST-*.xml'
|
||||||
jdkVersionOption: '1.17'
|
jdkVersionOption: '21'
|
||||||
goals: 'deploy'
|
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