pom.xml 26.2 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
K
kohsuke 已提交
2 3 4
<!--
The MIT License

5
Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Stephen Connolly, Tom Huybrechts, Yahoo! Inc.
K
kohsuke 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
25
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
K
kohsuke 已提交
26
  <modelVersion>4.0.0</modelVersion>
27

K
kohsuke 已提交
28
  <parent>
29
    <groupId>org.jenkins-ci.main</groupId>
K
kohsuke 已提交
30
    <artifactId>pom</artifactId>
31
    <version>2.85-SNAPSHOT</version>
K
kohsuke 已提交
32
  </parent>
33

K
Kohsuke Kawaguchi 已提交
34
  <artifactId>jenkins-war</artifactId>
K
kohsuke 已提交
35
  <packaging>war</packaging>
36

37
  <name>Jenkins war</name>
38
  <description>Creates a war file. Also includes additional static web resources, such as images, CSS, JavaScript, and some HTML files.</description>
39 40 41

  <properties>
    <JENKINS_HOME>${basedir}/work</JENKINS_HOME>
42
    <contextPath>/jenkins</contextPath><!-- context path during test -->
43
    <port>8080</port><!-- HTTP listener port -->
44
    <node.version>6.10.2</node.version>
45
    <yarn.version>0.24.5</yarn.version>
46 47 48
  </properties>

  <dependencies>
49 50 51
    <dependency>
      <groupId>org.jenkins-ci</groupId>
      <artifactId>executable-war</artifactId>
O
olivier lamy 已提交
52
      <version>1.36</version>
53 54
      <scope>provided</scope>
    </dependency>
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    <dependency>
      <groupId>org.jenkins-ci.main</groupId>
      <artifactId>jenkins-core</artifactId>
      <version>${project.version}</version>
      <exclusions>
        <!--
          jars that are not needed in war. most of the exclusions should happen in the core, to make IDEs happy, not here.
        -->
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
71 72 73 74 75
        <!-- Stapler 1.195 fails to declare this as optional, and the 1.1 version lacks a license: -->
        <exclusion>
          <artifactId>metainf-services</artifactId>
          <groupId>org.kohsuke.metainf-services</groupId>
        </exclusion>
76 77 78 79 80
      </exclusions>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
81
      <!-- specified in the parent -->
82
    </dependency>
83 84 85 86 87 88 89 90 91
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>cli</artifactId>
      <classifier>jar-with-dependencies</classifier>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <!--
S
Stephen Connolly 已提交
92
        not actually used by test but used by dependency plugin to include it inside the war.
93 94 95
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
O
olivier lamy 已提交
96
      <version>4.1</version>
97 98 99 100 101
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
102
      <version>2.1</version>
103
    </dependency>
104
    <dependency>
105 106
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
J
Jesse Glick 已提交
107
      <version>1.4</version>
108 109 110 111
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
112
      <version>1.6</version>
113
    </dependency>
K
Kohsuke Kawaguchi 已提交
114 115 116
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
117
      <version>1.9.1</version>
K
Kohsuke Kawaguchi 已提交
118
    </dependency>
119 120 121
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>launchd-slave-installer</artifactId>
122
      <version>1.2</version>
K
Kohsuke Kawaguchi 已提交
123 124 125 126
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>upstart-slave-installer</artifactId>
127
      <version>1.1</version>
128
    </dependency>
129 130 131
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>systemd-slave-installer</artifactId>
132
      <version>1.1</version>
133
    </dependency>
134 135 136
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
137
      <version>2.0</version>
138
    </dependency>
139 140 141
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>jquery-detached</artifactId>
142
      <version>1.2.1</version>
143 144 145 146 147
      <classifier>core-assets</classifier>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>bootstrap</artifactId>
148
      <version>1.3.2</version>
149 150 151 152 153
      <classifier>core-assets</classifier>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>handlebars</artifactId>
154
      <version>1.1.1</version>
155 156
      <classifier>core-assets</classifier>
    </dependency>
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
    <dependency>
      <!--
        We bundle slf4j binding since we got some components (sshd for example)
        that uses slf4j.

        The problem with not shipping any binding in the war is that if the
        servlet container does use slf4j in itself, then we got a classloader
        constraint violation (see JENKINS-12334) as we try to load StaticLoggerBinder
        which resides in the binding jar (this jar would be from container implementation,
        which relies on slf4j api in the container, when we have our own slf4j API jar
        statically depending on the binding jar.)

        We also get tickets like JENKINS-12650 for not reporting logs at all
        (although this is a non-fatal problem.)

        The downside of adding a jar is that we can potentially get "multiple binding jar"
        warning like http://www.slf4j.org/codes.html, but that's at least non-fatal.
      -->
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-jdk14</artifactId>
    </dependency>

