2006-11-07 03:53:54 +08:00
|
|
|
<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">
|
2006-11-06 07:05:33 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jvnet.hudson.main</groupId>
|
|
|
|
<artifactId>pom</artifactId>
|
2006-11-07 04:00:13 +08:00
|
|
|
<version>1.60-SNAPSHOT</version>
|
2006-11-06 07:05:33 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hudson-core</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Hudson core</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antlr-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>${basedir}/src/main/grammar</sourceDirectory>
|
|
|
|
<grammars>crontab.g</grammars>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>generate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2006-11-07 03:53:54 +08:00
|
|
|
<property name="build.version" value="${version}" /><!-- default to release version -->
|
2006-11-06 07:05:33 +08:00
|
|
|
<!-- put the version file -->
|
|
|
|
<echo message="The build id is: ${build.version}" />
|
2006-11-07 03:53:54 +08:00
|
|
|
<mkdir dir="target/classes/hudson" />
|
|
|
|
<echo file="target/classes/hudson/hudson-version.properties">version=${build.version}
|
2006-11-06 07:05:33 +08:00
|
|
|
</echo>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-11-06 08:31:48 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<!-- allow retrotranslator to be disabled with -->
|
|
|
|
<profile>
|
|
|
|
<id>debug</id>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>retrotranslator</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>retrotranslator-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>translate</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>
|
|
|
|
<directory>target/classes</directory>
|
|
|
|
</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2006-11-06 07:05:33 +08:00
|
|
|
<dependencies>
|
2006-11-06 07:50:58 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.retrotranslator</groupId>
|
|
|
|
<artifactId>retrotranslator-runtime</artifactId>
|
|
|
|
<version>1.0.8</version>
|
|
|
|
</dependency>
|
2006-11-06 07:05:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.kohsuke.stapler</groupId>
|
|
|
|
<artifactId>stapler</artifactId>
|
2006-11-07 03:51:14 +08:00
|
|
|
<version>1.9</version>
|
2006-11-06 07:05:33 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>antlr</groupId>
|
|
|
|
<artifactId>antlr</artifactId>
|
|
|
|
<version>2.7.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
<version>1.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant-junit</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-digester</groupId>
|
|
|
|
<artifactId>commons-digester</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency><!-- is this Java 1.4 compatible? -->
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
<version>1.6.1</version>
|
|
|
|
</dependency>
|
2006-11-07 13:29:10 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
<version>1.1-beta-11</version>
|
|
|
|
</dependency>
|
2006-11-06 07:05:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
<artifactId>commons-jelly-tags-fmt</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
<artifactId>commons-jelly-tags-xml</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
<artifactId>commons-jelly-tags-define</artifactId>
|
2006-11-07 03:51:14 +08:00
|
|
|
<version>1.0.1-hudson-20061106</version>
|
2006-11-06 07:05:33 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jexl</groupId>
|
|
|
|
<artifactId>commons-jexl</artifactId>
|
2006-11-07 03:51:14 +08:00
|
|
|
<version>1.1-hudson-20061106</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
<artifactId>commons-jelly</artifactId>
|
|
|
|
<version>1.1-hudson-20061106</version>
|
2006-11-06 07:05:33 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>groovy</groupId>
|
2006-11-07 12:56:44 +08:00
|
|
|
<artifactId>groovy-all-1.0-jsr</artifactId>
|
2006-11-06 07:05:33 +08:00
|
|
|
<version>06</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
|
|
|
<version>1.1.3.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|