pom.xml 1.9 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 6 7 8 9 10 11
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jvnet.hudson</groupId>
    <artifactId>hudson</artifactId>
    <version>1.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  
  <groupId>org.jvnet.hudson.main</groupId>
  <artifactId>pom</artifactId>
12
  <version>1.68-SNAPSHOT</version>
K
kohsuke 已提交
13 14 15 16 17 18
  <packaging>pom</packaging>
  
  <name>Hudson main module</name>
  <description>The module that constitutes the main hudson.war</description>
  
  <modules>
19
    <!--module>remoting</module-->
K
kohsuke 已提交
20 21 22
    <module>core</module>
    <module>war</module>
  </modules>
23
  
24 25
  <scm>
    <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:hudson/hudson/main</connection>
26
    <developerConnection>scm:cvs:pserver:kohsuke@cvs.dev.java.net:/cvs:hudson/hudson/main</developerConnection>
27 28 29
    <url>https://hudson.dev.java.net/source/browse/hudson/hudson/main</url>
  </scm>
  
30 31 32 33 34 35 36
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <!-- enable release profile during the release -->
          <prepareVerifyArgs>-P release</prepareVerifyArgs>
37 38 39 40 41 42 43 44 45 46 47 48 49 50
          <!--
            also run assembly during the release.
            http://www.nabble.com/Release-Plugin%3A-Include-assemblies-for-deploying-tf2642295s177.html#a7377938
           -->
          <goals>install assembly:attached deploy</goals>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <finalName>hudson-${version}</finalName>
          <descriptors>
            <descriptor>assembly-src.xml</descriptor>
          </descriptors>
51 52 53 54
        </configuration>
      </plugin>
    </plugins>
  </build>
55
  
K
kohsuke 已提交
56
</project>