179
    <!-- offline profiler API when we need it -->
180
    <!--dependency
181 182 183 184 185 186 187 188
      <groupId>com.yourkit.api</groupId>
      <artifactId>yjp</artifactId>
      <version>dontcare</version>
      <scope>system</scope>
      <systemPath>/usr/local/yjp/lib/yjp.jar</systemPath>
    </dependency-->
  </dependencies>

K
kohsuke 已提交
189
  <build>
K
Kohsuke Kawaguchi 已提交
190
    <finalName>jenkins</finalName>
K
kohsuke 已提交
191 192 193
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
194
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
195
        <configuration>
J
jieryn 已提交
196
          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
K
kohsuke 已提交
197 198
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
199
            <manifest>
K
kohsuke 已提交
200 201
              <mainClass>Main</mainClass>
            </manifest>
202 203
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
204
              <Hudson-Version>1.395</Hudson-Version>
205
              <Jenkins-Version>${project.version}</Jenkins-Version>
206
            </manifestEntries>
K
kohsuke 已提交
207
          </archive>
208
          <!--outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping-->
K
kohsuke 已提交
209 210
        </configuration>
      </plugin>
211 212
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
213
        <!-- version specified in grandparent pom -->
214 215
        <executions>
          <execution>
216
            <id>list-dependencies</id>
217 218 219 220 221
            <phase>generate-resources</phase>
            <goals>
              <goal>list</goal>
            </goals>
            <configuration>
S
Stephen Connolly 已提交
222
              <outputFile>${project.build.outputDirectory}/dependencies.txt</outputFile>
223 224
            </configuration>
          </execution>
