pom.xml 11.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 27 28 29
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jvnet.hudson.main</groupId>
    <artifactId>pom</artifactId>
30
    <version>1.324-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 47
  
  <build>
    <directory>target</directory>
    <finalName>hudson</finalName>
    
    <plugins>
      <plugin>
48
	<groupId>org.apache.maven.plugins</groupId>
K
kohsuke 已提交
49 50 51 52 53
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
          <webResources>
            <resource>
              <directory>${basedir}/resources</directory>
54 55 56
              <!--excludes> not much size improvements
                <exclude>**/*-debug.js</exclude>
              </excludes-->
K
kohsuke 已提交
57
            </resource>
K
kohsuke 已提交
58 59 60
            <resource>
              <directory>${basedir}/target/generated-resources</directory>
            </resource>
K
kohsuke 已提交
61
          </webResources>
K
kohsuke 已提交
62 63
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
64
            <manifest>
K
kohsuke 已提交
65 66 67
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
K
kohsuke 已提交
68 69
        </configuration>
      </plugin>
K
kohsuke 已提交
70
      <plugin>
71 72
        <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
        <artifactId>maven-antrun-extended-plugin</artifactId>
K
kohsuke 已提交
73 74
        <executions>
          <execution>
75 76
            <id>package</id>
            <phase>package</phase>
K
kohsuke 已提交
77 78 79
            <goals>
              <goal>run</goal>
            </goals>
K
kohsuke 已提交
80
            <configuration>
81 82 83 84
              <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 已提交
85 86
            </configuration>
          </execution>
K
kohsuke 已提交
87
          <execution>
88
            <id>resgen</id>
K
kohsuke 已提交
89 90
            <phase>generate-resources</phase>
            <goals>
91
              <goal>run</goal>
K
kohsuke 已提交
92 93
            </goals>
            <configuration>
94
              <verifyArtifact>false</verifyArtifact>
95 96
              <tasks>
                <mkdir dir="target/generated-resources" />
97 98

                <!-- put executable war header -->
99
                <resolveArtifact groupId="org.jvnet.hudson" artifactId="executable-war" version="1.12" type="jar" property="executable-war.jar" />
100 101
                <unjar src="${executable-war.jar}" dest="target/generated-resources">
                  <patternset>
102
                    <include name="**/*.class" />
103 104
                  </patternset>
                </unjar>
105 106

                <!-- dependencies that goes to unusual locations -->
107 108
                <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 已提交
109
                <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" />
110
                <resolveArtifact groupId="org.jvnet.hudson.winstone" artifactId="winstone" version="0.9.10-hudson-12" type="jar" tofile="${basedir}/target/generated-resources/winstone.jar" />
111

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

K
kohsuke 已提交
193 194 195 196
  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
197
      <version>${project.version}</version>
K
kohsuke 已提交
198
      <exclusions>
199 200 201
        <!--
          jars that are not needed in war. most of the exclusions should happen in the core, to make IDEs happy, not here.
        -->
K
kohsuke 已提交
202 203 204 205
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
206 207 208 209
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
210 211
      </exclusions>
    </dependency>
212 213 214 215 216 217 218 219
    <!-- 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 已提交
220
  </dependencies>
221 222 223
  
  <properties>
    <HUDSON_HOME>${basedir}/work</HUDSON_HOME>
224
    <contextPath>/</contextPath><!-- context path during test -->
225
    <port>8080</port><!-- HTTP listener port -->
226
  </properties>
227

K
kohsuke 已提交
228 229 230 231 232 233 234 235 236 237 238
  <pluginRepositories>
    <pluginRepository>
      <id>java.net2</id>
      <url>http://download.java.net/maven/2</url>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
    </pluginRepository>
  </pluginRepositories>

239
  <profiles>
K
kohsuke 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
    <profile>
      <!-- profile for creating Hudson IPS package -->
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
K
kohsuke 已提交
256
              <python>python2.5</python>
K
kohsuke 已提交
257
              <proto>../ips/proto.py</proto>
258
              <attach>false</attach>
K
kohsuke 已提交
259 260 261 262 263
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    <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>
282 283 284 285 286 287
                    <!--
                      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
                    -->
288 289 290 291 292 293 294 295 296
                    <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>
297
  </profiles>
298
</project>