pom.xml 23.5 KB
Newer Older
K
kohsuke 已提交
1 2 3
<!--
The MIT License

4
Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Stephen Connolly, Tom Huybrechts, Yahoo! Inc.
K
kohsuke 已提交
5 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>1.553-SNAPSHOT</version>
K
kohsuke 已提交
32 33
    <relativePath>../pom.xml</relativePath>
  </parent>
34

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

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

  <properties>
    <JENKINS_HOME>${basedir}/work</JENKINS_HOME>
46
    <contextPath>/jenkins</contextPath><!-- context path during test -->
47 48 49 50
    <port>8080</port><!-- HTTP listener port -->
  </properties>

  <dependencies>
51 52 53
    <dependency>
      <groupId>org.jenkins-ci</groupId>
      <artifactId>executable-war</artifactId>
54
      <version>1.29</version>
55 56 57
      <scope>provided</scope>
    </dependency>

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    <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>
74 75 76 77 78
        <!-- 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>
79 80 81 82 83 84
      </exclusions>
    </dependency>
    <!-- declare this in reactors, so i can use now directly : mvn install -pl war -am to get the war  -->
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>maven-plugin</artifactId>
85
      <version>${maven-plugin.version}</version>
86 87 88 89 90
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
91
      <!-- specified in the parent -->
92 93 94 95 96 97 98 99 100 101
    </dependency>    
    <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 已提交
102
        not actually used by test but used by dependency plugin to include it inside the war.
103 104 105
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
106
      <version>2.1</version>
107 108 109 110 111
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
J
Jesse Glick 已提交
112
      <version>1.3</version>
113 114 115 116
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
117
      <version>1.2</version>
118 119 120 121
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
122
      <version>1.3</version>
123
    </dependency>
K
Kohsuke Kawaguchi 已提交
124 125 126
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
127
      <version>1.3</version>
K
Kohsuke Kawaguchi 已提交
128
    </dependency>
129 130 131
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>launchd-slave-installer</artifactId>
132
      <version>1.2</version>
K
Kohsuke Kawaguchi 已提交
133 134 135 136
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>upstart-slave-installer</artifactId>
137
      <version>1.1</version>
138
    </dependency>
139 140 141 142 143 144
    <!-- TODO disabled until this is fixed to not cause errors on Ubuntu:
WARNING: org.jenkinsci.modules.systemd_slave_installer.SlaveInstallerFactoryImpl@614899d4 has failed on hudson.slaves.SlaveComputer@163dc443
java.io.IOException: Cannot run program "systemctl": error=2, No such file or directory
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:1041)
	at org.jenkinsci.modules.systemd_slave_installer.SlaveInstallerFactoryImpl$HasSystemd.call(SlaveInstallerFactoryImpl.java:46)
	at org.jenkinsci.modules.systemd_slave_installer.SlaveInstallerFactoryImpl$HasSystemd.call(SlaveInstallerFactoryImpl.java:39)
145 146 147 148 149
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>systemd-slave-installer</artifactId>
      <version>1.0</version>
    </dependency>
150
    -->
151 152 153
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
K
Kohsuke Kawaguchi 已提交
154
      <version>1.6</version>
155
    </dependency>
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
    <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>

178 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 275 276 277 278 279 280 281 282 283
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
                <!-- bundled plugins -->
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>maven-plugin</artifactId>
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-slaves</artifactId>
284
                  <version>1.5</version>
K
Kohsuke Kawaguchi 已提交
285 286 287 288 289
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>credentials</artifactId>
S
Stephen Connolly 已提交
290
                  <version>1.9.4</version>
K
Kohsuke Kawaguchi 已提交
291 292 293 294 295
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-credentials</artifactId>
J
Jesse Glick 已提交
296
                  <version>1.6</version>
S
Stephen Connolly 已提交
297 298 299 300 301
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>subversion</artifactId>
J
Jesse Glick 已提交
302
                  <version>1.54</version>
S
Stephen Connolly 已提交
303 304 305
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
K
oops  
Kohsuke Kawaguchi 已提交
306
                  <groupId>org.jenkins-ci.plugins</groupId>
S
Stephen Connolly 已提交
307
                  <artifactId>cvs</artifactId>
J
Jesse Glick 已提交
308
                  <version>2.11</version>
S
Stephen Connolly 已提交
309 310
                  <type>hpi</type>
                </artifactItem>
311 312 313
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ant</artifactId>
J
Jesse Glick 已提交
314
                  <version>1.2</version>
315 316
                  <type>hpi</type>
                </artifactItem>
317 318 319
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>javadoc</artifactId>
J
Jesse Glick 已提交
320
                  <version>1.1</version>
321 322
                  <type>hpi</type>
                </artifactItem>
323 324 325
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>translation</artifactId>
326
                  <version>1.10</version>
327 328
                  <type>hpi</type>
                </artifactItem>
329 330 331
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>external-monitor-job</artifactId>
J
Jesse Glick 已提交
332
                  <version>1.2</version>
333 334
                  <type>hpi</type>
                </artifactItem>
335 336 337
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ldap</artifactId>
J
Jesse Glick 已提交
338
                  <version>1.6</version>
339 340 341 342 343
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>pam-auth</artifactId>
J
Jesse Glick 已提交
344
                  <version>1.1</version>
345 346
                  <type>hpi</type>
                </artifactItem>
O
Oliver Gondža 已提交
347 348 349
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>mailer</artifactId>
J
Jesse Glick 已提交
350
                  <version>1.6</version>
