pipeline{
agent any
stages{
stage('checkout'){
steps{
git credentialsId: 'e9388f75-0dc7-4a25-acb1-fab94978f9be', url: 'https://github.com/sujay75/simpleapp.git'
}
}
stage('build'){
steps{
bat "mvn clean package -Dmaven.test.skip"
}
}
stage('unit-test'){
steps{
bat "mvn clean package"
}
}
stage('deploy'){
steps{
bat deploy adapters: [tomcat8(credentialsId: 'd77b14f0-f49f-4c1b-8ffb-1b43ab4d904d', path: '', url: 'http://localhost:8091/')], contextPath: 'simpleapp', war: '**/*.war'
}
}
}
}
код ниже генерируется автоматически из Jenkins, но выдает синтаксическую ошибку: развернуть адаптеры:
[tomcat8(credentialsId: 'd77b14f0-f49f-4c1b-8ffb-1b43ab4d904d', path: '', url: 'http://localhost:8091/')], contextPath: 'simpleapp', war: '**/*.war'