pom.xml 10.6 KB
Newer Older
1
<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 已提交
2 3 4 5
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jvnet.hudson.main</groupId>
    <artifactId>pom</artifactId>
6
    <version>1.282-SNAPSHOT</version>
K
kohsuke 已提交
7 8 9
    <relativePath>../pom.xml</relativePath>
  </parent>
  
K
kohsuke 已提交
10
  <artifactId>hudson-war</artifactId>
K
kohsuke 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
  <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>
26 27 28
              <!--excludes> not much size improvements
                <exclude>**/*-debug.js</exclude>
              </excludes-->
K
kohsuke 已提交
29
            </resource>
K
kohsuke 已提交
30 31 32
            <resource>
              <directory>${basedir}/target/generated-resources</directory>
            </resource>
K
kohsuke 已提交
33
          </webResources>
K
kohsuke 已提交
34 35
          <!-- for putting Main-Class into war -->
          <archive>
36
            <manifest>e
K
kohsuke 已提交
37 38 39
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
K
kohsuke 已提交
40 41
        </configuration>
      </plugin>
K
kohsuke 已提交
42
      <plugin>
43 44
        <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
        <artifactId>maven-antrun-extended-plugin</artifactId>
45
	<version>1.36</version>
K
kohsuke 已提交
46 47
        <executions>
          <execution>
48 49
            <id>package</id>
            <phase>package</phase>
K
kohsuke 已提交
50 51 52
            <goals>
              <goal>run</goal>
            </goals>
K
kohsuke 已提交
53
            <configuration>
54 55 56 57
              <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 已提交
58 59
            </configuration>
          </execution>
K
kohsuke 已提交
60
          <execution>
61
            <id>resgen</id>
K
kohsuke 已提交
62 63
            <phase>generate-resources</phase>
            <goals>
64
              <goal>run</goal>
K
kohsuke 已提交
65 66
            </goals>
            <configuration>
67 68
              <tasks>
                <mkdir dir="target/generated-resources" />
69 70

                <!-- put executable war header -->
71
                <resolveArtifact artifactId="executable-war" property="executable-war.jar" />
72 73
                <unjar src="${executable-war.jar}" dest="target/generated-resources">
                  <patternset>
74
                    <include name="**/*.class" />
75 76
                  </patternset>
                </unjar>
77 78

                <!-- dependencies that goes to unusual locations -->
79 80 81
                <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" />
82
              </tasks>
K
kohsuke 已提交
83 84
            </configuration>
          </execution>
K
kohsuke 已提交
85 86 87
        </executions>
      </plugin>
      <plugin>
88 89
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
        <groupId>org.jvnet.hudson.tools</groupId>
90
        <artifactId>maven-hudson-dev-plugin</artifactId>
91
        <version>6.1.7</version>
K
kohsuke 已提交
92
        <configuration>
93
          <contextPath>${contextPath}</contextPath>
94 95 96 97 98
          <!--
            read directly from core module's output directory,
            so that changes are picked up right away without running mvn.
          -->
          <classesDirectory>../core/target/classes</classesDirectory>
99 100 101
          <!-- use the test classpath for loading resources, since this takes priority -->
          <testClassesDirectory>../core/src/main/resources</testClassesDirectory>
          <useTestClasspath>true</useTestClasspath>
102
          <!--
103
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
104
          -->
105
          <consoleForceReload>true</consoleForceReload>
106
          <webAppSourceDirectory>${basedir}/resources</webAppSourceDirectory>
107 108
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
109
              <name>default</name>
110
              <config>${basedir}/src/realm.properties</config>
111
            </userRealm>
112
          </userRealms>
K
kohsuke 已提交
113 114 115
          <systemProperties>
            <systemProperty>
              <name>HUDSON_HOME</name>
116
              <value>${HUDSON_HOME}</value>
K
kohsuke 已提交
117 118 119 120
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
121 122 123 124 125 126
              <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 已提交
127 128 129 130
            </systemProperty>
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
131 132
    </plugins>
  </build>
K
kohsuke 已提交
133

K
kohsuke 已提交
134 135 136 137
  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
138
      <version>${project.version}</version>
K
kohsuke 已提交
139
      <exclusions>
140
        <!-- jars that are not needed in war -->
K
kohsuke 已提交
141 142 143 144
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
145
        <exclusion>
K
kohsuke 已提交
146 147
          <groupId>xalan</groupId>
          <artifactId>xalan</artifactId>
148
        </exclusion>
149 150 151 152
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xercesImpl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xmlParserAPIs</artifactId>
        </exclusion>
        <exclusion>
          <groupId>msv</groupId>
          <artifactId>xsdlib</artifactId>
        </exclusion>
        <exclusion>
          <groupId>msv</groupId>
          <artifactId>relaxngDatatype</artifactId>
        </exclusion>
        <exclusion>
          <groupId>forehead</groupId>
          <artifactId>forehead</artifactId>
        </exclusion>
        <exclusion>
          <groupId>jdom</groupId>
          <artifactId>jdom</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xom</groupId>
          <artifactId>xom</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-cli</groupId>
          <artifactId>commons-cli</artifactId>
        </exclusion>
        <exclusion>
          <groupId>jaxme</groupId>
          <artifactId>jaxme-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
        <exclusion>
          <groupId>pull-parser</groupId>
          <artifactId>pull-parser</artifactId>
        </exclusion>
K
kohsuke 已提交
201 202 203 204 205
        <!-- don't know where this is coming from -->
        <exclusion>
          <groupId>dom4j</groupId>
          <artifactId>dom4j</artifactId>
        </exclusion>
K
kohsuke 已提交
206 207
      </exclusions>
    </dependency>
208 209 210 211 212 213 214
    <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>
215
      <version>1.4</version>
216 217
      <scope>provided</scope>
    </dependency>
218 219 220
    <dependency>
      <!--
        this dependency is just so that we can put winstone.jar in the war.
221
        marking it provided so that this won't show up in WEB-INF/lib
222 223 224
      -->
      <groupId>org.jvnet.hudson.winstone</groupId>
      <artifactId>winstone</artifactId>
225
      <version>0.9.10-hudson-7</version>
226 227
      <scope>provided</scope>
    </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
  </properties>
242

K
kohsuke 已提交
243 244 245 246 247 248 249 250 251 252 253
  <pluginRepositories>
    <pluginRepository>
      <id>java.net2</id>
      <url>http://download.java.net/maven/2</url>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
    </pluginRepository>
  </pluginRepositories>

254
  <profiles>
K
kohsuke 已提交
255 256 257 258 259 260 261 262
    <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 已提交
263
            <version>0.3</version>
K
kohsuke 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276 277
            <executions>
              <execution>
                <goals>
                  <goal>package</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <proto>../ips/proto.py</proto>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
    <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>
296 297 298 299 300 301
                    <!--
                      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
                    -->
302 303 304 305 306 307 308 309 310
                    <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>
311
  </profiles>
K
kohsuke 已提交
312
</project>