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</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.3.0</version>
13
    <scm>
14
        <developerConnection>
15
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-domain/tags/uoa-domain-1.3.0
16
        </developerConnection>
17
    </scm>
18
    <properties>
19
        <gwtVersion>2.7.0</gwtVersion>
20
    </properties>
21

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

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