root/pom.xml

Revision 108:db1fdb678d67, 4.0 kB (checked in by ryan@…, 15 months ago)

Upgrade to Google Collections 1.0-rc1

Line 
1<?xml version="1.0" encoding="UTF-8"?>
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
4    <modelVersion>4.0.0</modelVersion>
5    <groupId>com.thimbleware.jrel</groupId>
6    <artifactId>jrel</artifactId>
7    <version>0.11-SNAPSHOT</version>
8    <name>Java Relational Expression Library</name>
9    <description>A library which generates valid ANSI SQL from pure Java expressions which map to operations inthe relational algebra.
10        Allows for elegant programmatic database access.</description>
11
12    <inceptionYear>2007</inceptionYear>
13
14    <build>
15        <plugins>
16            <plugin>
17                <groupId>org.apache.maven.plugins</groupId>
18                <artifactId>maven-compiler-plugin</artifactId>
19                <configuration>
20                    <source>1.5</source>
21                    <target>1.5</target>
22                </configuration>
23            </plugin>
24        </plugins>
25    </build>
26
27    <repositories>
28        <repository>
29            <id>thimbleware-3rd</id>
30            <name>ThimbleWare Third Party</name>
31            <url>http://thimbleware.com/maven-3rd-party</url>
32        </repository>
33    </repositories>
34
35    <dependencies>
36        <dependency>
37            <groupId>javax.annotation</groupId>
38            <artifactId>jsr250-api</artifactId>
39            <version>1.0</version>
40        </dependency>
41
42        <dependency>
43            <groupId>junit</groupId>
44            <artifactId>junit</artifactId>
45            <version>4.4</version>
46            <scope>test</scope>
47        </dependency>
48
49        <dependency>
50            <groupId>com.google.collections</groupId>
51            <artifactId>google-collections</artifactId>
52            <version>1.0-rc1</version>
53            <scope>compile</scope>
54        </dependency>
55
56        <dependency>
57            <groupId>hsqldb</groupId>
58            <artifactId>hsqldb</artifactId>
59            <version>1.8.0.7</version>
60            <scope>test</scope>
61        </dependency>
62
63        <dependency>
64            <groupId>org.springframework</groupId>
65            <artifactId>spring</artifactId>
66            <version>2.5.6</version>
67            <scope>test</scope>
68        </dependency>
69
70        <dependency>
71            <groupId>org.springframework</groupId>
72            <artifactId>spring-test</artifactId>
73            <version>2.5.6</version>
74            <scope>test</scope>
75        </dependency>
76
77        <dependency>
78            <groupId>commons-dbcp</groupId>
79            <artifactId>commons-dbcp</artifactId>
80            <version>1.2</version>
81            <scope>test</scope>
82        </dependency>
83
84    </dependencies>
85
86    <licenses>
87        <license>
88            <name>Apache 2</name>
89            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
90        </license>
91    </licenses>
92
93    <organization>
94        <name>ThimbleWare</name>
95        <url>http://thimbleware.com/</url>
96    </organization>
97
98    <developers>
99        <developer>
100            <email>ryan@thimbleware.com</email>
101            <name>Ryan Daum</name>
102            <organization>ThimbleWare Inc</organization>
103            <organizationUrl>http://www.thimbleware.com/</organizationUrl>
104            <roles>
105                <role>maintainer</role>
106            </roles>
107        </developer>
108    </developers>
109
110    <distributionManagement>
111        <repository>
112            <id>thimbleware.repo</id>
113            <name>ThimbleWare Repository</name>
114            <url>scp://ryan@thimbleware.com//var/www/maven</url>
115        </repository>
116        <snapshotRepository>
117            <id>thimbleware.repo</id>
118            <name>ThimbleWare Repository</name>
119            <url>scp://ryan@thimbleware.com//var/www/maven</url>
120        </snapshotRepository>
121    </distributionManagement>
122
123    <scm>
124        <connection>
125            scm:hg:http://thimbleware.com/hg/jmemcached
126        </connection>
127        <developerConnection>
128            scm:hg:ssh://ryan@thimbleware.com//var/hg/jrel
129        </developerConnection>
130    </scm>
131
132</project>
Note: See TracBrowser for help on using the browser.