Skip to content

Commit

Permalink
Create dsl_maven_project
Browse files Browse the repository at this point in the history
  • Loading branch information
ravdy authored Sep 29, 2021
1 parent a786582 commit 0ad1fd4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jenkins/dsl_maven_project
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
job('DSL_JobForLoginApp'){
description ("Creating LoginApp maven project using DSL job")
scm {
git("https://github.com/ravdy/javaloginapp.git", master)
}
triggers
scm(* * * * *)
}

steps {
maven('clean package')
}

publishers {
archiveArtifacts '**/*.war'
}

0 comments on commit 0ad1fd4

Please sign in to comment.