O
Oliver Gondža 已提交
351 352
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
353 354 355
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-auth</artifactId>
J
Jesse Glick 已提交
356
                  <version>1.1</version>
J
Jesse Glick 已提交
357 358
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
359 360 361 362 363 364
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>windows-slaves</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
365 366 367 368 369 370
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>antisamy-markup-formatter</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
S
Stephen Connolly 已提交
371
              </artifactItems>
372
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/plugins</outputDirectory>
S
Stephen Connolly 已提交
373
              <stripVersion>true</stripVersion>
374 375 376
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
377 378
            </configuration>
          </execution>
379 380
        </executions>
      </plugin>
K
kohsuke 已提交
381
      <plugin>
382 383
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
K
kohsuke 已提交
384 385
        <executions>
          <execution>
386 387
            <!-- deploy the war as a jar, so that the tests can pull this into the classpath -->
            <id>deploy-war-for-test</id>
388
            <phase>package</phase>
K
kohsuke 已提交
389
            <goals>
390
              <goal>attach-artifact</goal>
K
kohsuke 已提交
391
            </goals>
K
kohsuke 已提交
392
            <configuration>
393 394
              <artifacts>
                <artifact>
S
Stephen Connolly 已提交
395
                  <file>${project.build.directory}/${project.build.finalName}.war</file>
396 397 398 399
                  <type>jar</type>
                  <classifier>war-for-test</classifier>
                </artifact>
              </artifacts>
K
kohsuke 已提交
400 401
            </configuration>
          </execution>
402 403
        </executions>
      </plugin>
404 405 406
      <plugin><!-- generate licenses.xml -->
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
407
        <!-- version specified in grandparent pom -->
408
        <configuration>
S
Stephen Connolly 已提交
409
          <generateLicenseXml>${project.build.outputDirectory}/META-INF/licenses.xml</generateLicenseXml>
410 411
          <generateLicenseHtml>${project.build.outputDirectory}/META-INF/licenses.html</generateLicenseHtml>
          <attach>true</attach>
412 413 414 415 416 417 418 419 420 421 422
          <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 已提交
423
      <plugin>
424
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
425 426
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
427
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
428
        <configuration>
429 430 431 432
          <!--
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
          -->
          <reload>manual</reload>
433
          <connectors>
434
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
435 436 437
                <port>${port}</port>
            </connector>
          </connectors>
438 439 440 441 442 443 444 445 446 447
          <additionalClassesDirectories>
            <!-- load resoures straight from source -->
            <additionalClassesDirectory>../core/src/main/resources</additionalClassesDirectory>
            
            <!--
              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>
448 449
          <loginServices>
            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
450
              <name>default</name>
451
              <config>${basedir}/src/realm.properties</config>
452 453
            </loginService>
          </loginServices>
K
kohsuke 已提交
454 455
          <systemProperties>
            <systemProperty>
K
Kohsuke Kawaguchi 已提交
456 457
              <name>JENKINS_HOME</name>
              <value>${JENKINS_HOME}</value>
K
kohsuke 已提交
458 459 460 461
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
462 463
              <value>true</value>
            </systemProperty>
464 465 466 467 468
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
469 470 471 472 473
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
474 475 476
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
477 478 479
              <value>
                  ../core/src/main/resources;
              </value>
K
kohsuke 已提交
480
            </systemProperty>
481
            <systemProperty>
482
              <!-- enable the plugins in main by default -->
483
              <name>hudson.bundled.plugins</name>
484
              <value><!-- run "mvn install" once will generate the.hpl -->
485
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/*.hpi
W
wjprakash 已提交
486
              </value>
487
            </systemProperty>
488 489 490 491 492
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
493 494 495 496
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
497 498 499 500 501
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
502
          </systemProperties>
503
          <webApp>
504
            <contextPath>${contextPath}</contextPath>
505 506
            <configurationDiscovered>false</configurationDiscovered>
          </webApp>
K
kohsuke 已提交
507 508
        </configuration>
      </plugin>
K
kohsuke 已提交
509 510
    </plugins>
  </build>
K
kohsuke 已提交
511

512
  <profiles>
K
kohsuke 已提交
513
    <profile>
514
      <!-- profile for creating Jenkins IPS package -->
K
kohsuke 已提交
515 516 517 518 519 520
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
521
            <!-- version specified in grandparent pom -->
K
kohsuke 已提交
522 523 524 525 526 527 528 529
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
530
              <python>python2.5</python>
K
kohsuke 已提交
531
              <proto>../ips/proto.py</proto>
532
              <attach>false</attach>
K
kohsuke 已提交
533 534 535 536 537
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
538 539 540 541 542 543
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
544
            <artifactId>maven-jarsigner-plugin</artifactId>
545 546 547 548 549
            <executions>
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
S
Stephen Connolly 已提交
550
                  <goal>sign</goal>
551 552
                </goals>
                <configuration>
553
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
554 555 556 557 558 559 560
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
    <profile>
      <!-- profile for running Grunt and optimize static resources -->
      <id>grunt</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>install</id>
                            <phase>validate</phase>
                            <goals>
                                <goal>exec</goal>
                            </goals>
                            <configuration>
                                <executable>npm</executable>
                                <arguments>
                                    <argument>install</argument>
                                </arguments>
                            </configuration>
                        </execution>
                        <execution>
                            <id>grunt</id>
                            <phase>prepare-package</phase>
                            <goals>
                                <goal>exec</goal>
                            </goals>
                            <configuration>
                                <executable>grunt</executable>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
598
  </profiles>
599
</project>