pom.xml 30.9 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.16-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>4.0.0</node.version>
45
    <npm.version>3.8.9</npm.version>
46 47 48
  </properties>

  <dependencies>
49 50 51
    <dependency>
      <groupId>org.jenkins-ci</groupId>
      <artifactId>executable-war</artifactId>
52
      <version>1.33</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>
96
      <version>3.1</version>
97 98 99 100 101
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
102 103
      <version>2.0</version>
    </dependency>
104 105 106
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
107
      <version>1.2</version>
108 109 110 111
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
112
      <version>1.5</version>
113
    </dependency>
K
Kohsuke Kawaguchi 已提交
114 115 116
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
117
      <version>1.6</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>
K
Kohsuke Kawaguchi 已提交
137
      <version>1.6</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 181

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

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

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


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

    <!--
        Manually download node and NPM for the frontend plugin so it gets cached in the local maven repo.
        Otherwise frontend will be downloading it all the time on the CI servers. The download-maven-plugin
        caches it's downloads in the local maven repo.
    -->
    <profile>
598 599 600 601 602 603
      <id>node-classifier-linux</id>
      <activation><os><family>Linux</family><arch>amd64</arch></os></activation>
      <properties>
        <node.download.file>node-v${node.version}-linux-x64.tar.gz</node.download.file>
        <node.download.classifier />
      </properties>
604
    </profile>
605 606 607 608 609 610 611 612
    <profile>
      <id>node-classifier-linux-32</id>
      <activation><os><family>Linux</family><arch>i386</arch></os></activation>
      <properties>
        <node.download.file>node-v${node.version}-linux-x86.tar.gz</node.download.file>
        <node.download.classifier />
      </properties>
    </profile>
613
    <profile>
614 615 616 617 618 619
      <id>node-classifier-mac</id>
      <activation><os><family>mac</family></os></activation>
      <properties>
        <node.download.file>node-v${node.version}-darwin-x64.tar.gz</node.download.file>
        <node.download.classifier />
      </properties>
620 621
    </profile>
    <profile>
622 623 624 625 626 627
      <id>node-classifier-windows</id>
      <activation><os><family>windows</family><arch>x64</arch></os></activation>
      <properties>
        <node.download.file>win-x64/node.exe</node.download.file>
        <node.download.classifier>/x64</node.download.classifier>
      </properties>
628 629
    </profile>
    <profile>
630 631 632 633
      <id>node-classifier-windows-amd64</id>
      <activation><os><family>windows</family><arch>amd64</arch></os></activation>
      <properties>
        <node.download.file>win-x64/node.exe</node.download.file>
634
        <node.download.classifier>/win-x64</node.download.classifier>
635
      </properties>
636 637
    </profile>
    <profile>
638 639 640 641 642 643
      <id>node-classifier-windows-x86</id>
      <activation><os><family>windows</family><arch>x86</arch></os></activation>
      <properties>
        <node.download.file>win-x86/node.exe</node.download.file>
        <node.download.classifier />
      </properties>
644 645
    </profile>
    <profile>
646
      <id>node-download</id>
647 648 649 650 651
      <activation>
        <file>
          <exists>package.json</exists>
        </file>
      </activation>
652 653 654 655 656 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 686 687
      <build>
        <plugins>
          <plugin>
            <groupId>com.googlecode.maven-download-plugin</groupId>
            <artifactId>download-maven-plugin</artifactId>
            <version>1.2.1</version>
            <executions>
              <execution>
                <id>get-node</id>
                <phase>initialize</phase>
                <goals>
                  <goal>wget</goal>
                </goals>
                <configuration>
                  <url>https://nodejs.org/dist/v${node.version}/${node.download.file}</url>
                  <unpack>false</unpack>
                  <outputDirectory>${project.build.directory}/frontend/v${node.version}${node.download.classifier}</outputDirectory>
                </configuration>
              </execution>
              <execution>
                <id>get-npm</id>
                <phase>initialize</phase>
                <goals>
                  <goal>wget</goal>
                </goals>
                <configuration>
                  <url>http://registry.npmjs.org/npm/-/npm-${npm.version}.tgz</url>
                  <unpack>false</unpack>
                  <outputDirectory>${project.build.directory}/frontend/</outputDirectory>
                  <outputFileName>npm-${npm.version}.tgz</outputFileName>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
688
    </profile>
689
    <profile>
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
      <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>
            <version>1.3.1</version>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
                      <version>3.1.0</version>
                    </requireMavenVersion>
                  </rules>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>com.github.eirslett</groupId>
            <artifactId>frontend-maven-plugin</artifactId>
721
            <version>1.0</version>
722
            <executions>
723

724 725 726 727 728 729 730 731 732 733 734 735 736
              <execution>
                <phase>initialize</phase>
                <id>install node and npm</id>
                <goals>
                  <goal>install-node-and-npm</goal>
                </goals>
                <configuration>
                  <nodeVersion>v${node.version}</nodeVersion>
                  <npmVersion>${npm.version}</npmVersion>
                  <!-- Use the pre-download node and npm packages. See download-maven-plugin config above. -->
                  <downloadRoot>${project.baseUri}target/frontend/</downloadRoot>
                </configuration>
              </execution>
737

738 739 740 741 742 743 744 745 746 747 748
              <execution>
                <phase>initialize</phase>
                <id>npm install</id>
                <goals>
                  <goal>npm</goal>
                </goals>
                <configuration>
                  <!-- Note that this may not be omitted lest maven-release-plugin be confused (frontend-maven-plugin #109): -->
                  <arguments>install</arguments>
                </configuration>
              </execution>
749

750 751 752 753 754 755 756
              <execution>
                <phase>generate-sources</phase>
                <id>gulp bundle</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
757
                  <arguments>jshint bundle</arguments>
758 759
                </configuration>
              </execution>
760

761 762 763 764 765 766 767 768 769 770 771
              <execution>
                <phase>test</phase>
                <id>gulp test</id>
                <goals>
                  <goal>gulp</goal>
                </goals>
                <configuration>
                  <arguments>bundle test</arguments>
                  <skip>${skipTests}</skip>
                </configuration>
              </execution>
772

773 774 775 776
            </executions>
          </plugin>
        </plugins>
      </build>
777
    </profile>
778 779

    <profile>
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
      <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>
809
    </profile>
810
  </profiles>
811
</project>