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

                <!-- put executable war header -->
110
                <resolveArtifact groupId="org.jvnet.hudson" artifactId="executable-war" version="1.17" type="jar" property="executable-war.jar" />
111 112
                <unjar src="${executable-war.jar}" dest="target/generated-resources">
                  <patternset>
113
                    <include name="**/*.class" />
114 115
                  </patternset>
                </unjar>
116 117

                <!-- dependencies that goes to unusual locations -->
118 119
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/remoting.jar" />
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/slave.jar" />
K
kohsuke 已提交
120
                <resolveArtifact groupId="${project.groupId}" artifactId="cli" classifier="jar-with-dependencies" version="${project.version}" type="jar" tofile="${basedir}/target/generated-resources/WEB-INF/hudson-cli.jar" />
121
                <resolveArtifact groupId="org.jvnet.hudson.winstone" artifactId="winstone" version="0.9.10-hudson-22" type="jar" tofile="${basedir}/target/generated-resources/winstone.jar" />
122

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

K
kohsuke 已提交
209 210 211 212
  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
213
      <version>${project.version}</version>
K
kohsuke 已提交
214
      <exclusions>
215 216 217
        <!--
          jars that are not needed in war. most of the exclusions should happen in the core, to make IDEs happy, not here.
        -->
K
kohsuke 已提交
218 219 220 221
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
222 223 224 225
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
226 227
      </exclusions>
    </dependency>
228 229 230 231 232 233 234 235
    <!-- 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 已提交
236
  </dependencies>
237 238 239
  
  <properties>
    <HUDSON_HOME>${basedir}/work</HUDSON_HOME>
240
    <contextPath>/</contextPath><!-- context path during test -->
241
    <port>8080</port><!-- HTTP listener port -->
242
  </properties>
243 244

  <profiles>
K
kohsuke 已提交
245 246 247 248 249 250 251 252
    <profile>
      <!-- profile for creating Hudson IPS package -->
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
A
abayer 已提交
253
            <version>0.3</version>
K
kohsuke 已提交
254 255 256 257 258 259 260 261
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
262
              <python>python2.5</python>
K
kohsuke 已提交
263
              <proto>../ips/proto.py</proto>
264
              <attach>false</attach>
K
kohsuke 已提交
265 266 267 268 269
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    <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>
288 289 290 291 292 293
                    <!--
                      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
                    -->
294 295 296 297 298 299 300 301 302
                    <signjar jar="target/hudson.war" alias="${hudson.sign.alias}" keystore="${hudson.sign.keystore}" storepass="${hudson.sign.storepass}" />
                  </tasks>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
303
  </profiles>
304
</project>