Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.i18n / pom.xml @ 40512

History | View | Annotate | Download (1.28 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

    
5
    <modelVersion>4.0.0</modelVersion>
6
    <artifactId>org.gvsig.i18n</artifactId>
7
    <packaging>jar</packaging>
8
    <name>${project.artifactId}</name>
9
    <description>
10
      Management of texts related to a locale: 
11
      loading from resource bundles and getting the text value for the current locale
12
    </description>
13

    
14
    <parent>
15
        <groupId>org.gvsig</groupId>
16
        <artifactId>org.gvsig.desktop.compat.cdc</artifactId>
17
        <version>2.0.11-SNAPSHOT</version>
18
    </parent>
19
            
20
    <dependencies>
21
        <dependency>
22
            <groupId>org.slf4j</groupId>
23
            <artifactId>slf4j-api</artifactId>
24
            <scope>compile</scope>
25
        </dependency>
26
        <dependency>
27
            <groupId>org.slf4j</groupId>
28
            <artifactId>slf4j-log4j12</artifactId>
29
            <scope>runtime</scope>
30
        </dependency>
31
        <dependency>
32
          <groupId>org.gvsig</groupId>
33
          <artifactId>org.gvsig.tools.lib</artifactId>
34
          <scope>compile</scope>  
35
        </dependency>
36
    </dependencies>
37

    
38
</project>