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"
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
    <parent>
5
        <groupId>eu.dnetlib</groupId>
6
        <artifactId>dnet-parent</artifactId>
7
        <version>1.0.0-SNAPSHOT</version>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <groupId>eu.dnetlib</groupId>
11
    <artifactId>uoa-domain</artifactId>
12
    <packaging>jar</packaging>
13
    <version>1.2.0-SNAPSHOT</version>
14
    <scm>
15
        <developerConnection>
16
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-domain/trunk
17
        </developerConnection>
18
    </scm>
19

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

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

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