pom.xml 20.9 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.523-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.28</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 85 86 87 88 89 90 91
      </exclusions>
    </dependency>
    <!-- declare this in reactors, so i can use now directly : mvn install -pl war -am to get the war  -->
    <!-- TO REMOVE when maven-plugin won't be anymore a bundle plugin -->
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>maven-plugin</artifactId>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
92
      <!-- specified in the parent -->
93 94 95 96 97 98 99 100 101 102
    </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 已提交
103
        not actually used by test but used by dependency plugin to include it inside the war.
104 105 106
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
107
      <version>0.9.10-jenkins-44</version>
108 109 110 111 112
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
J
Jesse Glick 已提交
113
      <version>1.3</version>
114 115 116 117
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
118
      <version>1.2</version>
119 120 121 122 123
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>slave-installer</artifactId>
      <version>1.2</version>
124
    </dependency>
K
Kohsuke Kawaguchi 已提交
125 126 127
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>windows-slave-installer</artifactId>
128
      <version>1.3</version>
K
Kohsuke Kawaguchi 已提交
129
    </dependency>
130 131 132
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>launchd-slave-installer</artifactId>
133
      <version>1.2</version>
K
Kohsuke Kawaguchi 已提交
134 135 136 137
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>upstart-slave-installer</artifactId>
138
      <version>1.1</version>
139
    </dependency>
140 141 142
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
143
      <version>1.5</version>
144
    </dependency>
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
    <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>

167 168

    <!-- offline profiler API when we need it -->
169 170

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

487
  <profiles>
K
kohsuke 已提交
488
    <profile>
489
      <!-- profile for creating Jenkins IPS package -->
K
kohsuke 已提交
490 491 492 493 494 495
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
496
            <!-- version specified in grandparent pom -->
K
kohsuke 已提交
497 498 499 500 501 502 503 504
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
505
              <python>python2.5</python>
K
kohsuke 已提交
506
              <proto>../ips/proto.py</proto>
507
              <attach>false</attach>
K
kohsuke 已提交
508 509 510 511 512
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
513 514 515 516 517 518
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
519
            <artifactId>maven-jarsigner-plugin</artifactId>
520 521 522 523 524
            <executions>
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
S
Stephen Connolly 已提交
525
                  <goal>sign</goal>
526 527
                </goals>
                <configuration>
528
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
529 530 531 532 533 534 535
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
536
  </profiles>
537
</project>