Update automated project templates
[releng/builder.git] / jjb / coretutorials / coretutorials.yaml
1 # REMOVE THIS LINE IF YOU WANT TO CUSTOMIZE ANYTHING BELOW
2 # Otherwise this file will be automatically overwritten by the template
3 # autobuilder.
4
5 # ODL Releng build templates
6 - project:
7     name: coretutorials
8     jobs:
9         - 'coretutorials-verify-{stream}'
10         - 'coretutorials-merge-{stream}'
11         - 'coretutorials-periodic-{stream}'
12         - 'coretutorials-distribution-{stream}'
13         - 'coretutorials-distribution-check-{stream}'
14         - 'coretutorials-integration-{stream}'
15         - 'coretutorials-sonar'
16         - 'coretutorials-clm-{stream}'
17         - 'coretutorials-validate-autorelease-{stream}'
18
19
20     # stream:    release stream (eg. stable-lithium or beryllium)
21     # branch:    git branch (eg. stable/lithium or master)
22     stream:
23         - boron:
24             branch: 'master'
25             jdk: openjdk8
26             jdks:
27                 - openjdk8
28             disable_autorelease: True
29             disable_distribution_check: False
30         - beryllium:
31             branch: 'stable/beryllium'
32             jdk: openjdk7
33             jdks:
34                 - openjdk7
35             disable_autorelease: True
36             disable_distribution_check: False
37         - stable-lithium:
38             branch: 'stable/lithium'
39             jdk: openjdk7
40             jdks:
41                 - openjdk7
42             disable_autorelease: True
43             disable_distribution_check: True
44
45     project: 'coretutorials'
46
47 # For the Job templates below replace instances of:
48 # PROJECT_SHORTNAME with your project name (eg. circuitsw)
49 # PROJECT_PATH with your project name (eg. ofextensions/circuitsw)
50 # MAVEN_GOALS with your maven goals to build
51 # MAVEN_OPTS with your maven options to build
52
53 - job-template:
54     name: 'coretutorials-verify-{stream}'
55
56     # Job template for ODL verify jobs
57     #
58     # The purpose of this job template is to setup a ODL verify job
59     #
60     # Required Variables:
61     #     stream:    release stream (eg. stable-lithium or beryllium)
62     #     branch:    git branch (eg. stable/lithium or master)
63
64     project-type: matrix
65     node: matrix_master
66     concurrent: true
67
68     axes:
69         - axis:
70             type: slave
71             name: nodes
72             values:
73                 - dynamic_verify
74         - axis:
75             type: jdk
76             values: '{obj:jdks}'
77
78     logrotate:
79         daysToKeep: '14'
80
81     parameters:
82         - project-parameter:
83             project: '{project}'
84         - gerrit-parameters:
85             project: '{project}'
86             branch: '{branch}'
87             refspec: 'refs/heads/{branch}'
88
89     scm:
90         - gerrit-trigger-scm:
91             credentials-id: '{ssh-credentials}'
92             refspec: '$GERRIT_REFSPEC'
93             choosing-strategy: 'gerrit'
94
95     wrappers:
96         - build-timeout
97         - ssh-agent-credentials:
98             users:
99                 - '{ssh-credentials}'
100
101     triggers:
102         - gerrit-trigger-patch-submitted:
103             name: 'coretutorials'
104             branch: '{branch}'
105
106     builders:
107         - jacoco-nojava-workaround
108         - provide-maven-settings:
109             global-settings-file: 'odl-global-settings'
110             settings-file: 'coretutorials-settings'
111         - maven-target:
112             maven-version: '{mvn33}'
113             pom: 'pom.xml'
114             goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -V -B -Djenkins -Dstream={stream}'
115             java-opts:
116                 - '-Xmx1024m -XX:MaxPermSize=256m'
117             settings: 'coretutorials-settings'
118             settings-type: cfp
119             global-settings: 'odl-global-settings'
120             global-settings-type: cfp
121
122     publishers:
123         - archive-artifacts:
124             artifacts: '**/target/surefire-reports/*-output.txt, '
125         - findbugs
126         - email-notification:
127             email-prefix: '[coretutorials]'
128         - jacoco-report
129         - archive-build:
130             maven-version: '{mvn33}'
131
132 - job-template:
133     name: 'coretutorials-merge-{stream}'
134
135     # Job template for ODL merge jobs
136     #
137     # The purpose of this job template is to setup a ODL merge job
138     # and deploy artifacts to Nexus.
139     #
140     # Required Variables:
141     #     stream:    release stream (eg. stable-lithium or beryllium)
142     #     branch:    git branch (eg. stable/lithium or master)
143
144     project-type: maven
145     node: dynamic_merge
146     jdk: '{jdk}'
147
148     logrotate:
149         daysToKeep: '14'
150         numToKeep: '10'
151         artifactDaysToKeep: '{build-artifact-days-to-keep}'
152         artifactNumToKeep: '{build-artifact-num-to-keep}'
153
154     parameters:
155         - project-parameter:
156             project: '{project}'
157         - gerrit-parameters:
158             project: '{project}'
159             branch: '{branch}'
160             refspec: 'refs/heads/{branch}'
161
162     scm:
163         - gerrit-trigger-scm:
164             credentials-id: '{ssh-credentials}'
165             refspec: ''
166             choosing-strategy: 'default'
167
168     wrappers:
169         - build-timeout
170         - ssh-agent-credentials:
171             users:
172                 - '{ssh-credentials}'
173         - openstack:
174             single-use: true
175
176     triggers:
177         - timed: 'H H * * 0'
178         - gerrit-trigger-patch-merged:
179             name: 'coretutorials'
180             branch: '{branch}'
181
182     prebuilders:
183         - jacoco-nojava-workaround
184         - provide-maven-settings:
185             global-settings-file: 'odl-global-settings'
186             settings-file: 'coretutorials-settings'
187
188     maven:
189         maven-name: '{mvn33}'
190         root-pom: 'pom.xml'
191         goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -V -B -Djenkins -Dmerge -Dstream={stream}'
192         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
193         settings: 'coretutorials-settings'
194         settings-type: cfp
195         global-settings: 'odl-global-settings'
196         global-settings-type: cfp
197         post-step-run-condition: UNSTABLE
198
199     postbuilders:
200         - conditional-step:
201             condition-kind: file-exists
202             condition-filename: deploy-site.xml
203             condition-basedir: workspace
204
205             # The strategy here is intentional to run Maven site:deploy twice
206             # once using regular pom.xml to produce a staged-site which is
207             # then used by deploy-site.xml to push to Nexus. This is a
208             # workaround to Maven Site's default linking code which creates
209             # incorrect URLs for sites due to auto-detection assuming your
210             # project is configured in a certain way which ODL is not.
211             steps:
212             - maven-target:
213                 maven-version: '{mvn33}'
214                 pom: pom.xml
215                 goals: 'site:deploy -V -B -Dstream={stream}'
216                 java-opts:
217                     - '-Xmx2g'
218                 settings: 'coretutorials-settings'
219                 settings-type: cfp
220                 global-settings: 'odl-global-settings'
221                 global-settings-type: cfp
222             - maven-target:
223                 maven-version: '{mvn33}'
224                 pom: deploy-site.xml
225                 goals: 'site:deploy -V -B -Dstream={stream}'
226                 java-opts:
227                     - '-Xmx2g'
228                 settings: 'coretutorials-settings'
229                 settings-type: cfp
230                 global-settings: 'odl-global-settings'
231                 global-settings-type: cfp
232
233     reporters:
234         - findbugs
235
236     publishers:
237         - archive-artifacts:
238             artifacts: '**/target/surefire-reports/*-output.txt, '
239         - email-notification:
240             email-prefix: '[coretutorials]'
241         - maven-deploy:
242             id: ''
243             unique-version: true
244             deploy-unstable: false
245         - jacoco-report
246         - archive-build:
247             maven-version: '{mvn33}'
248
249 - job-template:
250     name: 'coretutorials-periodic-{stream}'
251     disabled: false
252
253     # Job template for periodic builders
254     #
255     # The purpose of this job template is to setup a periodic
256     # builder.
257     #
258     # Required Variables:
259     #     stream:    release stream (eg. stable-lithium or beryllium)
260     #     branch:    git branch (eg. stable/lithium or master)
261
262     project-type: maven
263     node: dynamic_verify
264     jdk: '{jdk}'
265
266     logrotate:
267         daysToKeep: '14'
268         numToKeep: '10'
269         artifactDaysToKeep: '{build-artifact-days-to-keep}'
270         artifactNumToKeep: '{build-artifact-num-to-keep}'
271
272     parameters:
273         - project-parameter:
274             project: '{project}'
275
276     scm:
277         - git-scm:
278             credentials-id: '{ssh-credentials}'
279             refspec: ''
280             branch: '{branch}'
281
282     wrappers:
283         - build-timeout
284         - ssh-agent-credentials:
285             users:
286                 - '{ssh-credentials}'
287         - openstack:
288             single-use: true
289
290     triggers:
291         - timed: '@daily'
292
293     prebuilders:
294         - jacoco-nojava-workaround
295         - provide-maven-settings:
296             global-settings-file: 'odl-global-settings'
297             settings-file: 'coretutorials-settings'
298
299     maven:
300         maven-name: '{mvn33}'
301         root-pom: 'pom.xml'
302         goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -V -B -Djenkins'
303         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
304         settings: 'coretutorials-settings'
305         settings-type: cfp
306         global-settings: 'odl-global-settings'
307         global-settings-type: cfp
308
309     reporters:
310         - findbugs
311
312     publishers:
313         - email-notification:
314             email-prefix: '[coretutorials]'
315         - jacoco-report
316         - archive-build:
317             maven-version: '{mvn33}'
318
319 - job-template:
320     name: 'coretutorials-distribution-{stream}'
321
322     # Required variables:
323     #     stream:    release stream (eg. stable-lithium or beryllium)
324     #     branch:    git branch (eg. stable/lithium or master)
325
326     project-type: maven
327     node: dynamic_merge
328     jdk: '{jdk}'
329
330     logrotate:
331         daysToKeep: '{build-days-to-keep}'
332         numToKeep: '{build-num-to-keep}'
333         artifactDaysToKeep: '{build-artifact-days-to-keep}'
334         artifactNumToKeep: '{build-artifact-num-to-keep}'
335
336     parameters:
337         - project-parameter:
338             project: 'integration/distribution'
339
340     scm:
341         - git-scm:
342             credentials-id: '{ssh-credentials}'
343             refspec: ''
344             branch: '{branch}'
345
346     wrappers:
347         - build-timeout
348         - ssh-agent-credentials:
349             users:
350                 - '{ssh-credentials}'
351         - openstack:
352             single-use: true
353
354     triggers:
355         - reverse:
356             jobs: '{project}-merge-{stream}'
357             result: 'success'
358
359     prebuilders:
360         - provide-maven-settings:
361             global-settings-file: 'odl-global-settings'
362             settings-file: 'coretutorials-settings'
363
364     maven:
365         maven-name: '{mvn33}'
366         root-pom: 'pom.xml'
367         goals: 'clean install -V -B -Djenkins -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
368         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'
369         settings: 'integration-distribution-settings'
370         settings-type: cfp
371         global-settings: 'odl-global-settings'
372         global-settings-type: cfp
373
374     publishers:
375         - email-notification:
376             email-prefix: '[{project}]'
377         - maven-deploy:
378             id: ''
379             unique-version: true
380             deploy-unstable: false
381         - archive-build:
382             maven-version: '{mvn33}'
383
384 # Template: integration-patch-distribution-{stream}
385 # Goal: Build a patch and make sure the distribution can deploy with this change
386 # Operation: This job template builds a patch, creates a distribution containing
387 #            the patch, and triggers the distribution deploy test
388
389 - job-template:
390     name: 'coretutorials-distribution-check-{stream}'
391     disabled: '{obj:disable_distribution_check}'
392
393     project-type: maven
394     node: dynamic_verify
395     concurrent: true
396     jdk: '{jdk}'
397
398     logrotate:
399         daysToKeep: '{build-days-to-keep}'
400         numToKeep: '{build-num-to-keep}'
401         artifactDaysToKeep: '{build-artifact-days-to-keep}'
402         artifactNumToKeep: '{build-artifact-num-to-keep}'
403
404     parameters:
405         - gerrit-parameters:
406             project: '{project}'
407             branch: '{branch}'
408             refspec: 'refs/heads/{branch}'
409         - project-parameter:
410             project: '{project}'
411         - integration-distribution-git-url
412
413     scm:
414         - integration-gerrit-scm:
415             credentials-id: '{ssh-credentials}'
416             basedir: '$GERRIT_PROJECT'
417             refspec: '$GERRIT_REFSPEC'
418             branch: '{branch}'
419         - integration-distribution-scm:
420             credentials-id: '{ssh-credentials}'
421             branch: '{branch}'
422
423     wrappers:
424         - build-timeout
425         - ssh-agent-credentials:
426             users:
427                 - '{ssh-credentials}'
428         - openstack:
429             single-use: true
430
431     triggers:
432         - gerrit:
433             server-name: 'OpenDaylight'
434             trigger-on:
435                 - patchset-created-event:
436                     exclude-drafts: 'true'
437                     exclude-trivial-rebase: 'false'
438                     exclude-no-code-change: 'true'
439                 - draft-published-event
440                 - comment-added-contains-event:
441                     comment-contains-value: 'test-distribution'
442                 - comment-added-contains-event:
443                     comment-contains-value: 'reverify'
444                 - comment-added-contains-event:
445                     comment-contains-value: 'recheck'
446             projects:
447               - project-compare-type: 'ANT'
448                 project-pattern: '{name}'
449                 branches:
450                   - branch-compare-type: 'ANT'
451                     branch-pattern: '**/{branch}'
452             skip-vote:
453                 successful: false
454                 failed: false
455                 unstable: false
456                 notbuilt: false
457
458     prebuilders:
459         - maven-target:
460             maven-version: '{mvn33}'
461             pom: '$GERRIT_PROJECT/pom.xml'
462             goals: 'clean install -V -B -Djenkins -DskipTests -Dcheckstyle.skip=true -Dmaven.javadoc.skip=true -Dmaven.site.skip=true -DgenerateReports=false -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r -Dstream={stream}'
463             java-opts:
464                 - '-Xmx4096m -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
465             settings: 'coretutorials-settings'
466             settings-type: cfp
467             global-settings: 'odl-global-settings'
468             global-settings-type: cfp
469
470     maven:
471         maven-name: '{mvn33}'
472         root-pom: 'distribution/pom.xml'
473         goals: 'clean install -V -B -Djenkins -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
474         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'
475         settings: 'coretutorials-settings'
476         settings-type: cfp
477         global-settings: 'odl-global-settings'
478         global-settings-type: cfp
479         ignore-upstream-changes: true
480         post-step-run-condition: 'SUCCESS'
481
482     postbuilders:
483         - integration-distribution-check
484
485     publishers:
486         - archive:
487             artifacts: 'karaf.log'
488         - archive:
489             artifacts: 'karaf_console.log'
490         - email-notification:
491             email-prefix: '[coretutorials]'
492         - archive-build:
493             maven-version: '{mvn33}'
494
495 - job-template:
496     name: 'coretutorials-integration-{stream}'
497     disabled: false
498
499     # Job template for ODL integration verify jobs
500     #
501     # This is similar to a normal verify job, but it runs
502     # when a project that's a dependency of your project
503     # is successfully built.
504     #
505     # Required Variables:
506     #     stream:    release stream (eg. stable-lithium or beryllium)
507     #     branch:    git branch (eg. stable/lithium or master)
508
509     project-type: maven
510     node: dynamic_merge
511     jdk: '{jdk}'
512
513     logrotate:
514         daysToKeep: '{build-days-to-keep}'
515         numToKeep: '{build-num-to-keep}'
516         artifactDaysToKeep: '{build-artifact-days-to-keep}'
517         artifactNumToKeep: '{build-artifact-num-to-keep}'
518
519     parameters:
520         - project-parameter:
521             project: '{project}'
522
523     scm:
524         - git-scm:
525             credentials-id: '{ssh-credentials}'
526             refspec: ''
527             branch: '{branch}'
528
529     wrappers:
530         - build-timeout
531         - ssh-agent-credentials:
532             users:
533                 - '{ssh-credentials}'
534         - openstack:
535             single-use: true
536
537     triggers:
538         - reverse:
539             jobs: 'odlparent-merge-{stream},yangtools-merge-{stream},controller-merge-{stream}'
540             result: 'success'
541
542     prebuilders:
543         - jacoco-nojava-workaround
544         - provide-maven-settings:
545             global-settings-file: 'odl-global-settings'
546             settings-file: 'coretutorials-settings'
547
548     maven:
549         maven-name: '{mvn33}'
550         root-pom: 'pom.xml'
551         goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -V -B -Djenkins'
552         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
553         settings: 'coretutorials-settings'
554         settings-type: cfp
555         global-settings: 'odl-global-settings'
556         global-settings-type: cfp
557
558     reporters:
559         - findbugs
560
561     publishers:
562         - email-notification:
563             email-prefix: '[coretutorials] [odlparent] [yangtools] [controller]'
564         - jacoco-report
565         - archive-build:
566             maven-version: '{mvn33}'
567
568 - job-template:
569     name: 'coretutorials-sonar'
570     disabled: false
571
572     project-type: maven
573     node: dynamic_verify
574     jdk: 'openjdk8'
575
576     logrotate:
577         daysToKeep: '7'
578         numToKeep: '10'
579         artifactDaysToKeep: '1'
580         artifactNumToKeep: '1'
581
582     parameters:
583         - project-parameter:
584             project: '{project}'
585
586     scm:
587         - git-scm:
588             credentials-id: '{ssh-credentials}'
589             refspec: ''
590             branch: 'master'
591
592     wrappers:
593         - build-timeout
594         - ssh-agent-credentials:
595             users:
596                 - '{ssh-credentials}'
597         - openstack:
598             single-use: true
599
600     triggers:
601         - timed: 'H H * * 6'
602         - gerrit-trigger-patch-sonar:
603             name: 'coretutorials'
604
605     prebuilders:
606         - jacoco-nojava-workaround
607         - provide-maven-settings:
608             global-settings-file: 'odl-global-settings'
609             settings-file: 'coretutorials-settings'
610
611     maven:
612         maven-name: '{mvn33}'
613         root-pom: 'pom.xml'
614         goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -V -B -Djenkins -Dsonar'
615         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
616         settings: 'coretutorials-settings'
617         settings-type: cfp
618         global-settings: 'odl-global-settings'
619         global-settings-type: cfp
620
621     reporters:
622         - findbugs
623
624     publishers:
625         - sonar:
626             language: 'java'
627             maven-opts: '-Xmx6144m -XX:MaxPermSize=1024m'
628         - email-notification:
629             email-prefix: '[coretutorials]'
630         - jacoco-report
631         - archive-build:
632             maven-version: '{mvn33}'
633
634 - job-template:
635     name: 'coretutorials-clm-{stream}'
636     disabled: false
637
638     project-type: maven
639     node: dynamic_verify
640     jdk: '{jdk}'
641
642     logrotate:
643         daysToKeep: '{build-days-to-keep}'
644         numToKeep: '{build-num-to-keep}'
645         artifactDaysToKeep: '{build-artifact-days-to-keep}'
646         artifactNumToKeep: '{build-artifact-num-to-keep}'
647
648     parameters:
649         - project-parameter:
650             project: '{project}'
651
652     scm:
653         - git-scm:
654             credentials-id: '{ssh-credentials}'
655             refspec: ''
656             branch: '{branch}'
657
658     wrappers:
659         - build-timeout
660         - ssh-agent-credentials:
661             users:
662                 - '{ssh-credentials}'
663         - openstack:
664             single-use: true
665
666     triggers:
667         - timed: 'H H * * 6'
668
669     prebuilders:
670         - provide-maven-settings:
671             global-settings-file: 'odl-global-settings'
672             settings-file: 'coretutorials-settings'
673
674     maven:
675         maven-name: '{mvn33}'
676         root-pom: 'pom.xml'
677         goals: 'clean install com.sonatype.clm:clm-maven-plugin:index -V -B -Djenkins -DskipTests=true -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
678         maven-opts: '-Xmx4096m -XX:MaxPermSize=512m'
679         settings: 'coretutorials-settings'
680         settings-type: cfp
681         global-settings: 'odl-global-settings'
682         global-settings-type: cfp
683
684     postbuilders:
685         - shell: 'find . -regex ".*karaf/target" | xargs rm -rf'
686         - check-clm:
687             application-name: coretutorials
688
689     publishers:
690         - email-notification:
691             email-prefix: '[coretutorials]'
692         - archive-build:
693             maven-version: '{mvn33}'
694
695 - job-template:
696     name: 'coretutorials-validate-autorelease-{stream}'
697     disabled: '{obj:disable_autorelease}'
698
699     project-type: maven
700     node: dynamic_verify
701     concurrent: true
702     jdk: '{jdk}'
703
704     logrotate:
705         daysToKeep: '{build-days-to-keep}'
706         numToKeep: '{build-num-to-keep}'
707         artifactDaysToKeep: '{build-artifact-days-to-keep}'
708         artifactNumToKeep: '{build-artifact-num-to-keep}'
709
710     parameters:
711         - project-parameter:
712             project: '{project}'
713         - gerrit-parameters:
714             project: '{project}'
715             branch: '{branch}'
716             refspec: 'refs/heads/{branch}'
717         - autorelease-release-tag:
718             release-tag: 'validate'
719         - autorelease-release-branch:
720             release-branch: '{branch}'
721         - string:
722             name: CLONE_URL
723             default: 'ssh://jenkins-$SILO@git.opendaylight.org:29418/releng/autorelease'
724             description: "Autorelease clone URL"
725
726     scm:
727         - git:
728             url: '$CLONE_URL'
729             credentials-id: '{ssh-credentials}'
730             refspec: ''
731             branches:
732                 - 'origin/{branch}'
733             skip-tag: true
734             submodule:
735                 recursive: true
736                 timeout: 60
737
738     wrappers:
739         - autorelease-build-timeout
740         - ssh-agent-credentials:
741             users:
742                 - '{ssh-credentials}'
743         - openstack:
744             single-use: true
745
746     triggers:
747         - gerrit:
748             server-name: 'OpenDaylight'
749             trigger-on:
750                 - patchset-created-event:
751                     exclude-drafts: 'true'
752                     exclude-trivial-rebase: 'false'
753                     exclude-no-code-change: 'true'
754                 - draft-published-event
755                 - comment-added-contains-event:
756                     comment-contains-value: 'recheck'
757                 - comment-added-contains-event:
758                     comment-contains-value: 'reverify'
759                 - comment-added-contains-event:
760                     comment-contains-value: 'revalidate'
761             projects:
762               - project-compare-type: 'ANT'
763                 project-pattern: 'coretutorials'
764                 branches:
765                   - branch-compare-type: 'ANT'
766                     branch-pattern: '**/{branch}'
767                 file-paths:
768                     - compare-type: ANT
769                       pattern: '**/*.xml'
770
771     prebuilders:
772         - jacoco-nojava-workaround
773         - autorelease-checkout-gerrit-patch
774         - autorelease-generate-release-patches
775         - maven-target:
776             maven-version: '{mvn33}'
777             pom: validate-pom.xml
778             goals: 'clean install -V -B -T1.5C -Djenkins -DskipTests -Dcheckstyle.skip=true -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
779             java-opts:
780             - '-Xmx8g'
781             settings: 'autorelease-settings'
782             settings-type: cfp
783             global-settings: 'odl-global-settings'
784             global-settings-type: cfp
785
786     maven:
787         maven-name: '{mvn33}'
788         root-pom: 'pom.xml'
789         goals: 'clean validate -V -B -Djenkins -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
790         maven-opts: '-Xmx8g -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
791         settings: 'autorelease-settings'
792         settings-type: cfp
793         global-settings: 'odl-global-settings'
794         global-settings-type: cfp
795         automatic-archiving: false
796         post-step-run-condition: UNSTABLE
797
798     postbuilders:
799         - autorelease-sys-stats
800
801     publishers:
802         - email-notification:
803             email-prefix: '[autorelease] [coretutorials]'
804         - archive-build:
805             maven-version: '{mvn33}'
806