2009-02-07 04:05:24 +08:00
|
|
|
<!--
|
|
|
|
|
The MIT License
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, 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.
|
|
|
|
|
-->
|
|
|
|
|
|
2007-03-01 01:22:20 +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-08-01 09:18:06 +08:00
|
|
|
<version>1.318</version>
|
2007-03-01 01:22:20 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>maven-interceptor</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>Hudson Maven PluginManager interceptor</name>
|
2009-03-06 03:22:27 +08:00
|
|
|
<description>
|
|
|
|
|
Plexus module that intercepts invocations of key Maven components
|
|
|
|
|
so that Hudson can monitor what's going on in Maven.
|
|
|
|
|
</description>
|
2007-03-01 01:22:20 +08:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
|
<artifactId>maven-core</artifactId>
|
2007-09-26 05:24:29 +08:00
|
|
|
<version>${maven.version}</version>
|
2007-03-01 01:22:20 +08:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2009-07-29 07:52:49 +08:00
|
|
|
</project>
|