pom.xml 27.4 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>
30
    <artifactId>jenkins-parent</artifactId>
31
    <version>${revision}${changelist}</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>
52
      <version>1.45</version>
53 54
      <scope>provided</scope>
    </dependency>
55 56 57 58 59 60 61 62 63
    <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>
64 65
          <groupId>javax.servlet.jsp</groupId>
          <artifactId>javax.servlet.jsp-api</artifactId>
66
        </exclusion>
67 68 69 70 71
        <!-- 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>
72 73 74 75 76
      </exclusions>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
77
      <!-- specified in the parent -->
78
    </dependency>
79 80 81 82 83 84 85 86 87
    <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 已提交
88
        not actually used by test but used by dependency plugin to include it inside the war.
89 90 91
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
92
      <version>5.3</version>
93 94 95 96 97
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
98
      <version>2.2</version>
99
    </dependency>
100
    <dependency>
101 102
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
103
      <version>1.7</version>
104 105 106 107
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
108
      <version>1.6</version>
109
    </dependency>
K
Kohsuke Kawaguchi 已提交
110 111 112
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
113
      <version>1.11</version>
K
Kohsuke Kawaguchi 已提交
114
    </dependency>
115 116 117
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>launchd-slave-installer</artifactId>
118
      <version>1.2</version>
K
Kohsuke Kawaguchi 已提交
119 120 121 122
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>upstart-slave-installer</artifactId>
123
      <version>1.1</version>
124
    </dependency>
125 126 127
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>systemd-slave-installer</artifactId>
128
      <version>1.1</version>
129
    </dependency>
130 131 132
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
133
      <version>2.6</version>
134
    </dependency>
135 136 137
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>jquery-detached</artifactId>
138
      <version>1.2.1</version>
139 140 141 142 143
      <classifier>core-assets</classifier>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>bootstrap</artifactId>
144
      <version>1.3.2</version>
145
      <classifier>core-assets</classifier>
146 147 148 149 150 151
      <exclusions>
        <exclusion>
          <groupId>org.jenkins-ci.ui</groupId>
          <artifactId>jquery-detached</artifactId>
        </exclusion>
      </exclusions>
152 153 154 155
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.ui</groupId>
      <artifactId>handlebars</artifactId>
156
      <version>1.1.1</version>
157 158
      <classifier>core-assets</classifier>
    </dependency>
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    <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>

181
    <!-- offline profiler API when we need it -->
182
    <!--dependency
183 184 185 186 187 188 189 190
      <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 已提交
191
  <build>
K
Kohsuke Kawaguchi 已提交
192
    <finalName>jenkins</finalName>
K
kohsuke 已提交
193 194 195
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
196
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
197
        <configuration>
J
jieryn 已提交
198
          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
K
kohsuke 已提交
199 200
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
201
            <manifest>
K
kohsuke 已提交
202 203
              <mainClass>Main</mainClass>
            </manifest>
204 205
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
206
              <Hudson-Version>1.395</Hudson-Version>
207
              <Jenkins-Version>${project.version}</Jenkins-Version>
208 209
              <Remoting-Embedded-Version>${remoting.version}</Remoting-Embedded-Version>
              <Remoting-Minimum-Supported-Version>${remoting.minimum.supported.version}</Remoting-Minimum-Supported-Version>
210
            </manifestEntries>
K
kohsuke 已提交
211
          </archive>
212
          <!--outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping-->
K
kohsuke 已提交
213 214
        </configuration>
      </plugin>
215 216
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
217
        <!-- version specified in grandparent pom -->
218 219
        <executions>
          <execution>
220
            <id>list-dependencies</id>
221 222 223 224 225
            <phase>generate-resources</phase>
            <goals>
              <goal>list</goal>
            </goals>
            <configuration>
S
Stephen Connolly 已提交
226
              <outputFile>${project.build.outputDirectory}/dependencies.txt</outputFile>
227 228
            </configuration>
          </execution>
229 230 231 232 233 234 235 236 237 238 239 240
          <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>
241
              <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
            </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>
257
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
258 259 260 261 262
                  <destFileName>jenkins-cli.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci</groupId>
                  <artifactId>winstone</artifactId>
263
                  <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
264 265
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
              </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 已提交
285 286 287
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>maven-plugin</artifactId>
288
                  <version>${maven-plugin.version}</version>
S
Stephen Connolly 已提交
289 290 291 292 293
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-slaves</artifactId>
294
                  <version>1.15</version>
K
Kohsuke Kawaguchi 已提交
295 296 297 298 299
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>credentials</artifactId>
300
                  <version>2.1.2</version>
