-
Notifications
You must be signed in to change notification settings - Fork 0
/
grails-ant-0.1.2.pom
39 lines (39 loc) · 1.22 KB
/
grails-ant-0.1.2.pom
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
<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/xsd/maven-4.0.0.xsd'>
<modelVersion>4.0.0</modelVersion>
<groupId>org.grails.plugins</groupId>
<artifactId>grails-ant</artifactId>
<packaging>zip</packaging>
<version>0.1.2</version>
<name>Grails Ant Plugin</name>
<description>
Provides ant to Grails applications
</description>
<url>http://grails.org/plugin/grails-ant</url>
<developers>
<developer>
<name>Brad Rhoads</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>svn</artifactId>
<version>1.0.0.M1</version>
<type>zip</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>