pom.xml 10.0 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.81-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 26
  <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>
            </resource>
K
kohsuke 已提交
27 28 29
            <resource>
              <directory>${basedir}/target/generated-resources</directory>
            </resource>
K
kohsuke 已提交
30
          </webResources>
K
kohsuke 已提交
31 32 33 34 35 36
          <!-- for putting Main-Class into war -->
          <archive>
            <manifest>
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
K
kohsuke 已提交
37 38
        </configuration>
      </plugin>
K
kohsuke 已提交
39
      <plugin>
K
kohsuke 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
        <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 -->
                <javac srcdir="src/launcher/java" includes="Main.java" source="1.4" target="1.4"
                       destdir="target/generated-resources" fork="true" />
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
61 62
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>dependency-maven-plugin</artifactId>
K
kohsuke 已提交
63
        <executions>
K
kohsuke 已提交
64
          <!-- for copying remoting jar to $WAR/WEB-INF/slave.jar -->
K
kohsuke 已提交
65
          <execution>
K
kohsuke 已提交
66
            <id>copy-slave.jar</id>
K
kohsuke 已提交
67 68 69 70 71 72 73 74 75 76
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>org.jvnet.hudson.main</groupId>
                  <artifactId>remoting</artifactId>
                  <version>${version}</version>
77
                  <classifier>${hudsonRemotingClassifier}</classifier>
K
kohsuke 已提交
78 79 80 81 82 83
                  <destFileName>slave.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources/WEB-INF</outputDirectory>
            </configuration>
          </execution>
K
kohsuke 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
          <!-- 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 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
          <!-- for copying winstone.jar -->
          <execution>
            <id>copy-winstone.jar</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>winstone</groupId>
                  <artifactId>winstone</artifactId>
                  <version>0.9.6</version>
                  <destFileName>winstone.jar</destFileName>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${basedir}/target/generated-resources</outputDirectory>
            </configuration>
          </execution>
K
kohsuke 已提交
122 123 124
        </executions>
      </plugin>
      <plugin>
K
kohsuke 已提交
125 126
        <groupId>org.mortbay.jetty</groupId> 
        <artifactId>maven-jetty-plugin</artifactId>
127
        <version>6.1.1</version>
K
kohsuke 已提交
128 129
        <configuration>
          <contextPath>/</contextPath>
130 131 132 133 134
          <!--
            read directly from core module's output directory,
            so that changes are picked up right away without running mvn.
          -->
          <classesDirectory>../core/target/classes</classesDirectory>
135 136 137
          <!--
            enable automatic reloading when some files change.
          -->
K
kohsuke 已提交
138
          <!--scanIntervalSeconds>1</scanIntervalSeconds-->
139
          <webAppSourceDirectory>${basedir}/resources</webAppSourceDirectory>
140 141 142 143 144 145 146
          <!--realm for debug
          <userRealms>
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
              <name>hudsonRealm</name>
              <config>src/realm.properties</config>
            </userRealm>
          </userRealms>-->
K
kohsuke 已提交
147 148 149
          <systemProperties>
            <systemProperty>
              <name>HUDSON_HOME</name>
K
kohsuke 已提交
150
              <value>${basedir}/work</value>
K
kohsuke 已提交
151 152 153 154
            </systemProperty>
            <systemProperty>
              <!-- always reload views during debugging -->
              <name>stapler.jelly.noCache</name>
155 156
              <value>true</value>
            </systemProperty>
K
kohsuke 已提交
157 158 159 160 161
            <systemProperty>
              <!-- enable experimental Maven support during debugging -->
              <name>hudson.maven</name>
              <value>true</value>
            </systemProperty>
162 163 164 165
            <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 已提交
166 167 168 169
            </systemProperty>
          </systemProperties>
        </configuration>
      </plugin>
K
kohsuke 已提交
170 171 172
    </plugins>
  </build>
  
K
kohsuke 已提交
173 174 175 176 177 178 179
  <profiles>
    <profile>
      <id>debug</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
180
        <hudsonClassifier />
181
        <hudsonRemotingClassifier />
K
kohsuke 已提交
182 183 184 185 186 187
      </properties>
    </profile>
    <profile>
      <id>release</id>
      <properties>
        <hudsonClassifier>jdk14</hudsonClassifier>
188
        <hudsonRemotingClassifier>jdk14-jar-with-dependencies</hudsonRemotingClassifier>
K
kohsuke 已提交
189 190 191 192
      </properties>
    </profile>
  </profiles>

K
kohsuke 已提交
193
  <dependencies>
194 195 196 197
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>remoting</artifactId>
      <version>${version}</version>
K
kohsuke 已提交
198
      <classifier>${hudsonClassifier}</classifier>
199
    </dependency>
200 201 202 203
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>jnlp-agent</artifactId>
      <version>${version}</version>
K
kohsuke 已提交
204 205 206 207 208
      <!--
        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>
209
    </dependency>
K
kohsuke 已提交
210 211 212 213
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-core</artifactId>
      <version>${version}</version>
K
kohsuke 已提交
214
      <classifier>${hudsonClassifier}</classifier>
K
kohsuke 已提交
215
      <exclusions>
216
        <!-- jars that are not needed in war -->
K
kohsuke 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 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
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xalan</groupId>
          <artifactId>xalan</artifactId>
        </exclusion>
        <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>commons-jelly</groupId>
          <artifactId>commons-jelly-tags-junit</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>
285 286 287 288 289
        <!-- we want jdk14 version, but core depends on jdk1.5 version -->
        <exclusion>
          <groupId>org.jvnet.hudson.main</groupId>
          <artifactId>remoting</artifactId>
        </exclusion>
K
kohsuke 已提交
290 291 292 293
      </exclusions>
    </dependency>
  </dependencies>
</project>