225 226 227 228 229 230 231 232 233 234 235 236
          <execution>
            <!-- put executable war header -->
            <id>executable-war-header</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
              <includeGroupIds>org.jenkins-ci</includeGroupIds>
              <includeArtifactIds>executable-war</includeArtifactIds>
              <includeScope>provided</includeScope>
              <includes>**/*.class</includes>
237
              <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
            </configuration>
          </execution>
          <execution>
            <id>resgen</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <!-- dependencies that goes to unusual locations -->
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>cli</artifactId>
                  <classifier>jar-with-dependencies</classifier>
253
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
254 255 256 257 258
                  <destFileName>jenkins-cli.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci</groupId>
                  <artifactId>winstone</artifactId>
259
                  <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
260 261
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
              </artifactItems>
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/plugins</outputDirectory>
              <stripVersion>true</stripVersion>
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
            </configuration>
          </execution>
          <execution>
            <id>detached-plugins</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <!--
                    Detached plugins and their dependencies - detached plugins that used to be bundled plugins
                -->
S
Stephen Connolly 已提交
281 282 283
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>maven-plugin</artifactId>
284
                  <version>${maven-plugin.version}</version>
S
Stephen Connolly 已提交
285 286 287 288 289
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-slaves</artifactId>
290
                  <version>1.15</version>
K
Kohsuke Kawaguchi 已提交
291 292 293 294 295
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>credentials</artifactId>
296
                  <version>2.1.2</version>
K
Kohsuke Kawaguchi 已提交
297 298 299 300 301
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-credentials</artifactId>
302
                  <version>1.10</version>
S
Stephen Connolly 已提交
303 304 305 306 307
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>subversion</artifactId>
J
Jesse Glick 已提交
308
                  <version>1.54</version>
S
Stephen Connolly 已提交
309 310 311
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
K
oops  
Kohsuke Kawaguchi 已提交
312
                  <groupId>org.jenkins-ci.plugins</groupId>
S
Stephen Connolly 已提交
313
                  <artifactId>cvs</artifactId>
J
Jesse Glick 已提交
314
                  <version>2.11</version>
S
Stephen Connolly 已提交
315 316
                  <type>hpi</type>
                </artifactItem>
317 318 319
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ant</artifactId>
J
Jesse Glick 已提交
320
                  <version>1.2</version>
321 322
                  <type>hpi</type>
                </artifactItem>
323 324 325
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>javadoc</artifactId>
J
Jesse Glick 已提交
326
                  <version>1.1</version>
327 328
                  <type>hpi</type>
                </artifactItem>
329 330 331
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>translation</artifactId>
332
                  <version>1.10</version>
333 334
                  <type>hpi</type>
                </artifactItem>
335 336 337
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>external-monitor-job</artifactId>
338
                  <version>1.4</version>
339 340
                  <type>hpi</type>
                </artifactItem>
341 342 343
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ldap</artifactId>
344
                  <version>1.11</version>
345 346 347 348 349
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>pam-auth</artifactId>
J
Jesse Glick 已提交
350
                  <version>1.1</version>
351 352
                  <type>hpi</type>
                </artifactItem>
353 354 355 356 357 358
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>display-url-api</artifactId>
                  <version>2.0</version>
                  <type>hpi</type>
                </artifactItem>
O
Oliver Gondža 已提交
359 360 361
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>mailer</artifactId>
362
                  <version>1.20</version>
O
Oliver Gondža 已提交
363 364
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
365 366 367
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-auth</artifactId>
J
Jesse Glick 已提交
368
                  <version>1.1</version>
J
Jesse Glick 已提交
369 370
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
371 372 373 374 375 376
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>windows-slaves</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
377 378 379
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>antisamy-markup-formatter</artifactId>
J
Jesse Glick 已提交
380
                  <version>1.1</version>
381 382
                  <type>hpi</type>
                </artifactItem>
383 384 385
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-project</artifactId>
386
                  <version>${matrix-project.version}</version>
387 388 389 390 391
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>script-security</artifactId>
392
                  <version>1.18.1</version>
393 394
                  <type>hpi</type>
                </artifactItem>
395 396 397
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>junit</artifactId>
398
                  <version>1.6</version>
399 400
                  <type>hpi</type>
                </artifactItem>
401 402 403
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>bouncycastle-api</artifactId>
404
                  <version>2.16.0</version>
405 406
                  <type>hpi</type>
                </artifactItem>
S
Stephen Connolly 已提交
407
              </artifactItems>
408
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/detached-plugins</outputDirectory>
S
Stephen Connolly 已提交
409
              <stripVersion>true</stripVersion>
410 411 412
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
413 414
            </configuration>
          </execution>
415 416
        </executions>
      </plugin>
417 418 419
      <plugin><!-- generate licenses.xml -->
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
420
        <!-- version specified in grandparent pom -->
421
        <configuration>
S
Stephen Connolly 已提交
422
          <generateLicenseXml>${project.build.outputDirectory}/META-INF/licenses.xml</generateLicenseXml>
423 424
          <generateLicenseHtml>${project.build.outputDirectory}/META-INF/licenses.html</generateLicenseHtml>
          <attach>true</attach>
425 426 427 428 429 430 431 432 433 434 435
          <inlineScript>
            filter {
                // add Winstone since we are bundling it.
                def d = project.dependencies.find { it.artifactId=="winstone" };
                def a = mojo.artifactFactory.createProjectArtifact(d.groupId,d.artifactId,d.version);
                def p = mojo.projectBuilder.buildFromRepository(a, project.getRemoteArtifactRepositories(), mojo.localRepository)
                models.put(a,p);
            }
          </inlineScript>
        </configuration>
      </plugin>
K
kohsuke 已提交
436
      <plugin>
437
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
438 439
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
440
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
441
        <configuration>
442 443 444 445
          <!--
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
          -->
          <reload>manual</reload>
446
          <connectors>
447
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
448 449 450
                <port>${port}</port>
            </connector>
          </connectors>
451
          <additionalClassesDirectories>
452
            <!-- load resources straight from source -->
453
            <additionalClassesDirectory>../core/src/main/resources</additionalClassesDirectory>
454

455 456 457 458 459 460
            <!--
              read directly from core module's output directory,
              so that changes are picked up right away without running mvn.
            -->
            <additionalClassesDirectory>../core/target/classes</additionalClassesDirectory>
          </additionalClassesDirectories>
461 462
          <loginServices>
            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
463
              <name>default</name>
464
              <config>${basedir}/src/realm.properties</config>
465 466
            </loginService>
          </loginServices>
K
kohsuke 已提交
467 468
          <systemProperties>
            <systemProperty>
K
Kohsuke Kawaguchi 已提交
469 470
              <name>JENKINS_HOME</name>
              <value>${JENKINS_HOME}</value>
K
kohsuke 已提交
471 472 473 474
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
475 476
              <value>true</value>
            </systemProperty>
477 478 479 480 481
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
482 483 484 485 486
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
487 488 489
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
490 491 492
              <value>
                  ../core/src/main/resources;
              </value>
K
kohsuke 已提交
493
            </systemProperty>
494
            <systemProperty>
495
              <!-- enable the plugins in main by default -->
496
              <name>hudson.bundled.plugins</name>
497
              <value><!-- run "mvn install" once will generate the.hpl -->
498
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/*.hpi
W
wjprakash 已提交
499
              </value>
500
            </systemProperty>
501 502 503 504 505
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
506 507 508 509
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
510 511 512 513 514
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
515
          </systemProperties>
516
          <webApp>
517
            <contextPath>${contextPath}</contextPath>
518
            <configurationDiscovered>false</configurationDiscovered>
519
            <webInfIncludeJarPattern>NONE</webInfIncludeJarPattern><!-- see https://wiki.eclipse.org/Jetty/Howto/Avoid_slow_deployment -->
520
          </webApp>
K
kohsuke 已提交
521 522
        </configuration>
      </plugin>
K
kohsuke 已提交
523 524
    </plugins>
  </build>
K
kohsuke 已提交
525

526
  <profiles>
527 528 529 530 531 532
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
533
            <artifactId>maven-jarsigner-plugin</artifactId>
534 535 536
            <executions>
              <execution>
                <id>signWar</id>
537
                <phase>pre-integration-test</phase>
538
                <goals>
S
Stephen Connolly 已提交
539
                  <goal>sign</goal>
540 541
                </goals>
                <configuration>
542
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
543 544 545 546
                  <arguments>
                    <argument>-tsa</argument>
                    <argument>http://timestamp.comodoca.com/rfc3161</argument>
                  </arguments>
547 548 549 550 551 552 553
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
554 555 556 557 558 559 560 561


    <!--
        The following profiles are required to integration the node/gulp build into this maven build.
        Hopefully we can push these profiles down into a parent pom.
        See https://github.com/tfennelly/jenkins-js-builder#maven-integration
    -->

562
    <profile>
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
      <id>gulp-execution</id>
      <activation>
        <file>
          <exists>gulpfile.js</exists>
        </file>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
                      <version>3.1.0</version>
                    </requireMavenVersion>
585 586 587 588
                    <requireJavaVersion>
                      <!-- let's encrypt certs used for https://updates.jenkins.io -->
                      <version>[1.8.0-101,]</version>
                    </requireJavaVersion>
589 590 591 592 593 594 595 596
                  </rules>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>com.github.eirslett</groupId>
            <artifactId>frontend-maven-plugin</artifactId>
597
            <version>1.4</version>
598
            <executions>
599

600 601
              <execution>
                <phase>initialize</phase>
602
                <id>install node and yarn</id>
603
                <goals>
604
                  <goal>install-node-and-yarn</goal>
605 606 607
                </goals>
                <configuration>
                  <nodeVersion>v${node.version}</nodeVersion>
608
                  <yarnVersion>v${yarn.version}</yarnVersion>
J
Jesse Glick 已提交
609
                  <nodeDownloadRoot>https://repo.jenkins-ci.org/nodejs-dist/</nodeDownloadRoot>
610
                  <!-- tried to create a mirror for yarnDownloadRoot but it did not work -->
611 612
                </configuration>
              </execution>
613

614 615
              <execution>
                <phase>initialize</phase>
616
                <id>yarn install</id>
617
                <goals>
618
                  <goal>yarn</goal>
619 620
                </goals>
                <configuration>
621 622 623
                  <!-- ensure only one concurrent 'yarn install' -->
                  <!-- when yarn cache is empty, multiple yarns performing network fetches frequently results in opaque errors -->
                  <arguments>--mutex network</arguments>
624 625
                </configuration>
              </execution>
626

627 628 629 630 631 632 633
              <execution>
                <phase>generate-sources</phase>
                <id>gulp bundle</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
634
                  <arguments>jshint bundle</arguments>
635 636
                </configuration>
              </execution>
637

638 639 640 641 642 643 644 645 646 647 648
              <execution>
                <phase>test</phase>
                <id>gulp test</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
                  <arguments>bundle test</arguments>
                  <skip>${skipTests}</skip>
                </configuration>
              </execution>
649

650 651 652 653
            </executions>
          </plugin>
        </plugins>
      </build>
654
    </profile>
655 656

    <profile>
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
      <id>clean-node</id>
      <activation>
        <file>
          <exists>package.json</exists>
        </file>
        <property>
          <name>cleanNode</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-clean-plugin</artifactId>
            <configuration>
              <filesets>
                <fileset>
                  <directory>node</directory>
                  <followSymlinks>false</followSymlinks>
                </fileset>
                <fileset>
                  <directory>node_modules</directory>
                  <followSymlinks>false</followSymlinks>
                </fileset>
              </filesets>
            </configuration>
          </plugin>
        </plugins>
      </build>
686
    </profile>
687
  </profiles>
688
</project>