pom.xml 14.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.239-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 36 37 38 39
          <!-- for putting Main-Class into war -->
          <archive>
            <manifest>
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
K
kohsuke 已提交
40 41
        </configuration>
      </plugin>
K
kohsuke 已提交
42
      <plugin>
K
kohsuke 已提交
43 44 45 46 47 48 49 50 51 52
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <!-- compile src/launcher/java/Main.java into hudson.war -->
          <execution>
            <phase>generate-resources</phase>
            <configuration>
              <tasks>
                <mkdir dir="target/generated-resources" />
                <!-- needs to be forked because Maven doesn't seem to put tools.jar in classpath -->
53
                <javac srcdir="src/launcher/java" includes="*.java" source="1.4" target="1.4" destdir="target/generated-resources" fork="true" debug="on" />
K
kohsuke 已提交
54 55 56 57 58 59
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
60 61 62 63 64 65 66 67 68 69 70 71 72 73
          <!-- sign the war -->
          <execution>
            <id>signWar</id>
            <phase>verify</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <!-- see ../jnlp-agent/pom.xml for details -->
                <signjar jar="target/hudson.war" alias="${hudson.sign.alias}" keystore="${hudson.sign.keystore}" storepass="${hudson.sign.storepass}" />
              </tasks>
            </configuration>
          </execution>
K
kohsuke 已提交
74 75 76
        </executions>
      </plugin>
      <plugin>
77 78
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>dependency-maven-plugin</artifactId>
K
kohsuke 已提交
79
        <executions>
K
kohsuke 已提交
80
          <!-- for copying remoting jar to $WAR/WEB-INF/slave.jar -->
K
kohsuke 已提交
81
          <execution>
K
kohsuke 已提交
82
            <id>copy-slave.jar</id>
K
kohsuke 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>org.jvnet.hudson.main</groupId>
                  <artifactId>remoting</artifactId>
                  <version>${version}</version>
                  <destFileName>slave.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources/WEB-INF</outputDirectory>
            </configuration>
          </execution>
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
          <!--
            for copying remoting jar to $WAR/WEB-INF/remoting.jar
          -->
          <execution>
            <id>copy-remoting.jar</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>org.jvnet.hudson.main</groupId>
                  <artifactId>remoting</artifactId>
                  <version>${version}</version>
                  <destFileName>remoting.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources/WEB-INF</outputDirectory>
            </configuration>
          </execution>
K
kohsuke 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
          <!-- for copying remoting jar to $WAR/WEB-INF/jnlp-agent.jar -->
          <execution>
            <id>copy-jnlp-agent.jar</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>org.jvnet.hudson.main</groupId>
                  <artifactId>jnlp-agent</artifactId>
                  <version>${version}</version>
                  <destFileName>jnlp-agent.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources/WEB-INF</outputDirectory>
            </configuration>
          </execution>
K
kohsuke 已提交
139 140 141 142 143 144 145 146 147 148
          <!-- for copying winstone.jar -->
          <execution>
            <id>copy-winstone.jar</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
K
kohsuke 已提交
149
                  <groupId>org.jvnet.hudson.winstone</groupId>
K
kohsuke 已提交
150
                  <artifactId>winstone</artifactId>
151
                  <version>0.9.10-hudson-6</version>
K
kohsuke 已提交
152 153 154 155 156 157
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources</outputDirectory>
            </configuration>
          </execution>
K
kohsuke 已提交
158 159 160
        </executions>
      </plugin>
      <plugin>
161 162 163
        <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
        <groupId>org.jvnet.hudson.tools</groupId>
        <artifactId>maven-hudson-plugin</artifactId>
164
        <version>6.1.7</version>
K
kohsuke 已提交
165 166
        <configuration>
          <contextPath>/</contextPath>
167 168 169 170 171
          <!--
            read directly from core module's output directory,
            so that changes are picked up right away without running mvn.
          -->
          <classesDirectory>../core/target/classes</classesDirectory>
172 173 174
          <!-- use the test classpath for loading resources, since this takes priority -->
          <testClassesDirectory>../core/src/main/resources</testClassesDirectory>
          <useTestClasspath>true</useTestClasspath>
175
          <!--
176
            Reload webapp when you hit ENTER. (See JETTY-282 for more)
177
          -->
