#247 -- Fix jenkins file

This commit is contained in:
Anton Romanov 2024-05-02 13:17:05 +04:00
parent db4620694c
commit a9c617075f
2 changed files with 2 additions and 6 deletions

4
Jenkinsfile vendored
View File

@ -3,12 +3,12 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
./gradlew build sh "./gradlew build"
} }
} }
stage('Test') { stage('Test') {
steps { steps {
./gradlew test sh "./gradlew test"
} }
} }
} }

View File

@ -112,8 +112,4 @@ dependencies {
implementation group: 'xalan', name: 'xalan', version: '2.7.2' implementation group: 'xalan', name: 'xalan', version: '2.7.2'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test' testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
//compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.3.1'
//testCompile group: 'org.seleniumhq.selenium', name: 'selenium-support', version: '3.3.1'
//testCompile group: 'com.google.guava', name: 'guava', version: '21.0'
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
} }