2009-02-07 04:05:24 +08:00
|
|
|
<!--
|
|
|
|
|
The MIT License
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Daniel Dyer, Stephen Connolly
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
-->
|
|
|
|
|
|
2006-12-12 15:00:56 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.jvnet.hudson.main</groupId>
|
|
|
|
|
<artifactId>pom</artifactId>
|
2009-07-18 09:36:33 +08:00
|
|
|
<version>1.316</version>
|
2006-12-12 15:00:56 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>remoting</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
2006-12-17 09:09:08 +08:00
|
|
|
<name>Hudson remoting layer</name>
|
2009-03-06 03:22:27 +08:00
|
|
|
<description>
|
|
|
|
|
Contains the bootstrap code to bridge separate JVMs into a single semi-shared space.
|
|
|
|
|
Reusable outside Hudson.
|
|
|
|
|
</description>
|
2006-12-12 15:00:56 +08:00
|
|
|
|
2006-12-13 14:19:17 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!--
|
|
|
|
|
I haven't figured out how to run those tests from Maven
|
|
|
|
|
(the problem is that when I fork another process
|
|
|
|
|
I need to somehow compute the right classpath), so
|
|
|
|
|
excluded from Maven run for now.
|
|
|
|
|
-->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2006-12-30 03:15:53 +08:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<mainClass>hudson.remoting.Launcher</mainClass>
|
|
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
2007-02-11 06:30:24 +08:00
|
|
|
<executions>
|
2007-04-07 01:17:03 +08:00
|
|
|
<execution>
|
2007-02-11 06:30:24 +08:00
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!--
|
|
|
|
|
during the development, debug profile defined in ../pom.xml will cause
|
|
|
|
|
the jars to be signed by a self-certified dummy public key.
|
|
|
|
|
|
|
|
|
|
For release, you should define the real values in ~/.m2/settings.xml
|
|
|
|
|
-->
|
|
|
|
|
<alias>${hudson.sign.alias}</alias>
|
|
|
|
|
<storepass>${hudson.sign.storepass}</storepass>
|
|
|
|
|
<keystore>${hudson.sign.keystore}</keystore>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2006-12-30 03:15:53 +08:00
|
|
|
</plugin>
|
2008-09-18 03:51:56 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
|
|
|
|
|
<artifactId>maven-antrun-extended-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<!-- rejar args4j contents -->
|
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<tasks>
|
|
|
|
|
<resolveArtifact artifactId="args4j" property="args4j.jar" />
|
|
|
|
|
<unjar src="${args4j.jar}" dest="target/classes" />
|
|
|
|
|
</tasks>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2006-12-13 14:19:17 +08:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2006-12-12 15:00:56 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- test dependencies -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>3.8</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>asm</groupId>
|
|
|
|
|
<artifactId>asm-all</artifactId>
|
|
|
|
|
<version>2.2.3</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2008-09-18 03:51:56 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>args4j</groupId>
|
|
|
|
|
<artifactId>args4j</artifactId>
|
2009-04-18 04:35:21 +08:00
|
|
|
<version>2.0.13</version>
|
2008-09-18 03:51:56 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2006-12-12 15:00:56 +08:00
|
|
|
</dependencies>
|
2009-04-18 04:35:21 +08:00
|
|
|
</project>
|