Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libInternationalization / pom.xml @ 37608

History | View | Annotate | Download (5.39 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
    <version>2.0.1-SNAPSHOT</version>
9
    <name>libInternationalization</name>
10
    <description>Management of texts related to a locale: 
11
    loading from resource bundles and getting the text value for the current locale</description>
12
    <parent>
13
        <groupId>org.gvsig</groupId>
14
        <artifactId>org.gvsig.maven.base.pom</artifactId>
15
        <version>1.0.8-SNAPSHOT</version>
16
    </parent>
17
    <scm>
18
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libInternationalization</connection>
19
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libInternationalization</developerConnection>
20
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/libraries/libInternationalization</url>
21
    </scm>
22
    <repositories>
23
        <repository>
24
            <id>gvsig-public-http-repository</id>
25
            <name>gvSIG maven public HTTP repository</name>
26
            <url>http://devel.gvsig.org/m2repo/j2se</url>
27
            <releases>
28
                <enabled>true</enabled>
29
                <updatePolicy>daily</updatePolicy>
30
                <checksumPolicy>warn</checksumPolicy>
31
            </releases>
32
            <snapshots>
33
                <enabled>true</enabled>
34
                <updatePolicy>daily</updatePolicy>
35
                <checksumPolicy>warn</checksumPolicy>
36
            </snapshots>
37
        </repository>
38
    </repositories>
39
    <dependencyManagement>
40
        <dependencies>
41
            <dependency>
42
                <groupId>org.gvsig</groupId>
43
                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
44
                <version>2.0.1-SNAPSHOT</version>
45
                <type>pom</type>
46
                <scope>import</scope>
47
            </dependency>
48
        </dependencies>
49
    </dependencyManagement>
50
            
51
    <dependencies>
52
        <dependency>
53
            <groupId>org.slf4j</groupId>
54
            <artifactId>slf4j-api</artifactId>
55
            <scope>compile</scope>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.slf4j</groupId>
59
            <artifactId>slf4j-log4j12</artifactId>
60
            <scope>runtime</scope>
61
        </dependency>
62
        <dependency>
63
                        <groupId>org.gvsig</groupId>
64
                        <artifactId>org.gvsig.tools.lib</artifactId>
65
            <scope>compile</scope>        
66
                </dependency>
67
    </dependencies>
68
    <build>
69
        <sourceDirectory>src</sourceDirectory>
70
        <testSourceDirectory>src-test</testSourceDirectory>
71
        <resources>
72
            <resource>
73
                <targetPath>org/gvsig/i18n/resources/translations</targetPath>
74
                <filtering>false</filtering>
75
                <directory>${basedir}/config</directory>
76
                <includes>
77
                    <include>*.properties</include>
78
                </includes>
79
            </resource>
80
            <resource>
81
                <directory>${basedir}/resources</directory>
82
            </resource>
83
        </resources>
84
        <plugins>
85
            <plugin>
86
                <groupId>org.apache.maven.plugins</groupId>
87
                <artifactId>maven-compiler-plugin</artifactId>
88
                <configuration>
89
                    <source>1.4</source>
90
                    <target>1.4</target>
91
                    <encoding>ISO-8859-1</encoding>
92
                </configuration>
93
            </plugin>
94
        </plugins>
95
    </build>
96
    
97
    <profiles>
98
        <profile>
99
            <id>eclipse-project</id>
100
            <build>
101
                <plugins>
102
                    <plugin>
103
                        <artifactId>maven-antrun-plugin</artifactId>
104
                        <configuration>
105
                            <tasks>
106
                                <ant antfile="${basedir}/../build/ant-tasks/eclipse-tasks.xml" target="eclipse.eclipse" />
107
                            </tasks>
108
                        </configuration>
109
                        <dependencies>
110
                            <dependency>
111
                                <groupId>org.apache.ant</groupId>
112
                                <artifactId>ant-trax</artifactId>
113
                                <version>1.7.1</version>
114
                            </dependency>
115
                            <dependency>
116
                                <groupId>xalan</groupId>
117
                                <artifactId>xalan</artifactId>
118
                                <version>2.6.0</version>
119
                            </dependency>
120
                        </dependencies>
121
                    </plugin>
122
                </plugins>
123
            </build>
124
        </profile>
125
        <profile>
126
            <id>gvsig-install</id>
127
            <activation>
128
                <activeByDefault>true</activeByDefault>
129
            </activation>
130
            <properties>
131
                <!--  gvSIG installation folder -->
132
                <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
133
            </properties>
134
        </profile>
135
    </profiles>
136
    <properties>
137
        <eclipse.project.name>libInternationalization</eclipse.project.name>
138
    </properties>
139
</project>