pom.xml 16.7 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.431-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.24</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-28</version>
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>instance-identity</artifactId>
      <version>1.1</version>
    </dependency>
    <dependency>
      <groupId>org.jenkins-ci.modules</groupId>
      <artifactId>ssh-cli-auth</artifactId>
      <version>1.1</version>
    </dependency>

    <!-- offline profiler API when we need it -->
    <!--dependency>
      <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 已提交
126
  <build>
K
Kohsuke Kawaguchi 已提交
127
    <finalName>jenkins</finalName>
K
kohsuke 已提交
128 129 130
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
131
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
132
        <configuration>
J
jieryn 已提交
133
          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
K
kohsuke 已提交
134 135
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
136
            <manifest>
K
kohsuke 已提交
137 138
              <mainClass>Main</mainClass>
            </manifest>
139 140
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
141
              <Hudson-Version>1.395</Hudson-Version>
142
              <Jenkins-Version>${project.version}</Jenkins-Version>
143
            </manifestEntries>
K
kohsuke 已提交
144
          </archive>
145
          <!--outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping-->
K
kohsuke 已提交
146 147
        </configuration>
      </plugin>
148 149
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
150
        <!-- version specified in grandparent pom -->
151 152
        <executions>
          <execution>
153
            <id>list-dependencies</id>
154 155 156 157 158
            <phase>generate-resources</phase>
            <goals>
              <goal>list</goal>
            </goals>
            <configuration>
S
Stephen Connolly 已提交
159
              <outputFile>${project.build.outputDirectory}/dependencies.txt</outputFile>
160 161
            </configuration>
          </execution>
162 163 164 165 166 167 168 169 170 171 172 173
          <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>
174
              <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188
            </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>
189
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
190 191 192 193 194
                  <destFileName>remoting.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>remoting</artifactId>
195
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
196 197 198 199 200 201
                  <destFileName>slave.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>${project.groupId}</groupId>
                  <artifactId>cli</artifactId>
                  <classifier>jar-with-dependencies</classifier>
202
                  <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF</outputDirectory>
S
Stephen Connolly 已提交
203 204 205 206 207
                  <destFileName>jenkins-cli.jar</destFileName>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci</groupId>
                  <artifactId>winstone</artifactId>
208
                  <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
S
Stephen Connolly 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
                  <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>
                  <version>0.17</version>
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>subversion</artifactId>
                  <version>1.28</version>
                  <type>hpi</type>
                </artifactItem>
                <artifactItem>
                  <groupId>org.jvnet.hudson.plugins</groupId>
                  <artifactId>cvs</artifactId>
                  <version>1.2</version>
                  <type>hpi</type>
                </artifactItem>
235 236 237 238 239 240
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>ant</artifactId>
                  <version>1.0-SNAPSHOT</version>
                  <type>hpi</type>
                </artifactItem>
241 242 243 244 245 246
                <artifactItem>
                  <groupId>org.jenkins-ci.plugins</groupId>
                  <artifactId>translation</artifactId>
                  <version>1.7</version>
                  <type>hpi</type>
                </artifactItem>
S
Stephen Connolly 已提交
247
              </artifactItems>
248
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/plugins</outputDirectory>
S
Stephen Connolly 已提交
249
              <stripVersion>true</stripVersion>
250 251 252
              <overWriteIfNewer>true</overWriteIfNewer>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>true</overWriteSnapshots>
253 254
            </configuration>
          </execution>
255 256
        </executions>
      </plugin>
K
kohsuke 已提交
257
      <plugin>
258 259
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
K
kohsuke 已提交
260 261
        <executions>
          <execution>
262 263
            <!-- deploy the war as a jar, so that the tests can pull this into the classpath -->
            <id>deploy-war-for-test</id>
264
            <phase>package</phase>
K
kohsuke 已提交
265
            <goals>
266
              <goal>attach-artifact</goal>
K
kohsuke 已提交
267
            </goals>
K
kohsuke 已提交
268
            <configuration>
269 270
              <artifacts>
                <artifact>
S
Stephen Connolly 已提交
271
                  <file>${project.build.directory}/${project.build.finalName}.war</file>
272 273 274 275
                  <type>jar</type>
                  <classifier>war-for-test</classifier>
                </artifact>
              </artifacts>
K
kohsuke 已提交
276 277
            </configuration>
          </execution>
278 279
        </executions>
      </plugin>
280 281 282
      <plugin><!-- generate licenses.xml -->
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
283
        <!-- version specified in grandparent pom -->
284
        <configuration>
S
Stephen Connolly 已提交
285
          <generateLicenseXml>${project.build.outputDirectory}/META-INF/licenses.xml</generateLicenseXml>
286 287 288 289 290 291 292 293 294 295 296
          <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 已提交
297
      <plugin>
298
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
299 300
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
301
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
302
        <configuration>
303
          <contextPath>${contextPath}</contextPath>
304 305 306 307
          <!--
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
          -->
          <reload>manual</reload>
308 309 310 311 312
          <connectors>
            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
                <port>${port}</port>
            </connector>
          </connectors>
313 314 315 316 317 318 319 320 321 322
          <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>
323 324
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
325
              <name>default</name>
326
              <config>${basedir}/src/realm.properties</config>
327
            </userRealm>
328
          </userRealms>
K
kohsuke 已提交
329 330
          <systemProperties>
            <systemProperty>
K
Kohsuke Kawaguchi 已提交
331 332
              <name>JENKINS_HOME</name>
              <value>${JENKINS_HOME}</value>
K
kohsuke 已提交
333 334 335 336
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
337 338
              <value>true</value>
            </systemProperty>
339 340 341 342 343
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
344 345 346 347 348
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
349 350 351
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
352 353 354 355 356
              <value>
                  ../core/src/main/resources;
                  ../ui-samples-plugin/src/main/resources;
                  ../maven-plugin/src/main/resources
              </value>
K
kohsuke 已提交
357
            </systemProperty>
358
            <systemProperty>
359
              <!-- enable the plugins in main by default -->
360
              <name>hudson.bundled.plugins</name>
W
wjprakash 已提交
361 362
              <value>
                  ${basedir}/../maven-plugin/target/test-classes/the.hpl,
K
kohsuke 已提交
363
                  ${basedir}/../ui-samples-plugin/target/test-classes/the.hpl
W
wjprakash 已提交
364
              </value>
365
            </systemProperty>
366 367 368 369 370
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
371 372 373 374
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
375 376 377 378 379
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
380 381 382
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
383 384
    </plugins>
  </build>
K
kohsuke 已提交
385

386
  <profiles>
K
kohsuke 已提交
387
    <profile>
388
      <!-- profile for creating Jenkins IPS package -->
K
kohsuke 已提交
389 390 391 392 393 394
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
395
            <!-- version specified in grandparent pom -->
K
kohsuke 已提交
396 397 398 399 400 401 402 403
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
404
              <python>python2.5</python>
K
kohsuke 已提交
405
              <proto>../ips/proto.py</proto>
406
              <attach>false</attach>
K
kohsuke 已提交
407 408 409 410 411
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
412 413 414 415 416 417
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
S
Stephen Connolly 已提交
418
            <artifactId>maven-jarsigner-plugin</artifactId>
419 420 421 422 423
            <executions>
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
S
Stephen Connolly 已提交
424
                  <goal>sign</goal>
425 426
                </goals>
                <configuration>
427
                  <archive>${project.build.directory}/${project.build.finalName}.war</archive>
428 429 430 431 432 433 434
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
435
  </profiles>
436
</project>