Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libInternationalization / pom.xml @ 28595

History | View | Annotate | Download (1.48 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6

    
7
        <modelVersion>4.0.0</modelVersion>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.i18n</artifactId>
10
        <packaging>jar</packaging>
11
        <version>2.0-SNAPSHOT</version>
12
        <name>libInternationalization</name>
13
        <url>http://gvsig.org</url>
14
        <parent>
15
                <groupId>org.gvsig</groupId>
16
                <artifactId>gvsig-library-base-pom</artifactId>
17
                <version>2.0-SNAPSHOT</version>
18
        </parent>
19
        <properties>
20
                <build-dir>${basedir}/../build</build-dir>
21
        </properties>
22
        
23
        <dependencies>
24
        </dependencies>
25
        <build>
26
                <sourceDirectory>src</sourceDirectory>
27
                <testSourceDirectory>src-test</testSourceDirectory>
28
                <resources>
29
                        <resource>
30
                                <targetPath>org/gvsig/i18n/resources/translations</targetPath>
31
                                <filtering>false</filtering>
32
                                <directory>${basedir}/config</directory>
33
                                <includes>
34
                                        <include>*.properties</include>
35
                                </includes>
36
                        </resource>
37
                </resources>
38
                <plugins>
39
                        <plugin>
40
                                <groupId>org.apache.maven.plugins</groupId>
41
                                <artifactId>maven-compiler-plugin</artifactId>
42
                                <configuration>
43
                                        <source>1.4</source>
44
                                        <target>1.4</target>
45
                                        <!-- put your configurations here -->
46
                                        <encoding>ISO-8859-1</encoding>
47
                                </configuration>
48
                        </plugin>
49
                </plugins>
50
        </build>
51
</project>