dcrec1 / rspec-maven-plugin

Fork of http://svn.codehaus.org/mojo/trunk/sandbox/rspec-maven-plugin/

This URL has Read+Write access

dcrec1 (author)
Fri Mar 20 14:47:23 -0700 2009
commit  e00eaf8bbe86c783cc186b837e7b7c0bab6ce87d
tree    066a74f86e075b20b9fbd6cd6d75219fe32b3ede
parent  ebed6bd436183cc3e1ec7811d0d19684bc45113f
rspec-maven-plugin / pom.xml
100644 40 lines (39 sloc) 1.128 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<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.codehaus.mojo</groupId>
<artifactId>mojo</artifactId>
<version>12</version>
</parent>
<artifactId>rspec-maven-plugin</artifactId>
<name>RSpec Maven Plugin</name>
<packaging>maven-plugin</packaging>
<version>1.0-beta-9</version>
<contributors />
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>