pom.xml 22.7 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.0-alpha-1-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 44 45 46
    <port>8080</port><!-- HTTP listener port -->
  </properties>

  <dependencies>
47 48 49
    <dependency>
      <groupId>org.jenkins-ci</groupId>
      <artifactId>executable-war</artifactId>
K
Kohsuke Kawaguchi 已提交
50
      <version>1.30</version>
51 52
      <scope>provided</scope>
    </dependency>
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
    <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>
69 70 71 72 73
        <!-- 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>
74 75 76 77 78
      </exclusions>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
79
      <!-- specified in the parent -->
80 81 82 83 84 85 86 87 88 89
    </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 已提交
90
        not actually used by test but used by dependency plugin to include it inside the war.
91 92 93
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
94
      <version>2.9</version>
95 96 97 98 99
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
J
Jesse Glick 已提交
100
      <version>1.4</version>
101 102 103 104
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
105
      <version>1.2</version>
106 107 108 109
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
110
      <version>1.5</version>
111
    </dependency>
K
Kohsuke Kawaguchi 已提交
112 113 114
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
115
      <version>1.5.1</version>
K
Kohsuke Kawaguchi 已提交
116
    </dependency>
117 118 119
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>launchd-slave-installer</artifactId>
120
      <version>1.2</version>
K
Kohsuke Kawaguchi 已提交
121 122 123 124
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>upstart-slave-installer</artifactId>
125
      <version>1.1</version>
126
    </dependency>
127 128 129
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>systemd-slave-installer</artifactId>
130
      <version>1.1</version>
131
    </dependency>
132 133 134
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
K
Kohsuke Kawaguchi 已提交
135
      <version>1.6</version>
136
    </dependency>
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    <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>

159
    <!-- offline profiler API when we need it -->
160 161

    <!--dependency
162 163 164 165 166 167 168 169
      <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 已提交
170
  <build>
K
Kohsuke Kawaguchi 已提交
171
    <finalName>jenkins</finalName>
K
kohsuke 已提交
172 173 174
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
175
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
176
        <configuration>
J
jieryn 已提交
177
          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
K
kohsuke 已提交
178 179
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
180
            <manifest>
K
kohsuke 已提交
181 182
              <mainClass>Main</mainClass>
            </manifest>
183 184
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
185
              <Hudson-Version>1.395</Hudson-Version>
186
              <Jenkins-Version>${project.version}</Jenkins-Version>
187
            </manifestEntries>
K
kohsuke 已提交
188
          </archive>
189
          <!--outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping-->
K
kohsuke 已提交
190 191
        </configuration>
      </plugin>
192 193
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
194
        <!-- version specified in grandparent pom -->
195 196
        <executions>
          <execution>
197
            <id>list-dependencies</id>
198 199 200 201 202
            <phase>generate-resources</phase>
            <goals>
              <goal>list</goal>
            </goals>
            <configuration>
S
Stephen Connolly 已提交
203
              <outputFile>${project.build.outputDirectory}/dependencies.txt</outputFile>
204 205
            </configuration>
          </execution>
206 207 208 209 210 211 212 213 214 215 216 217
          <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>
218
              <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232
            </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>
233
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
234 235 236 237 238
                  <destFileName>remoting.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>remoting</artifactId>
239
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
240 241 242 243 244 245
                  <destFileName>slave.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>cli</artifactId>
                  <classifier>jar-with-dependencies</classifier>
246
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
247 248 249 250 251
                  <destFileName>jenkins-cli.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci</groupId>
                  <artifactId>winstone</artifactId>
252
                  <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
253 254 255 256 257 258
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
                <!-- bundled plugins -->
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>maven-plugin</artifactId>
259
                  <version>${maven-plugin.version}</version>
S
Stephen Connolly 已提交
260 261 262 263 264
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-slaves</artifactId>
265
                  <version>1.9</version>
K
Kohsuke Kawaguchi 已提交
266 267 268 269 270
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>credentials</artifactId>
271
                  <version>1.18</version>
K
Kohsuke Kawaguchi 已提交
272 273 274 275 276
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ssh-credentials</artifactId>
277
                  <version>1.10</version>
S
Stephen Connolly 已提交
278 279 280 281 282
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>subversion</artifactId>
J
Jesse Glick 已提交
283
                  <version>1.54</version>
S
Stephen Connolly 已提交
284 285 286
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
K
oops  
Kohsuke Kawaguchi 已提交
287
                  <groupId>org.jenkins-ci.plugins</groupId>
S
Stephen Connolly 已提交
288
                  <artifactId>cvs</artifactId>
J
Jesse Glick 已提交
289
                  <version>2.11</version>
S
Stephen Connolly 已提交
290 291
                  <type>hpi</type>
                </artifactItem>
292 293 294
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ant</artifactId>
J
Jesse Glick 已提交
295
                  <version>1.2</version>
296 297
                  <type>hpi</type>
                </artifactItem>
298 299 300
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>javadoc</artifactId>
J
Jesse Glick 已提交
301
                  <version>1.1</version>
302 303
                  <type>hpi</type>
                </artifactItem>
304 305 306
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>translation</artifactId>
307
                  <version>1.10</version>
308 309
                  <type>hpi</type>
                </artifactItem>
310 311 312
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>external-monitor-job</artifactId>
313
                  <version>1.4</version>
314 315
                  <type>hpi</type>
                </artifactItem>