K
Kohsuke Kawaguchi 已提交
301 302 303 304 305
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-credentials</artifactId>
306
                  <version>1.10</version>
S
Stephen Connolly 已提交
307 308 309 310 311
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>subversion</artifactId>
J
Jesse Glick 已提交
312
                  <version>1.54</version>
S
Stephen Connolly 已提交
313 314 315
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
K
oops  
Kohsuke Kawaguchi 已提交
316
                  <groupId>org.jenkins-ci.plugins</groupId>
S
Stephen Connolly 已提交
317
                  <artifactId>cvs</artifactId>
J
Jesse Glick 已提交
318
                  <version>2.11</version>
S
Stephen Connolly 已提交
319 320
                  <type>hpi</type>
                </artifactItem>
321 322 323
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ant</artifactId>
J
Jesse Glick 已提交
324
                  <version>1.2</version>
325 326
                  <type>hpi</type>
                </artifactItem>
327 328 329
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>javadoc</artifactId>
J
Jesse Glick 已提交
330
                  <version>1.1</version>
331 332
                  <type>hpi</type>
                </artifactItem>
333 334 335
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>translation</artifactId>
336
                  <version>1.10</version>
337 338
                  <type>hpi</type>
                </artifactItem>
339 340 341
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>external-monitor-job</artifactId>
342
                  <version>1.4</version>
343 344
                  <type>hpi</type>
                </artifactItem>
345 346 347
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ldap</artifactId>
348
                  <version>1.11</version>
349 350 351 352 353
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>pam-auth</artifactId>
J
Jesse Glick 已提交
354
                  <version>1.1</version>
355 356
                  <type>hpi</type>
                </artifactItem>
357 358 359 360 361 362
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>display-url-api</artifactId>
                  <version>2.0</version>
                  <type>hpi</type>
                </artifactItem>
O
Oliver Gondža 已提交
363 364 365
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>mailer</artifactId>
366
                  <version>1.20</version>
O
Oliver Gondža 已提交
367 368
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
369 370 371
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-auth</artifactId>
J
Jesse Glick 已提交
372
                  <version>1.1</version>
J
Jesse Glick 已提交
373 374
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
375 376 377 378 379 380
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>windows-slaves</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
381 382 383
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>antisamy-markup-formatter</artifactId>
J
Jesse Glick 已提交
384
                  <version>1.1</version>
385 386
                  <type>hpi</type>
                </artifactItem>
387 388 389
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-project</artifactId>
390
                  <version>${matrix-project.version}</version>
391 392 393 394 395
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>script-security</artifactId>
396
                  <version>1.56</version>
397 398
                  <type>hpi</type>
                </artifactItem>
399 400 401
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>junit</artifactId>
402
                  <version>1.6</version>
403 404
                  <type>hpi</type>
                </artifactItem>
405 406 407
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>bouncycastle-api</artifactId>
408
                  <version>2.16.0</version>
409 410
                  <type>hpi</type>
                </artifactItem>
411 412 413
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>command-launcher</artifactId>
414
                  <version>1.2</version>
415 416
                  <type>hpi</type>
                </artifactItem>
417 418 419 420 421 422
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>jdk-tool</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
423 424 425 426 427 428
                <artifactItem>
                  <groupId>io.jenkins.plugins</groupId>
                  <artifactId>jaxb</artifactId>
                  <version>2.3.0</version>
                  <type>hpi</type>
                </artifactItem>
429 430 431
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>trilead-api</artifactId>
432
                  <version>1.0.4</version>
433 434
                  <type>hpi</type>
                </artifactItem>
S
Stephen Connolly 已提交
435
              </artifactItems>
436
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/detached-plugins</outputDirectory>
S
Stephen Connolly 已提交
437
              <stripVersion>true</stripVersion>
438 439 440
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
441 442
            </configuration>
          </execution>
443 444
        </executions>
      </plugin>
445 446 447
      <plugin><!-- generate licenses.xml -->
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
448
        <!-- version specified in grandparent pom -->
449
        <configuration>
S
Stephen Connolly 已提交
450
          <generateLicenseXml>${project.build.outputDirectory}/META-INF/licenses.xml</generateLicenseXml>
451 452
          <generateLicenseHtml>${project.build.outputDirectory}/META-INF/licenses.html</generateLicenseHtml>
          <attach>true</attach>
453 454 455 456 457 458 459 460 461 462 463
          <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 已提交
464
      <plugin>
465
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
466 467
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
468
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
469
        <configuration>
470 471 472 473
          <!--
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
          -->
          <reload>manual</reload>
474 475 476
          <httpConnector>
              <port>${port}</port>
          </httpConnector>
477
          <additionalClassesDirectories>
