pom.xml 10.1 KB
Newer Older
K
kohsuke 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!--
The MIT License

Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Stephen Connolly, Tom Huybrechts

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.289</version>
K
kohsuke 已提交
31 32 33
    <relativePath>../pom.xml</relativePath>
  </parent>
  
K
kohsuke 已提交
34
  <artifactId>hudson-war</artifactId>
K
kohsuke 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  <packaging>war</packaging>
  <name>Hudson war</name>
  
  <build>
    <directory>target</directory>
    <finalName>hudson</finalName>
    
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.0</version>
        <configuration>
          <webResources>
            <resource>
              <directory>${basedir}/resources</directory>
50 51 52
              <!--excludes> not much size improvements
                <exclude>**/*-debug.js</exclude>
              </excludes-->
K
kohsuke 已提交
53
            </resource>
K
kohsuke 已提交
54 55 56
            <resource>
              <directory>${basedir}/target/generated-resources</directory>
            </resource>
K
kohsuke 已提交
57
          </webResources>
K
kohsuke 已提交
58 59
          <!-- for putting Main-Class into war -->
          <archive>
J
jglick 已提交
60
            <manifest>
K
kohsuke 已提交
61 62 63
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
K
kohsuke 已提交
64 65
        </configuration>
      </plugin>
K
kohsuke 已提交
66
      <plugin>
67 68
        <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
        <artifactId>maven-antrun-extended-plugin</artifactId>
K
TAB->WS  
kohsuke 已提交
69
        <version>1.36</version>
K
kohsuke 已提交
70 71
        <executions>
          <execution>
72 73
            <id>package</id>
            <phase>package</phase>
K
kohsuke 已提交
74 75 76
            <goals>
              <goal>run</goal>
            </goals>
K
kohsuke 已提交
77
            <configuration>
78 79 80 81
              <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 已提交
82 83
            </configuration>
          </execution>
K
kohsuke 已提交
84
          <execution>
85
            <id>resgen</id>
K
kohsuke 已提交
86 87
            <phase>generate-resources</phase>
            <goals>
88
              <goal>run</goal>
K
kohsuke 已提交
89 90
            </goals>
            <configuration>
91 92
              <tasks>
                <mkdir dir="target/generated-resources" />
93 94

                <!-- put executable war header -->
95
                <resolveArtifact artifactId="executable-war" property="executable-war.jar" />
96 97
                <unjar src="${executable-war.jar}" dest="target/generated-resources">
                  <patternset>
98
                    <include name="**/*.class" />
99 100
                  </patternset>
                </unjar>
101 102

                <!-- dependencies that goes to unusual locations -->
103 104 105
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/remoting.jar" />
                <resolveArtifact artifactId="remoting" tofile="${basedir}/target/generated-resources/WEB-INF/slave.jar" />
                <resolveArtifact artifactId="winstone" tofile="${basedir}/target/generated-resources/winstone.jar" />
106
              </tasks>
K
kohsuke 已提交
107 108
            </configuration>
          </execution>
K
kohsuke 已提交
109 110 111
        </executions>
      </plugin>
      <plugin>
112 113
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
        <groupId>org.jvnet.hudson.tools</groupId>
114
        <artifactId>maven-hudson-dev-plugin</artifactId>
115
        <version>6.1.7</version>
K
kohsuke 已提交
116
        <configuration>
117
          <contextPath>${contextPath}</contextPath>
118 119 120 121 122
          <!--
            read directly from core module's output directory,
            so that changes are picked up right away without running mvn.
          -->
          <classesDirectory>../core/target/classes</classesDirectory>
123 124 125
          <!-- use the test classpath for loading resources, since this takes priority -->
          <testClassesDirectory>../core/src/main/resources</testClassesDirectory>
          <useTestClasspath>true</useTestClasspath>
126
          <!--
127
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
128
          -->
129
          <consoleForceReload>true</consoleForceReload>
130
          <webAppSourceDirectory>${basedir}/resources</webAppSourceDirectory>
131 132
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
133
              <name>default</name>
134
              <config>${basedir}/src/realm.properties</config>
135
            </userRealm>
136
          </userRealms>
K
kohsuke 已提交
137 138 139
          <systemProperties>
            <systemProperty>
              <name>HUDSON_HOME</name>
140
              <value>${HUDSON_HOME}</value>
K
kohsuke 已提交
141 142 143 144
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
145 146 147 148 149 150
              <value>true</value>
            </systemProperty>
            <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 已提交
151 152 153 154
            </systemProperty>
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
155 156
    </plugins>
  </build>
K
kohsuke 已提交
157

K
kohsuke 已提交
158 159 160 161
  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
162
      <version>${project.version}</version>
K
kohsuke 已提交
163
      <exclusions>
164 165 166
        <!--
          jars that are not needed in war. most of the exclusions should happen in the core, to make IDEs happy, not here.
        -->
K
kohsuke 已提交
167 168 169 170
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
171 172 173 174
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
175 176
      </exclusions>
    </dependency>
177 178 179 180 181 182 183
    <dependency>
      <!--
        classes in this jar will be rebundled into the war.
        marking it provided so that this won't show up in WEB-INF/lib
      -->
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>executable-war</artifactId>
J
jglick 已提交
184
      <version>1.8</version>
185 186
      <scope>provided</scope>
    </dependency>
187 188 189
    <dependency>
      <!--
        this dependency is just so that we can put winstone.jar in the war.
190
        marking it provided so that this won't show up in WEB-INF/lib
191 192 193
      -->
      <groupId>org.jvnet.hudson.winstone</groupId>
      <artifactId>winstone</artifactId>
194
      <version>0.9.10-hudson-9</version>
195 196
      <scope>provided</scope>
    </dependency>
197 198 199 200 201 202 203 204
    <!-- 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 已提交
205
  </dependencies>
206 207 208
  
  <properties>
    <HUDSON_HOME>${basedir}/work</HUDSON_HOME>
209
    <contextPath>/</contextPath><!-- context path during test -->
210
  </properties>
211

K
kohsuke 已提交
212 213 214 215 216 217 218 219 220 221 222
  <pluginRepositories>
    <pluginRepository>
      <id>java.net2</id>
      <url>http://download.java.net/maven/2</url>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
    </pluginRepository>
  </pluginRepositories>

223
  <profiles>
K
kohsuke 已提交
224 225 226 227 228 229 230 231
    <profile>
      <!-- profile for creating Hudson IPS package -->
      <id>ips</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.updatecenter2</groupId>
            <artifactId>maven-makepkgs-plugin</artifactId>
K
kohsuke 已提交
232
            <version>0.3</version>
K
kohsuke 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <proto>../ips/proto.py</proto>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    <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>
265 266 267 268 269 270
                    <!--
                      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
                    -->
271 272 273 274 275 276 277 278 279
                    <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>
280
  </profiles>
281
</project>