pom.xml 13.6 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 27
  <modelVersion>4.0.0</modelVersion>
  <parent>
28
    <groupId>org.jenkins-ci.main</groupId>
K
kohsuke 已提交
29
    <artifactId>pom</artifactId>
30
    <version>1.400-SNAPSHOT</version>
K
kohsuke 已提交
31 32 33
    <relativePath>../pom.xml</relativePath>
  </parent>
  
K
Kohsuke Kawaguchi 已提交
34
  <artifactId>jenkins-war</artifactId>
K
kohsuke 已提交
35
  <packaging>war</packaging>
36
  <name>Jenkins war</name>
37 38 39 40
  <description>
    Creates a war file. Also includes additional static web resources, such as images, CSS, JavaScript, and
    some HTML files.
  </description>
K
kohsuke 已提交
41 42
  
  <build>
K
Kohsuke Kawaguchi 已提交
43
    <finalName>jenkins</finalName>
K
kohsuke 已提交
44 45 46
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
47
        <version>2.1-beta-1</version>
K
kohsuke 已提交
48
        <configuration>
J
jieryn 已提交
49
          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
K
kohsuke 已提交
50 51
          <webResources>
            <resource>
J
jieryn 已提交
52
              <directory>${project.build.directory}/generated-resources</directory>
K
kohsuke 已提交
53
            </resource>
K
kohsuke 已提交
54
          </webResources>
K
kohsuke 已提交
55 56
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
57
            <manifest>
K
kohsuke 已提交
58 59
              <mainClass>Main</mainClass>
            </manifest>
60 61
            <manifestEntries>
              <Implementation-Version>${project.version}</Implementation-Version>
62
              <Hudson-Version>${project.version}</Hudson-Version>
63
              <Jenkins-Version>${project.version}</Jenkins-Version>
64
            </manifestEntries>
K
kohsuke 已提交
65
          </archive>
66
          <!--outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping-->
K
kohsuke 已提交
67 68
        </configuration>
      </plugin>
69 70 71 72 73 74 75 76 77 78 79 80 81 82
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <phase>generate-resources</phase>
            <goals>
              <goal>list</goal>
            </goals>
            <configuration>
              <outputFile>${basedir}/target/classes/dependencies.txt</outputFile>
            </configuration>
          </execution>
        </executions>
      </plugin>
K
kohsuke 已提交
83
      <plugin>
84 85
        <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
        <artifactId>maven-antrun-extended-plugin</artifactId>
K
kohsuke 已提交
86 87
        <executions>
          <execution>
88 89
            <id>package</id>
            <phase>package</phase>
K
kohsuke 已提交
90 91 92
            <goals>
              <goal>run</goal>
            </goals>
K
kohsuke 已提交
93
            <configuration>
94 95
              <tasks>
                <!-- deploy the war as a jar, so that the tests can pull this into the classpath -->
K
Kohsuke Kawaguchi 已提交
96
                <attachArtifact file="target/jenkins.war" classifier="war-for-test" type="jar" />
97
              </tasks>
K
kohsuke 已提交
98 99
            </configuration>
          </execution>
K
kohsuke 已提交
100
          <execution>
101
            <id>resgen</id>
K
kohsuke 已提交
102 103
            <phase>generate-resources</phase>
            <goals>
104
              <goal>run</goal>
K
kohsuke 已提交
105 106
            </goals>
            <configuration>
107
              <verifyArtifact>false</verifyArtifact>
108 109
              <tasks>
                <mkdir dir="target/generated-resources" />
110 111

                <!-- put executable war header -->
K
Kohsuke Kawaguchi 已提交
112
                <resolveArtifact groupId="org.jenkins-ci" artifactId="executable-war" version="1.18" type="jar" property="executable-war.jar" />
113 114
                <unjar src="${executable-war.jar}" dest="target/generated-resources">
                  <patternset>
115
                    <include name="**/*.class" />
116 117
                  </patternset>
                </unjar>
118 119

                <!-- dependencies that goes to unusual locations -->
120 121
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/remoting.jar" />
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/slave.jar" />
122
                <resolveArtifact groupId="${project.groupId}" artifactId="cli" classifier="jar-with-dependencies" version="${project.version}" type="jar" tofile="${basedir}/target/generated-resources/WEB-INF/jenkins-cli.jar" />
123
                <resolveArtifact groupId="org.jvnet.hudson.winstone" artifactId="winstone" version="0.9.10-hudson-24" type="jar" tofile="${basedir}/target/generated-resources/winstone.jar" />
S
Seiji Sogabe 已提交
124
                
125
                <!-- bundled plugins -->
K
kohsuke 已提交
126
                <resolveArtifact type="hpi" groupId="${project.groupId}" artifactId="maven-plugin" version="${project.version}" tofile="${basedir}/target/generated-resources/WEB-INF/plugins/maven-plugin.hpi" />
127 128
                <resolveArtifact type="hpi" groupId="org.jvnet.hudson.plugins" artifactId="ssh-slaves" version="0.14" tofile="${basedir}/target/generated-resources/WEB-INF/plugins/ssh-slaves.hpi" />
                <resolveArtifact type="hpi" groupId="org.jvnet.hudson.plugins" artifactId="subversion" version="1.20" tofile="${basedir}/target/generated-resources/WEB-INF/plugins/subversion.hpi" />
129
                <resolveArtifact type="hpi" groupId="org.jvnet.hudson.plugins" artifactId="cvs" version="1.2" tofile="${basedir}/target/generated-resources/WEB-INF/plugins/cvs.hpi" />
130
              </tasks>
K
kohsuke 已提交
131 132
            </configuration>
          </execution>
