Skip to content

Commit 0ad1fd4

Browse files
authored
Create dsl_maven_project
1 parent a786582 commit 0ad1fd4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

jenkins/dsl_maven_project

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
job('DSL_JobForLoginApp'){
2+
description ("Creating LoginApp maven project using DSL job")
3+
scm {
4+
git("https://github.com/ravdy/javaloginapp.git", master)
5+
}
6+
triggers
7+
scm(* * * * *)
8+
}
9+
10+
steps {
11+
maven('clean package')
12+
}
13+
14+
publishers {
15+
archiveArtifacts '**/*.war'
16+
}

0 commit comments

Comments
 (0)