316 317 318
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ldap</artifactId>
319
                  <version>1.11</version>
320 321 322 323 324
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>pam-auth</artifactId>
J
Jesse Glick 已提交
325
                  <version>1.1</version>
326 327
                  <type>hpi</type>
                </artifactItem>
O
Oliver Gondža 已提交
328 329 330
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>mailer</artifactId>
331
                  <version>1.11</version>
O
Oliver Gondža 已提交
332 333
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
334 335 336
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-auth</artifactId>
J
Jesse Glick 已提交
337
                  <version>1.1</version>
J
Jesse Glick 已提交
338 339
                  <type>hpi</type>
                </artifactItem>
J
Jesse Glick 已提交
340 341 342 343 344 345
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>windows-slaves</artifactId>
                  <version>1.0</version>
                  <type>hpi</type>
                </artifactItem>
346 347 348
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>antisamy-markup-formatter</artifactId>
J
Jesse Glick 已提交
349
                  <version>1.1</version>
350 351
                  <type>hpi</type>
                </artifactItem>
352 353 354
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>matrix-project</artifactId>
355
                  <version>${matrix-project.version}</version>
356 357 358 359 360 361
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>script-security</artifactId>
                  <version>1.13</version>
362 363
                  <type>hpi</type>
                </artifactItem>
364 365 366
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>junit</artifactId>
J
Jesse Glick 已提交
367
                  <version>1.2-beta-4</version>
368 369
                  <type>hpi</type>
                </artifactItem>
S
Stephen Connolly 已提交
370
              </artifactItems>
371
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/plugins</outputDirectory>
S
Stephen Connolly 已提交
372
              <stripVersion>true</stripVersion>
373 374 375
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
376 377
            </configuration>
          </execution>
378 379
        </executions>
      </plugin>
K
kohsuke 已提交
380
      <plugin>
381 382
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
K
kohsuke 已提交
383 384
        <executions>
          <execution>
385 386
            <!-- deploy the war as a jar, so that the tests can pull this into the classpath -->
            <id>deploy-war-for-test</id>
387
            <phase>package</phase>
K
kohsuke 已提交
388
            <goals>
389
              <goal>attach-artifact</goal>
K
kohsuke 已提交
390
            </goals>
K
kohsuke 已提交
391
            <configuration>
392 393
              <artifacts>
                <artifact>
S
Stephen Connolly 已提交
394
                  <file>${project.build.directory}/${project.build.finalName}.war</file>
395 396 397 398
                  <type>jar</type>
                  <classifier>war-for-test</classifier>
                </artifact>
              </artifacts>
K
kohsuke 已提交
399 400
            </configuration>
          </execution>
401 402
        </executions>
      </plugin>
403 404 405
      <plugin><!-- generate licenses.xml -->
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
406
        <!-- version specified in grandparent pom -->
407
        <configuration>
S
Stephen Connolly 已提交
408
          <generateLicenseXml>${project.build.outputDirectory}/META-INF/licenses.xml</generateLicenseXml>
409 410
          <generateLicenseHtml>${project.build.outputDirectory}/META-INF/licenses.html</generateLicenseHtml>
          <attach>true</attach>
411 412 413 414 415 416 417 418 419 420 421
          <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 已提交
422
      <plugin>
423
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
424 425
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
426
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
427
        <configuration>
428 429 430 431
          <!--
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
          -->
          <reload>manual</reload>
432
          <connectors>
433
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
434 435 436
                <port>${port}</port>
            </connector>
          </connectors>
437 438 439 440 441 442 443 444 445 446
          <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>
447 448
          <loginServices>
            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
449
              <name>default</name>
450
              <config>${basedir}/src/realm.properties</config>
451 452
            </loginService>
          </loginServices>
K
kohsuke 已提交
453 454
          <systemProperties>
            <systemProperty>
K
Kohsuke Kawaguchi 已提交
455 456
              <name>JENKINS_HOME</name>
              <value>${JENKINS_HOME}</value>
K
kohsuke 已提交
457 458 459 460
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
461 462
              <value>true</value>
            </systemProperty>
463 464 465 466 467
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
468 469 470 471 472
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
473 474 475
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
476 477 478
              <value>
                  ../core/src/main/resources;
              </value>
K
kohsuke 已提交
479
            </systemProperty>
480
            <systemProperty>
481
              <!-- enable the plugins in main by default -->
482
              <name>hudson.bundled.plugins</name>
483
              <value><!-- run "mvn install" once will generate the.hpl -->
484
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/*.hpi
W
wjprakash 已提交
485
              </value>
486
            </systemProperty>
487 488 489 490 491
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
492 493 494 495
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
496 497 498 499 500
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
501
          </systemProperties>
502
          <webApp>
503
            <contextPath>${contextPath}</contextPath>
504 505
            <configurationDiscovered>false</configurationDiscovered>
          </webApp>
K
kohsuke 已提交
506 507
        </configuration>
      </plugin>
K
kohsuke 已提交
508 509
    </plugins>
  </build>
K
kohsuke 已提交
510

511
  <profiles>
512 513 514 515 516 517
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
518
            <artifactId>maven-jarsigner-plugin</artifactId>
519 520 521 522 523
            <executions>
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
S
Stephen Connolly 已提交
524
                  <goal>sign</goal>
525 526
                </goals>
                <configuration>
527
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
528 529 530 531 532 533 534
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
    <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>
572
  </profiles>
573
</project>