Revision 34727

View differences:

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

Also available in: Unified diff