Newer
Older
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.alma</groupId>
<artifactId>AlmaGTD</artifactId>
<version>1.0</version>
</parent>
<artifactId>GTDClientGauvain</artifactId>
<packaging>jar</packaging>
<name>Module GTD Client Gauvain</name>
<description>Getting Things Done
BACHELIER, BARBIN, GILET et GILET
Copyright Université de Nantes
2009-2010
</description>
<url>http://code.google.com/p/alma-gtd/</url>
<scm>
<connection>scm:svn:http://alma-gtd.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://alma-gtd.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/alma-gtd/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.7.ga</version>
</dependency>
<dependency>
<groupId>com.toedter</groupId>
<artifactId>jcalendar</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.127</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
<developers>
<developer>
<name>BACHELIER Matthieu</name>
<email>bachelier.matthieu@gmail.com</email>
</developer>
<developer>
<name>BARBIN Florian</name>
<email>florian.barbin@gmail.com</email>
</developer>
<developer>
<name>GILET Florent</name>
<email>florent.gilet@etu.univ-nantes.fr</email>
</developer>
<developer>
<name>GILET Jean-Marie</name>
<email>jm.gilet@gmail.com</email>
</developer>
</developers>
<organization>
<name>Université de Nantes - Master ALMA</name>
<url>http://alma.univ-nantes.fr</url>
</organization>
</project>