aboutsummaryrefslogtreecommitdiff
path: root/src/JobConfig.groovy
blob: 34f782ba8183af904ad005d9d3d4395d353589c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// src/JobConfig.groovy
//package JobConfig;

class JobConfig implements Serializable {

    // Regression testing summary control
    def post_rt_summary = false 
    def all_posts_in_same_issue = true

    // Build retention control
    def builds_to_keep = -1

    // Development
    def debug = false

    // Constructors
    JobConfig() {}
}