178
          <consoleForceReload>true</consoleForceReload>
179
          <webAppSourceDirectory>${basedir}/resources</webAppSourceDirectory>
180 181
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
182
              <name>default</name>
183
              <config>${basedir}/src/realm.properties</config>
184
            </userRealm>
185
          </userRealms>
K
kohsuke 已提交
186 187 188
          <systemProperties>
            <systemProperty>
              <name>HUDSON_HOME</name>
189
              <value>${HUDSON_HOME}</value>
K
kohsuke 已提交
190 191 192 193
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
194 195 196 197 198 199
              <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 已提交
200 201 202 203
            </systemProperty>
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
204 205
    </plugins>
  </build>
K
kohsuke 已提交
206

K
kohsuke 已提交
207
  <dependencies>
208 209 210
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>jnlp-agent</artifactId>
211
      <version>${project.version}</version>
K
kohsuke 已提交
212 213 214 215 216
      <!--
        not really a test scope, but we use dependency-maven-plugin to copy this jar,
        so we don't want this to be bundled in war by maven-war-plugin.
      -->
      <scope>test</scope>
217
    </dependency>
K
kohsuke 已提交
218 219 220
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
221
      <version>${project.version}</version>
K
kohsuke 已提交
222
      <exclusions>
223
        <!-- jars that are not needed in war -->
K
kohsuke 已提交
224 225 226 227
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
228
        <exclusion>
K
kohsuke 已提交
229 230
          <groupId>xalan</groupId>
          <artifactId>xalan</artifactId>
231
        </exclusion>
232 233 234 235
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>jsp-api</artifactId>
        </exclusion>
K
kohsuke 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
        <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>commons-discovery</groupId>
          <artifactId>commons-discovery</artifactId>
        </exclusion>
        <exclusion>
          <groupId>jaxme</groupId>
          <artifactId>jaxme-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
        <exclusion>
          <groupId>stax</groupId>
          <artifactId>stax-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>pull-parser</groupId>
          <artifactId>pull-parser</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
295 296 297 298
  
  <properties>
    <HUDSON_HOME>${basedir}/work</HUDSON_HOME>
  </properties>
299

K
kohsuke 已提交
300 301 302 303 304 305 306 307 308 309 310
  <pluginRepositories>
    <pluginRepository>
      <id>java.net2</id>
      <url>http://download.java.net/maven/2</url>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
    </pluginRepository>
  </pluginRepositories>

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
  <profiles>
    <profile>
      <id>hudson-libs-local</id>
      <!-- if we have the libs checked out of CVS, use them directly -->
      <activation>
        <file>
          <exists>main/lib</exists>
        </file>
      </activation>
      <repositories>
        <!-- checking the file system is fastest of all -->
        <repository>
          <id>hudson-libs</id>
          <url>file:main/lib</url>
          <layout>legacy</layout>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <!-- put central second to speed majority artifact resolution -->
        <repository>
          <id>central</id>
          <url>http://repo1.maven.org/maven2</url>
          <releases>
            <enabled>true</enabled>
            <!-- only look for jars here when they are not present locally -->
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <!-- last, but not least -->
        <repository>
          <id>java.net2</id>
          <url>http://download.java.net/maven/2</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    </profile>
    <profile>
      <id>hudson-libs-remote</id>
      <!-- otherwise, we'll have to use the slower route -->
      <activation>
        <file>
          <missing>main/lib</missing>
        </file>
      </activation>
      <repositories>
        <!-- put central first to speed majority artifact resolution -->
        <repository>
          <id>central</id>
          <url>http://repo1.maven.org/maven2</url>
          <releases>
            <enabled>true</enabled>
            <!-- only look for jars here when they are not present locally -->
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <!-- put java.net2 second, as it's faster than the https CVS access -->
        <repository>
          <id>java.net2</id>
          <url>http://download.java.net/maven/2/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <!-- put hudson-libs last as it is the slowest to access -->
        <repository>
          <id>hudson-libs</id>
          <url>https://hudson.dev.java.net/source/browse/*checkout*/hudson/hudson/main/lib</url>
          <layout>legacy</layout>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    </profile>
K
kohsuke 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
    <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>
              <proto>../ips/proto.py</proto>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
432
  </profiles>
K
kohsuke 已提交
433
</project>