source: TableAgent/trunk/pom.xml @ 309

Revision 309, 2.5 KB checked in by kasper, 4 years ago (diff)

Added TableAgent project to SVN

  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5        <modelVersion>4.0.0</modelVersion>
6        <groupId>dk.eobjects.tools</groupId>
7        <artifactId>TableAgent</artifactId>
8        <name>TableAgent</name>
9        <version>0.2-SNAPSHOT</version>
10        <description>
11                TableAgent is a query optimizer for transparent use of aggregate
12                tables. It works as a proxy database-server for catching
13                incoming queries and transforms them to support using aggregate
14                tables in a client-transparent way.
15        </description>
16        <url>http://www.eobjects.dk</url>
17        <inceptionYear>2007</inceptionYear>
18        <packaging>jar</packaging>
19        <scm>
20                <connection>
21                        scm:svn:http://www.eobjects.dk/svn/tools/TableAgent/trunk
22                </connection>
23                <developerConnection>
24                        scm:svn:http:http://www.eobjects.dk/svn/tools/TableAgent/trunk
25                </developerConnection>
26                <url>
27                        http://www.eobjects.dk/trac/browser/tools/TableAgent/trunk
28                </url>
29        </scm>
30        <reporting>
31                <plugins>
32                        <plugin>
33                                <groupId>org.apache.maven.plugins</groupId>
34                                <artifactId>maven-javadoc-plugin</artifactId>
35                        </plugin>
36                        <plugin>
37                                <groupId>org.codehaus.mojo</groupId>
38                                <artifactId>cobertura-maven-plugin</artifactId>
39                        </plugin>
40                </plugins>
41        </reporting>
42        <ciManagement>
43                <system>hudson</system>
44                <url>http://www.eobjects.dk/hudson/</url>
45        </ciManagement>
46        <issueManagement>
47                <system>trac</system>
48                <url>http://www.eobjects.dk/trac</url>
49        </issueManagement>
50        <licenses>
51                <license>
52                        <name>Apache License, Version 2.0</name>
53                        <url>http://www.apache.org/licenses/LICENSE-2.0</url>
54                </license>
55        </licenses>
56        <build>
57                <finalName>tableagent</finalName>
58                <plugins>
59                        <plugin>
60                                <artifactId>maven-compiler-plugin</artifactId>
61                                <configuration>
62                                        <source>1.5</source>
63                                        <target>1.5</target>
64                                </configuration>
65                        </plugin>
66                </plugins>
67        </build>
68        <dependencies>
69                <dependency>
70                        <groupId>org.springframework</groupId>
71                        <artifactId>spring</artifactId>
72                        <version>2.5.2</version>
73                </dependency>
74                <dependency>
75                        <groupId>junit</groupId>
76                        <artifactId>junit</artifactId>
77                        <version>3.8.2</version>
78                        <scope>test</scope>
79                </dependency>
80                <dependency>
81                        <groupId>org.easymock</groupId>
82                        <artifactId>easymock</artifactId>
83                        <version>2.2</version>
84                        <scope>test</scope>
85                </dependency>
86        </dependencies>
87
88</project>
89
Note: See TracBrowser for help on using the repository browser.