Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
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-espas-common</artifactId>
11
    <packaging>jar</packaging>
12
    <version>3.0-SNAPSHOT</version>
13
        
14
    <build>
15
        <plugins>
16
            <plugin>
17
                <groupId>org.apache.maven.plugins</groupId>
18
                <artifactId>maven-surefire-plugin</artifactId>                
19
                <version>2.16</version>
20
                <configuration>
21
                    <systemPropertyVariables>
22
                        <systemPropertyVariables>
23
                            <log4j.configuration>${basedir}/src/main/resources/log4j.properties</log4j.configuration>
24
                        </systemPropertyVariables>
25
                    </systemPropertyVariables>
26
                </configuration>
27
            </plugin>
28
            <plugin>
29
                <groupId>org.codehaus.mojo</groupId>
30
                <artifactId>jaxb2-maven-plugin</artifactId>
31
                <version>1.5</version>
32
                <executions>
33
                    <execution>
34
                        <id>xjc</id>
35
                        <goals>
36
                            <goal>xjc</goal>
37
                        </goals>
38
                    </execution>
39
                </executions>
40
                <configuration>
41
                    <schemaDirectory>${basedir}/src/main/resources/schemas</schemaDirectory>
42
                    <packageName>eu.dnetlib.espas.download.jaxb</packageName> 
43
                </configuration>
44
            </plugin>
45
        </plugins>
46
    </build>
47
    <dependencies>
48
        <!-- added by gathanas at 10/07/2013 for espas-->
49
        <dependency>
50
            <groupId>org.geotoolkit.pending</groupId>
51
            <artifactId>geotk-xml-ogc</artifactId>
52
            <version>3.21</version>
53
        </dependency>
54
        <dependency>
55
            <groupId>org.geotoolkit.pending</groupId>
56
            <artifactId>jaxb-xml-binding</artifactId>
57
            <version>3.21</version>
58
            <type>pom</type>
59
        </dependency>
60
        <dependency>
61
            <groupId>org.geotoolkit.pending</groupId>
62
            <artifactId>geotk-xml-xsd</artifactId>
63
            <version>3.21</version>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.geotoolkit.pending</groupId>
67
            <artifactId>geotk-xml-gml</artifactId>
68
            <version>3.21</version>
69
        </dependency>
70
        <dependency>
71
            <groupId>xerces</groupId>
72
            <artifactId>xercesImpl</artifactId>
73
            <version>2.8.1</version>
74
            <scope>provided</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.geotoolkit.pending</groupId>
78
            <artifactId>geotk-jtswrapper</artifactId>
79
            <version>3.21</version>
80
            <type>jar</type>
81
        </dependency>
82
        <dependency>
83
            <groupId>junit</groupId>
84
            <artifactId>junit</artifactId>
85
            <version>4.10</version>
86
            <scope>test</scope>
87
        </dependency>
88
        <dependency>
89
            <groupId>org.geotoolkit</groupId>
90
            <artifactId>geotk-xml-base</artifactId>
91
            <version>3.21</version>
92
        </dependency>
93
        <dependency>
94
            <groupId>com.sun.xml.bind</groupId>
95
            <artifactId>jaxb-impl</artifactId>
96
            <version>2.2.5</version>
97
        </dependency>
98
        <dependency>
99
            <groupId>org.postgresql</groupId>
100
            <artifactId>postgresql</artifactId>
101
            <scope>runtime</scope>
102
            <version>9.2-1003-jdbc4</version>
103
        </dependency>
104
    </dependencies>
105

    
106
    <!-- added by gathanas at 10/07/2013 for espas-->
107
    <repositories>
108
        <repository>
109
            <id>central</id>
110
            <name>Central Repository</name>
111
            <url>http://repo1.maven.org/maven2/</url>
112
        </repository>
113
        <repository>
114
            <id>osgeo</id>
115
            <name>Open Source Geospatial Foundation Repository</name>
116
            <url>http://download.osgeo.org/webdav/geotools/</url>
117
        </repository>
118
        <repository>
119
            <id>EuropaMaven</id>
120
            <name>Europa Nexus</name>
121
            <url>https://joinup.ec.europa.eu/nexus</url>
122
        </repository>
123
        <repository>
124
            <id>opengeo</id>
125
            <name>OpenGeo Maven Repository</name>
126
            <url>http://repo.opengeo.org</url>
127
        </repository>
128
        <repository>
129
            <id>GeotoolKit</id>
130
            <name>Geotoolkit Maven Repository</name>
131
            <url>http://maven.geotoolkit.org/</url>
132
        </repository>
133
    </repositories>        
134
</project>
(3-3/3)