GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / maven / grails-gorm.pom
blob0f3284f1823df34b41f310c7c6a920d33985cf62
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-gorm</artifactId>
6 <packaging>jar</packaging>
7 <name>Grails GORM</name>
8 <version>0.6</version>
9 <description>Grails GORM</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>commons-lang</groupId>
27 <artifactId>commons-lang</artifactId>
28 <version>2.1</version>
29 </dependency>
30 <dependency>
31 <groupId>commons-logging</groupId>
32 <artifactId>commons-logging</artifactId>
33 <version>1.1</version>
34 </dependency>
35 <dependency>
36 <groupId>groovy</groupId>
37 <artifactId>groovy-all</artifactId>
38 <version>1.1-beta-3</version>
39 </dependency>
40 <dependency>
41 <groupId>javax.servlet</groupId>
42 <artifactId>servlet-api</artifactId>
43 <version>2.4</version>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.hibernate</groupId>
48 <artifactId>hibernate</artifactId>
49 <version>3.2.1.ga</version>
50 </dependency>
51 <dependency>
52 <groupId>org.springframework</groupId>
53 <artifactId>spring</artifactId>
54 <version>2.0.2</version>
55 </dependency>
56 <!-- Grails Dependencies -->
57 <dependency>
58 <groupId>org.grails</groupId>
59 <artifactId>grails-core</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.grails</groupId>
64 <artifactId>grails-web</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <!-- Runtime Dependencies -->
68 <dependency>
69 <groupId>log4j</groupId>
70 <artifactId>log4j</artifactId>
71 <version>1.2.14</version>
72 <scope>runtime</scope>
73 <optional>true</optional>
74 </dependency>
75 </dependencies>
76 </project>