Project

General

Profile

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
    <parent>
4
        <groupId>eu.dnetlib</groupId>
5
        <artifactId>dnet-parent</artifactId>
6
        <version>1.0.0-SNAPSHOT</version>
7
    </parent>
8
    <modelVersion>4.0.0</modelVersion>
9
    <groupId>eu.dnetlib</groupId>
10
    <artifactId>uoa-domain</artifactId>
11
    <packaging>jar</packaging>
12
    <version>1.2.1-SNAPSHOT</version>
13
    <scm>
14
        <developerConnection>
15
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-domain/trunk
16
        </developerConnection>
17
    </scm>
18

    
19
    <properties>
20
        <gwtVersion>2.7.0</gwtVersion>
21
    </properties>
22

    
23
    <dependencies>
24
        <dependency>
25
            <groupId>junit</groupId>
26
            <artifactId>junit</artifactId>
27
            <version>[0.0.0,)</version>
28
        </dependency>
29
        <dependency>
30
            <groupId>log4j</groupId>
31
            <artifactId>log4j</artifactId>
32
            <version>[0.0.0,)</version>
33
        </dependency>
34
        <dependency>
35
            <groupId>org.hibernate</groupId>
36
            <artifactId>hibernate-entitymanager</artifactId>
37
            <version>3.5.6-Final</version>
38
        </dependency>
39
        <dependency>
40
            <groupId>org.hibernate</groupId>
41
            <artifactId>hibernate-annotations</artifactId>
42
            <version>3.5.6-Final</version>
43
        </dependency>
44
        <dependency>
45
            <groupId>com.google.gwt</groupId>
46
            <artifactId>gwt-user</artifactId>
47
            <version>${gwtVersion}</version>
48
        </dependency>
49
        <dependency>
50
            <groupId>com.google.gwt</groupId>
51
            <artifactId>gwt-servlet</artifactId>
52
            <version>${gwtVersion}</version>
53
            <scope>runtime</scope>
54
        </dependency>
55
    </dependencies>
56

    
57
    <build>
58
        <plugins>
59
            <plugin>
60
                <groupId>org.codehaus.mojo</groupId>
61
                <artifactId>gwt-maven-plugin</artifactId>
62
                <version>${gwtVersion}</version>
63
                <executions>
64
                    <execution>
65
                        <goals>
66
                            <goal>resources</goal>
67
                        </goals>
68
                    </execution>
69
                </executions>
70
            </plugin>
71
        </plugins>
72
    </build>
73
</project>
(2-2/2)