pom.xml 2.3 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.85-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
    <module>core</module>
K
kohsuke 已提交
21
    <module>jnlp-agent</module>
K
kohsuke 已提交
22 23
    <module>war</module>
  </modules>
24
  
25 26
  <scm>
    <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:hudson/hudson/main</connection>
27
    <developerConnection>scm:cvs:pserver:kohsuke@cvs.dev.java.net:/cvs:hudson/hudson/main</developerConnection>
28 29 30
    <url>https://hudson.dev.java.net/source/browse/hudson/hudson/main</url>
  </scm>
  
31 32 33 34 35 36 37
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <!-- enable release profile during the release -->
          <prepareVerifyArgs>-P release</prepareVerifyArgs>
38 39 40 41 42 43 44 45 46 47 48 49 50 51
          <!--
            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>
52 53 54 55
        </configuration>
      </plugin>
    </plugins>
  </build>
56 57 58 59 60 61 62 63 64 65 66 67 68 69

  <profiles>
    <profile>
      <id>debug</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <hudson.sign.alias>hudson</hudson.sign.alias>
        <hudson.sign.keystore>../dummy.keystore</hudson.sign.keystore>
        <hudson.sign.storepass>hudson</hudson.sign.storepass>
      </properties>
    </profile>
  </profiles>
K
kohsuke 已提交
70
</project>