pom.xml 19.2 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.473-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 46 47 48 49 50

  <properties>
    <JENKINS_HOME>${basedir}/work</JENKINS_HOME>
    <contextPath>/</contextPath><!-- context path during test -->
    <port>8080</port><!-- HTTP listener port -->
  </properties>

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

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    <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>
      </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>
87
      <!-- specified in the parent -->
88 89 90 91 92 93 94 95 96 97
    </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 已提交
98
        not actually used by test but used by dependency plugin to include it inside the war.
99 100 101
      -->
      <groupId>org.jenkins-ci</groupId>
      <artifactId>winstone</artifactId>
102
      <version>0.9.10-jenkins-37</version>
103 104 105 106 107
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
108
      <version>1.2</version>
109 110 111 112
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
113
      <version>1.2</version>
114
    </dependency>
115 116 117
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>sshd</artifactId>
118
      <version>1.3</version>
119
    </dependency>
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    <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>

142 143

    <!-- offline profiler API when we need it -->
144 145

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

444
  <profiles>
K
kohsuke 已提交
445
    <profile>
446
      <!-- profile for creating Jenkins IPS package -->
K
kohsuke 已提交
447 448 449 450 451 452
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
453
            <!-- version specified in grandparent pom -->
K
kohsuke 已提交
454 455 456 457 458 459 460 461
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
462
              <python>python2.5</python>
K
kohsuke 已提交
463
              <proto>../ips/proto.py</proto>
464
              <attach>false</attach>
K
kohsuke 已提交
465 466 467 468 469
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
470 471 472 473 474 475
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
476
            <artifactId>maven-jarsigner-plugin</artifactId>
477 478 479 480 481
            <executions>
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
S
Stephen Connolly 已提交
482
                  <goal>sign</goal>
483 484
                </goals>
                <configuration>
485
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
486 487 488 489 490 491 492
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
493
  </profiles>
494
</project>