K
kohsuke 已提交
133 134 135
        </executions>
      </plugin>
      <plugin>
136 137
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
        <groupId>org.jvnet.hudson.tools</groupId>
138
        <artifactId>maven-hudson-dev-plugin</artifactId>
139
        <version>6.1.7-hudson-1</version>
K
kohsuke 已提交
140
        <configuration>
141
          <contextPath>${contextPath}</contextPath>
142 143 144 145 146
          <connectors>
            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
                <port>${port}</port>
            </connector>
          </connectors>
147 148 149 150 151
          <!--
            read directly from core module's output directory,
            so that changes are picked up right away without running mvn.
          -->
          <classesDirectory>../core/target/classes</classesDirectory>
152 153 154
          <!-- use the test classpath for loading resources, since this takes priority -->
          <testClassesDirectory>../core/src/main/resources</testClassesDirectory>
          <useTestClasspath>true</useTestClasspath>
155
          <!--
156
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
157
          -->
158
          <consoleForceReload>true</consoleForceReload>
159 160
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
161
              <name>default</name>
162
              <config>${basedir}/src/realm.properties</config>
163
            </userRealm>
164
          </userRealms>
K
kohsuke 已提交
165 166 167
          <systemProperties>
            <systemProperty>
              <name>HUDSON_HOME</name>
168
              <value>${HUDSON_HOME}</value>
K
kohsuke 已提交
169 170 171 172
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
173 174
              <value>true</value>
            </systemProperty>
175 176 177 178 179
            <systemProperty>
              <!-- show the stapler evaluation during execution -->
              <name>stapler.trace</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
180 181 182 183 184
            <systemProperty>
              <!-- always reload scripts during debugging -->
              <name>hudson.script.noCache</name>
              <value>true</value>
            </systemProperty>
185 186 187
            <systemProperty>
              <!-- load view resources from the source directly, again for real time change -->
              <name>stapler.resourcePath</name>
W
wjprakash 已提交
188 189 190 191 192
              <value>
                  ../core/src/main/resources;
                  ../ui-samples-plugin/src/main/resources;
                  ../maven-plugin/src/main/resources
              </value>
K
kohsuke 已提交
193
            </systemProperty>
194
            <systemProperty>
195
              <!-- enable the plugins in main by default -->
196
              <name>hudson.bundled.plugins</name>
W
wjprakash 已提交
197 198
              <value>
                  ${basedir}/../maven-plugin/target/test-classes/the.hpl,
K
kohsuke 已提交
199
                  ${basedir}/../ui-samples-plugin/target/test-classes/the.hpl
W
wjprakash 已提交
200
              </value>
201
            </systemProperty>
202 203 204 205 206
            <systemProperty>
              <!-- stat collection pointless -->
              <name>hudson.model.UsageStatistics.disabled</name>
              <value>true</value>
            </systemProperty>
207 208 209 210
            <systemProperty>
              <name>hudson.Main.development</name>
              <value>true</value>
            </systemProperty>
211 212 213 214 215
            <systemProperty>
              <!-- this adds 3 sec to the shutdown, and most likely pointless, too -->
              <name>hudson.DNSMultiCast.disabled</name>
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
216 217 218
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
219 220
    </plugins>
  </build>
K
kohsuke 已提交
221

K
kohsuke 已提交
222 223
  <dependencies>
    <dependency>
224
      <groupId>org.jenkins-ci.main</groupId>
K
Kohsuke Kawaguchi 已提交
225
      <artifactId>jenkins-core</artifactId>
226
      <version>${project.version}</version>
K
kohsuke 已提交
227
      <exclusions>
228 229 230
        <!--
          jars that are not needed in war. most of the exclusions should happen in the core, to make IDEs happy, not here.
        -->
K
kohsuke 已提交
231 232 233 234
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
235 236 237 238
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
239 240
      </exclusions>
    </dependency>
S
Seiji Sogabe 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
    <!-- 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>
      <version>${project.version}</version>
    </dependency>    
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>cli</artifactId>
      <classifier>jar-with-dependencies</classifier>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>
261 262 263 264 265 266 267 268
    <!-- 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-->
K
kohsuke 已提交
269
  </dependencies>
270 271 272
  
  <properties>
    <HUDSON_HOME>${basedir}/work</HUDSON_HOME>
273
    <contextPath>/</contextPath><!-- context path during test -->
274
    <port>8080</port><!-- HTTP listener port -->
275
  </properties>
276 277

  <profiles>
K
kohsuke 已提交
278
    <profile>
279
      <!-- profile for creating Jenkins IPS package -->
K
kohsuke 已提交
280 281 282 283 284 285
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
A
abayer 已提交
286
            <version>0.3</version>
K
kohsuke 已提交
287 288 289 290 291 292 293 294
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
295
              <python>python2.5</python>
K
kohsuke 已提交
296
              <proto>../ips/proto.py</proto>
297
              <attach>false</attach>
K
kohsuke 已提交
298 299 300 301 302
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
    <profile>
      <!-- sign war -->
      <id>sign</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
              <!-- sign the war -->
              <execution>
                <id>signWar</id>
                <phase>verify</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <configuration>
                  <tasks>
321 322 323 324 325 326
                    <!--
                      during the development, debug profile defined in ../pom.xml will cause
                      the jars to be signed by a self-certified dummy public key.

                      For release, you should define the real values in ~/.m2/settings.xml
                    -->
K
Kohsuke Kawaguchi 已提交
327
                    <signjar jar="target/jenkins.war" alias="${hudson.sign.alias}" keystore="${hudson.sign.keystore}" storepass="${hudson.sign.storepass}" />
328 329 330 331 332 333 334 335
                  </tasks>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
336
  </profiles>
337
</project>