478
            <!-- load resources straight from source -->
479
            <additionalClassesDirectory>../core/src/main/resources</additionalClassesDirectory>
480

481 482 483 484 485 486
            <!--
              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>
487 488
          <loginServices>
            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
489
              <name>default</name>
490
              <config>${basedir}/src/realm.properties</config>
491 492
            </loginService>
          </loginServices>
K
kohsuke 已提交
493 494
          <systemProperties>
            <systemProperty>
K
Kohsuke Kawaguchi 已提交
495 496
              <name>JENKINS_HOME</name>
              <value>${JENKINS_HOME}</value>
K
kohsuke 已提交
497 498 499 500
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
501 502
              <value>true</value>
            </systemProperty>
503 504 505 506 507
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
508 509 510 511 512
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
513 514 515
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
516 517 518
              <value>
                  ../core/src/main/resources;
              </value>
K
kohsuke 已提交
519
            </systemProperty>
520
            <systemProperty>
521
              <!-- enable the plugins in main by default -->
522
              <name>hudson.bundled.plugins</name>
523
              <value><!-- run "mvn install" once will generate the.hpl -->
524
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/*.hpi
W
wjprakash 已提交
525
              </value>
526
            </systemProperty>
527 528 529 530 531
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
532 533 534 535
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
536 537 538 539 540
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
541
          </systemProperties>
542
          <webApp>
543
            <contextPath>${contextPath}</contextPath>
544
            <configurationDiscovered>false</configurationDiscovered>
545
            <webInfIncludeJarPattern>NONE</webInfIncludeJarPattern><!-- see https://wiki.eclipse.org/Jetty/Howto/Avoid_slow_deployment -->
546
          </webApp>
K
kohsuke 已提交
547 548
        </configuration>
      </plugin>
K
kohsuke 已提交
549 550
    </plugins>
  </build>
K
kohsuke 已提交
551

552
  <profiles>
553 554 555 556 557 558
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
559
            <artifactId>maven-jarsigner-plugin</artifactId>
560 561 562
            <executions>
              <execution>
                <id>signWar</id>
563
                <phase>pre-integration-test</phase>
564
                <goals>
S
Stephen Connolly 已提交
565
                  <goal>sign</goal>
566 567
                </goals>
                <configuration>
568
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
569 570 571 572
                  <arguments>
                    <argument>-tsa</argument>
                    <argument>http://timestamp.comodoca.com/rfc3161</argument>
                  </arguments>
573 574 575 576 577 578 579
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
580 581 582 583 584 585 586 587


    <!--
        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
    -->

588
    <profile>
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
      <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>
611 612 613 614
                    <requireJavaVersion>
                      <!-- let's encrypt certs used for https://updates.jenkins.io -->
                      <version>[1.8.0-101,]</version>
                    </requireJavaVersion>
615 616 617 618 619 620 621 622
                  </rules>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>com.github.eirslett</groupId>
            <artifactId>frontend-maven-plugin</artifactId>
623
            <version>1.6</version>
624
            <executions>
625

626 627
              <execution>
                <phase>initialize</phase>
628
                <id>install node and yarn</id>
629
                <goals>
630
                  <goal>install-node-and-yarn</goal>
631 632 633
                </goals>
                <configuration>
                  <nodeVersion>v${node.version}</nodeVersion>
634
                  <yarnVersion>v${yarn.version}</yarnVersion>
J
Jesse Glick 已提交
635
                  <nodeDownloadRoot>https://repo.jenkins-ci.org/nodejs-dist/</nodeDownloadRoot>
636
                  <!-- tried to create a mirror for yarnDownloadRoot but it did not work -->
637 638
                </configuration>
              </execution>
639

640 641
              <execution>
                <phase>initialize</phase>
642
                <id>yarn install</id>
643
                <goals>
644
                  <goal>yarn</goal>
645 646
                </goals>
                <configuration>
647 648 649
                  <!-- 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>
650 651
                </configuration>
              </execution>
652

653 654 655 656 657 658 659
              <execution>
                <phase>generate-sources</phase>
                <id>gulp bundle</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
660
                  <arguments>jshint bundle</arguments>
661 662
                </configuration>
              </execution>
663

664 665 666 667 668 669 670 671 672 673 674
              <execution>
                <phase>test</phase>
                <id>gulp test</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
                  <arguments>bundle test</arguments>
                  <skip>${skipTests}</skip>
                </configuration>
              </execution>
675

676 677 678 679
            </executions>
          </plugin>
        </plugins>
      </build>
680
    </profile>
681 682

    <profile>
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
      <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>
712
    </profile>
713
  </profiles>
714
</project>