Statistics
| Revision:

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

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