#247 Remove primefaces dependency #248

Merged
romanov73 merged 9 commits from 247-restore-mvc into dev 2024-05-02 13:10:01 +04:00
Showing only changes of commit 70c950cdd7 - Show all commits

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
./gradlew build
}
}
stage('Test') {
steps {
./gradlew test
}
}
}
}