]> source.dussan.org Git - archiva.git/blob
b1cc6cb968de68fd3ae968ea88d8294638d6318f
[archiva.git] /
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3   <parent>
4     <groupId>org.jruby</groupId>
5     <artifactId>shared</artifactId>
6     <version>1.0RC1-SNAPSHOT</version>
7     <relativePath>../../pom.xml</relativePath>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.jruby.plugins</groupId>
11   <artifactId>jruby-rake-plugin</artifactId>
12   <packaging>maven-plugin</packaging>
13   <version>1.0RC1-SNAPSHOT</version>
14   <name>JRuby Rake Plugin</name>
15   <dependencies>
16     <dependency>
17       <groupId>org.apache.maven</groupId>
18       <artifactId>maven-plugin-api</artifactId>
19       <version>2.0.4</version>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.maven</groupId>
23       <artifactId>maven-project</artifactId>
24       <version>2.0.4</version>
25     </dependency>
26     <dependency>
27       <groupId>ant</groupId>
28       <artifactId>ant</artifactId>
29       <version>1.6.2</version>
30     </dependency>
31     <dependency>
32       <groupId>org.jruby</groupId>
33       <artifactId>jruby-complete</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <plugins>
40       <plugin>
41         <artifactId>maven-plugin-plugin</artifactId>
42         <configuration>
43           <!-- Note: This is to allow typing "mvn jruby-rake:[goalname]" without having to type the -->
44           <!-- fully qualified name on the command line -->
45           <goalPrefix>jruby-rake</goalPrefix>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50 </project>