构建jar包
All checks were successful
Liang-gitea/liang-spring-service/pipeline/head This commit looks good
liang-spring-service/pipeline/head This commit looks good

This commit is contained in:
liangjinglin 2024-12-25 22:53:34 +08:00
parent 2f2077e796
commit 1d5c7fd3d7
2 changed files with 10 additions and 0 deletions

1
Jenkinsfile vendored
View File

@ -4,6 +4,7 @@ pipeline {
stage('Build') {
steps {
sh 'echo build'
sh "mvn clean package -DskipTests=true"
}
}
stage('Test'){

View File

@ -27,5 +27,14 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>