Merge branch 'local_grails'
[grails.git] / maven / grails-core.pom
blob357f1d5e3bdb1e5c87c73e6bfe56b65b99f7f40b
1 <?xml version="1.0"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.grails</groupId>
5 <artifactId>grails-core</artifactId>
6 <packaging>jar</packaging>
7 <name>Grails Core</name>
8 <version>0.6</version>
9 <description>Grails Core</description>
10 <url>http://www.grails.org</url>
11 <licenses>
12 <license>
13 <name>The Apache Software License, Version 2.0</name>
14 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15 <distribution>repo</distribution>
16 </license>
17 </licenses>
18 <scm>
19 <connection>scm:svn:http://svn.codehaus.org/grails/</connection>
20 <developerConnection>scm:svn:https://svn.codehaus.org/grails/</developerConnection>
21 <url>http://svn.grails.codehaus.org/</url>
22 </scm>
23 <dependencies>
24 <!-- External Dependencies -->
25 <dependency>
26 <groupId>ant</groupId>
27 <artifactId>ant</artifactId>
28 <version>1.6.5</version>
29 <optional>true</optional>
30 </dependency>
31 <dependency>
32 <groupId>ant</groupId>
33 <artifactId>ant-junit</artifactId>
34 <version>1.6.5</version>
35 <optional>true</optional>
36 </dependency>
37 <dependency>
38 <groupId>ant</groupId>
39 <artifactId>ant-nodeps</artifactId>
40 <version>1.6.5</version>
41 <optional>true</optional>
42 </dependency>
43 <dependency>
44 <groupId>commons-collections</groupId>
45 <artifactId>commons-collections</artifactId>
46 <version>3.2</version>
47 </dependency>
48 <dependency>
49 <groupId>commons-dbcp</groupId>
50 <artifactId>commons-dbcp</artifactId>
51 <version>1.2.1</version>
52 </dependency>
53 <dependency>
54 <groupId>commons-io</groupId>
55 <artifactId>commons-io</artifactId>
56 <version>1.2</version>
57 <optional>true</optional>
58 </dependency>
59 <dependency>
60 <groupId>commons-lang</groupId>
61 <artifactId>commons-lang</artifactId>
62 <version>2.1</version>
63 </dependency>
64 <dependency>
65 <groupId>commons-logging</groupId>
66 <artifactId>commons-logging</artifactId>
67 <version>1.1</version>
68 </dependency>
69 <dependency>
70 <groupId>commons-validator</groupId>
71 <artifactId>commons-validator</artifactId>
72 <version>1.3.0</version>
73 </dependency>
74 <dependency>
75 <groupId>dom4j</groupId>
76 <artifactId>dom4j</artifactId>
77 <version>1.6.1</version>
78 </dependency>
79 <dependency>
80 <groupId>groovy</groupId>
81 <artifactId>gant</artifactId>
82 <version>0.2.5-SNAPSHOT</version>
83 <optional>true</optional>
84 </dependency>
85 <dependency>
86 <groupId>groovy</groupId>
87 <artifactId>groovy-all</artifactId>
88 <version>1.1-beta-3</version>
89 </dependency>
90 <dependency>
91 <groupId>javax.servlet</groupId>
92 <artifactId>servlet-api</artifactId>
93 <version>2.4</version>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>junit</groupId>
98 <artifactId>junit</artifactId>
99 <version>3.8.1</version>
100 <optional>true</optional>
101 </dependency>
102 <dependency>
103 <groupId>org.hibernate</groupId>
104 <artifactId>hibernate</artifactId>
105 <version>3.2.1.ga</version>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework</groupId>
109 <artifactId>spring</artifactId>
110 <version>2.0.2</version>
111 </dependency>
112 <dependency>
113 <groupId>org.springframework</groupId>
114 <artifactId>spring-binding</artifactId>
115 <version>2.0-m1</version>
116 <optional>true</optional>
117 </dependency>
118 <dependency>
119 <groupId>org.springframework</groupId>
120 <artifactId>spring-mock</artifactId>
121 <version>2.0.2</version>
122 <optional>true</optional>
123 </dependency>
124 <dependency>
125 <groupId>org.springframework</groupId>
126 <artifactId>spring-webflow</artifactId>
127 <version>2.0-m1</version>
128 <optional>true</optional>
129 </dependency>
130 <!-- Grails Dependencies -->
131 <dependency>
132 <groupId>org.grails</groupId>
133 <artifactId>grails-crud</artifactId>
134 <version>${project.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>org.grails</groupId>
138 <artifactId>grails-web</artifactId>
139 <version>${project.version}</version>
140 </dependency>
141 <!-- Runtime Dependencies -->
142 <dependency>
143 <groupId>log4j</groupId>
144 <artifactId>log4j</artifactId>
145 <version>1.2.14</version>
146 <scope>runtime</scope>
147 <optional>true</optional>
148 </dependency>
149 </dependencies>
150 </project>