Revision 29

View differences:

org.gvsig.maven.base/trunk/org.gvsig.maven.base/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>org.gvsig.maven.base</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
	</buildSpec>
9
	<natures>
10
	</natures>
11
</projectDescription>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.extension.pom/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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.maven.base.extension.pom</artifactId>
10
	<packaging>pom</packaging>
11
	<version>1.0.0-SNAPSHOT</version>
12
	<name>org.gvsig.maven.base.extension.pom</name>
13
	<description> Base POM for all GvSIG extension projects. This pom knows
14
		how to build and made an extension for GvSIG. The property
15
		"build-dir" must be set up correctly.</description>
16

  
17
	<parent>
18
		<groupId>org.gvsig</groupId>
19
		<artifactId>org.gvsig.maven.base.pom</artifactId>
20
		<version>1.0.0-SNAPSHOT</version>
21
	</parent>	
22
	<distributionManagement>
23
		<site>
24
			<id>gvsig-repository</id>
25
			<url>${site-repository}/</url>
26
		</site>
27
	</distributionManagement>
28

  
29
	<properties>
30
		<!-- Name of the folder where andami looks for plugins -->
31
		<extensions.dir.name>gvSIG/extensiones</extensions.dir.name>
32
		<!-- Name of the folder where andami can find the plugin for the current extension -->
33
		<extension.install.dir.name>${extensions.dir.name}/${artifactId}</extension.install.dir.name>
34
		<!-- Name of the folder where andami can find the plugin for the appgvSIG extensions -->
35
		<gvsig.extension.install.dir.name>${extensions.dir.name}/org.gvsig.app/</gvsig.extension.install.dir.name>
36
		
37
		<!--  Absolute gvSIG extensions installation folder -->
38
		<gvsig.extensions.dir>${gvsig.install.dir}/${extensions.dir.name}</gvsig.extensions.dir>
39
		<!--  Absolute current extension installation folder into gvSIG -->
40
		<extension.install.dir>${gvsig.install.dir}/${extension.install.dir.name}</extension.install.dir>
41
		<!-- 
42
		Maven assembly plugin configuration file for the 
43
		current extension, relative to the extension folder. 
44
		-->
45
		<extension.distribution.file>
46
			distribution/distribution.xml
47
		</extension.distribution.file>
48
		<!-- Extension installation library dependencies folder -->
49
		<library-dir>lib</library-dir>
50
	</properties>
51
	
52
	<profiles>
53
		<profile>
54
			<id>install-extension</id>
55
			<activation>
56
				<activeByDefault>true</activeByDefault>
57
				<property>
58
					<name>install-extension</name>
59
				</property>
60
			</activation>
61
			<build>
62
				<plugins>
63
					<plugin>
64
						<artifactId>maven-assembly-plugin
65
						</artifactId>
66
						<configuration>
67
							<descriptors>
68
								<descriptor>${extension.distribution.file}</descriptor>
69
							</descriptors>
70
							<ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
71
							<appendAssemblyId>true</appendAssemblyId>
72
						</configuration>
73
						<executions>
74
							<execution>
75
								<id>make-assembly</id><!-- this is used for inheritance merges -->
76
								<phase>install</phase><!-- append to the packaging phase. -->
77
								<goals>
78
									<goal>attached</goal>
79
								</goals>
80
							</execution>
81
						</executions>
82
					</plugin>
83
					<plugin>
84
						<artifactId>maven-antrun-plugin</artifactId>
85
						<executions>
86
							<execution>
87
								<id>copy-to-andami</id>
88
								<phase>install</phase>
89
								<configuration>
90
									<tasks>
91
										<property name="project.packaging" value="${project.packaging}" />
92
										<property name="gvsig.install.dir" value="${gvsig.install.dir}" />
93
										<property name="distribution-final-name" value="${project.build.finalName}" />
94
										<ant antfile="${base.tools.path}/ant/gvsig-extension-tasks.xml"
95
										     target="make-extension-new" inheritRefs="true" />
96
									</tasks>
97
								</configuration>
98
								<goals>
99
									<goal>run</goal>
100
								</goals>
101
							</execution>
102
						</executions>
103
					</plugin>
104
					<plugin>
105
						<artifactId>maven-clean-plugin</artifactId>
106
						<configuration>
107
							<filesets>
108
								<fileset>
109
									<directory>${extension.install.dir}</directory>
110
									<includes>
111
										<include>**</include>
112
									</includes>
113
								</fileset>
114
							</filesets>
115
						</configuration>
116
					</plugin>
117
				</plugins>
118
			</build>
119
		</profile>
120
		<!-- TODO: Replace with the new installers generation -->
121
		<profile>
122
			<id>generate-installers</id>
123
			<activation>
124
				<property>
125
					<name>generate-install</name>
126
				</property>
127
			</activation>
128
			<build>
129
				<plugins>
130
					<plugin>
131
						<artifactId>maven-assembly-plugin</artifactId>
132
						<configuration>
133
							<descriptors>
134
								<descriptor>
135
									${distribution-win32-descriptor}
136
								</descriptor>
137
								<descriptor>
138
									${distribution-linux32-descriptor}
139
								</descriptor>
140
								<!-- descriptor>
141
									${distribution-mac-descriptor
142
									</descriptor-->
143
								<!--descriptor>
144
									/distribution/source-distribution.xml
145
									</descriptor-->
146
							</descriptors>
147
							<outputDirectory>
148
								${distribution-output-directory}
149
							</outputDirectory>
150
							<finalName>
151
								${distribution-final-name}
152
							</finalName>
153
							<appendAssemblyId>true</appendAssemblyId>
154
							<ignoreDirFormatExtensions>
155
								true
156
							</ignoreDirFormatExtensions>
157
						</configuration>
158
						<executions>
159
							<execution>
160
								<id>make-assembly</id><!-- this is used for inheritance merges -->
161
								<phase>package</phase><!-- append to the packaging phase. -->
162
								<goals>
163
									<goal>attached</goal><!-- goals == mojos -->
164
								</goals>
165
							</execution>
166
						</executions>
167
					</plugin>
168
				</plugins>
169
			</build>
170
		</profile>
171
	</profiles>
172
</project>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.extension.pom/distribution/distribution.xml
1
<assembly>
2
	<id>distribution</id>
3
</assembly>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0                       http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
	<modelVersion>4.0.0</modelVersion>
5
	<groupId>org.gvsig</groupId>
6
	<artifactId>org.gvsig.maven.base</artifactId>
7
	<packaging>pom</packaging>
8
	<version>1.0.0-SNAPSHOT</version>
9
	<name>org.gvsig.maven.base</name>
10
	<description>gvSIG maven configuration and base poms</description>
11
	<licenses>
12
		<license>
13
			<name>GPL Version 2</name>
14
			<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
15
			<distribution>repo</distribution>
16
			<comments>
17
				"GPL" stands for "General Public License". The most widespread such
18
				license is the GNU General Public License, or GNU GPL for short.
19
				This can be further shortened to "GPL", when it is understood that
20
				the
21
				GNU GPL is the one intended.
22
	      </comments>
23
		</license>
24
	</licenses>
25
	<scm>
26
		<connection>
27
			scm:svn:http://subversion.gvsig.org/gvSIG/branches/v2_0_0_prep/	    
28
	    </connection>
29
		<developerConnection>
30
			scm:svn:https://gvsig.org/svn/gvSIG/branches/v2_0_0_prep/
31
	    </developerConnection>
32
		<url>http://subversion.gvsig.org/viewvc/?root=gvSIG</url>
33
		<tag>v2_0_0_prep</tag>
34
	</scm>	
35
	<repositories>
36
		<repository>
37
			<id>gvsig-public-http-repository</id>
38
			<name>gvSIG maven public HTTP repository</name>
39
			<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
40
			<releases>
41
				<enabled>true</enabled>
42
				<updatePolicy>daily</updatePolicy>
43
				<checksumPolicy>warn</checksumPolicy>
44
			</releases>
45
			<snapshots>
46
				<enabled>true</enabled>
47
				<updatePolicy>daily</updatePolicy>
48
				<checksumPolicy>warn</checksumPolicy>
49
			</snapshots>
50
		</repository>
51
	</repositories>
52
	<distributionManagement>
53
		<repository>
54
			<id>gvsig-repository</id>
55
			<name>gvSIG maven repository</name>
56
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/maven-repository/</url>
57
		</repository>
58
		<snapshotRepository>
59
			<id>gvsig-repository</id>
60
			<name>gvSIG maven repository</name>
61
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/maven-repository/</url>
62
		</snapshotRepository>
63
		<!--
64
			<site> <id>gvsig-repository</id>
65
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/docs/reference/${project.artifactId}/2.0.0/</url>
66
			</site>
67
		-->
68
	</distributionManagement>
69
	<build>
70
		<plugins>
71
			<plugin>
72
				<groupId>org.apache.maven.plugins</groupId>
73
				<artifactId>maven-release-plugin</artifactId>
74
				<configuration>
75
					<tagBase>https://gvsig.org/svn/gvSIG/tags</tagBase>
76
				</configuration>
77
			</plugin>
78
		</plugins>
79
	</build>
80
	<modules>
81
		<module>org.gvsig.maven.base.tools</module>
82
		<module>org.gvsig.maven.base.pom</module>
83
		<module>org.gvsig.maven.base.extension.pom</module>
84
		<module>org.gvsig.maven.base.jni.pom</module>
85
		<module>org.gvsig.maven.base.build</module>
86
	</modules>
87
</project>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.jni.pom/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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.maven.base.jni.pom</artifactId>
10
	<packaging>pom</packaging>
11
	<version>1.0.0-SNAPSHOT</version>
12
	<name>org.gvsig.maven.base.jni.pom</name>
13
	<parent>
14
		<groupId>org.gvsig</groupId>
15
		<artifactId>org.gvsig.maven.base.pom</artifactId>
16
		<version>1.0.0-SNAPSHOT</version>
17
	</parent>	
18
	<distributionManagement>
19
		<site>
20
			<id>gvsig-repository</id>
21
			<url>${site-repository}/</url>
22
		</site>
23
	</distributionManagement>
24

  
25
	<description>
26
		Base POM for all JNI projects. This pom knows how to
27
		build and made an native libraries for GvSIG.
28
	</description>
29
	<profiles>
30
		<profile>
31
			<id>jni-devel</id>
32
			<activation>
33
				<property>
34
					<name>jni-devel</name>
35
				</property>
36
			</activation>
37
			<properties>
38
				<compileTarget>native</compileTarget>
39
				<numProc>2</numProc>
40
				<depman-ant>${base.tools.path}/ant/depman-ant.xml</depman-ant>
41
			</properties>
42
			<build>
43
				<plugins>
44
					<plugin>
45
						<groupId>org.apache.maven.plugins</groupId>
46
						<artifactId>maven-antrun-plugin</artifactId>
47
						<executions>
48
							<execution>
49
								<id>compile-native</id>
50
								<phase>compile</phase>
51
								<configuration>
52
									<tasks>
53
										<property name="numProc" value="${numProc}" />
54
										<property name="project.build.directory" value="${project.build.directory}" />
55
										<ant antfile="${depman-ant}" target="${compileTarget}" />
56
									</tasks>
57
								</configuration>
58
								<goals>
59
									<goal>run</goal>
60
								</goals>
61
							</execution>
62
							<execution>
63
								<id>native-eclipse</id>
64
								<phase>generate-sources</phase>
65
								<configuration>
66
									<tasks>
67
										<property name="numProc" value="${numProc}" />
68
										<property name="project.build.directory" value="${project.build.directory}" />
69
										<ant antfile="${depman-ant}" target="${compileTarget}-eclipse" />
70
									</tasks>
71
								</configuration>
72
								<goals>
73
									<goal>run</goal>
74
								</goals>
75
							</execution>
76
						</executions>
77
					</plugin>
78
					<plugin>
79
						<artifactId>maven-assembly-plugin
80
						</artifactId>
81
						<configuration>
82
							<descriptors>
83
								<descriptor>${base.tools.path}/assembly/native.xml</descriptor>
84
							</descriptors>
85
							<ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
86
						</configuration>
87
						<executions>
88
							<execution>
89
								<id>package-native</id>
90
								<!--
91
									this is used for inheritance merges
92
								-->
93
								<phase>package</phase>
94
								<!--
95
									append to the packaging phase.
96
								-->
97
								<goals>
98
									<goal>attached</goal><!-- goals == mojos -->
99
								</goals>
100
							</execution>
101
						</executions>
102
					</plugin>
103
				</plugins>
104
			</build>
105
		</profile>
106
	</profiles>
107
</project>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.pom/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
	<modelVersion>4.0.0</modelVersion>
7
	<groupId>org.gvsig</groupId>
8
	<artifactId>org.gvsig.maven.base.pom</artifactId>
9
	<packaging>pom</packaging>
10
	<version>1.0.0-SNAPSHOT</version>
11
	<name>org.gvsig.maven.base.pom</name>
12
	<description>Base POM for all GvSIG projects</description>
13
	<url>http://www.gvsig.org/</url>
14
	<inceptionYear>2004</inceptionYear>
15
	<issueManagement>
16
		<system>trac</system>
17
		<url>https://gvsig.org/trac/bugtracking/</url>
18
	</issueManagement>
19
	<ciManagement></ciManagement>
20
	<mailingLists>
21
		<mailingList>
22
			<name>User List</name>
23
			<subscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_usuarios</subscribe>
24
			<unsubscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_usuarios</unsubscribe>
25
			<post>gvsig_usuarios@runas.cap.gva.es</post>
26
			<archive>https://gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
27
			<otherArchives>
28
				<otherArchive>http://www.mail-archive.com/gvsig_usuarios@runas.cap.gva.es</otherArchive>
29
				<otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
30
			</otherArchives>
31
		</mailingList>
32
		<mailingList>
33
			<name>Developer List</name>
34
			<subscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_desarrolladores</subscribe>
35
			<unsubscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_desarrolladores</unsubscribe>
36
			<post>gvsig_desarrolladores@runas.cap.gva.es</post>
37
			<archive>https://gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
38
			<otherArchives>
39
				<otherArchive>http://www.mail-archive.com/gvsig_desarrolladores@runas.cap.gva.es</otherArchive>
40
				<otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
41
			</otherArchives>
42
		</mailingList>
43
		<mailingList>
44
			<name>International List</name>
45
			<subscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_internacional</subscribe>
46
			<unsubscribe>http://runas.cap.gva.es/mailman/listinfo/gvsig_internacional</unsubscribe>
47
			<post>gvsig_internacional@runas.cap.gva.es</post>
48
			<archive>https://gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
49
			<otherArchives>
50
				<otherArchive>http://www.mail-archive.com/gvsig_internacional@runas.cap.gva.es</otherArchive>
51
				<otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
52
			</otherArchives>
53
		</mailingList>
54
	</mailingLists>
55
	<scm>
56
		<connection>
57
			scm:svn:http://subversion.gvsig.org/gvSIG/branches/v2_0_0_prep/	    
58
	    </connection>
59
		<developerConnection>
60
			scm:svn:https://gvsig.org/svn/gvSIG/branches/v2_0_0_prep/
61
	    </developerConnection>
62
		<url>http://subversion.gvsig.org/viewvc/?root=gvSIG</url>
63
		<tag>HEAD</tag>
64
	</scm>
65
	<organization>
66
		<name>gvSIG</name>
67
		<url>http://www.gvsig.org/</url>
68
	</organization>
69

  
70
	<licenses>
71
		<license>
72
			<name>GPL Version 2</name>
73
			<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
74
			<distribution>repo</distribution>
75
			<comments>
76
				"GPL" stands for "General Public License". The most widespread such
77
				license is the GNU General Public License, or GNU GPL for short.
78
				This can be further shortened to "GPL", when it is understood that
79
				the
80
				GNU GPL is the one intended.
81
	      </comments>
82
		</license>
83
	</licenses>
84

  
85
	<!--
86
		Put here the global properties who use all the projects of GvSIG
87
	-->
88
	<properties>
89
		<localRepository>${user.home}/.m2/repository</localRepository>
90
		<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
91
		<cdc-runtime>${localRepository}/com/sun/phoneme/btclasses/bn102/btclasses-bn102.zip${path.separator}${localRepository}/com/sun/phonemert/bn102/rt-bn102.jar${path.separator}${localRepository}/org/gvsig/mobile/cdc-addons/1.0-SNAPSHOT/cdc-addons-1.0-SNAPSHOT.jar</cdc-runtime>
92
		<site-repository>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/docs/reference/${project.artifactId}/2.0.0</site-repository>
93
		<base.tools.path>${project.build.directory}/org.gvsig.maven.base.tools</base.tools.path>
94
	</properties>
95
	<repositories>
96
		<repository>
97
			<id>gvsig-public-http-repository</id>
98
			<name>gvSIG maven public HTTP repository</name>
99
			<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
100
			<releases>
101
				<enabled>true</enabled>
102
				<updatePolicy>daily</updatePolicy>
103
				<checksumPolicy>warn</checksumPolicy>
104
			</releases>
105
			<snapshots>
106
				<enabled>true</enabled>
107
				<updatePolicy>daily</updatePolicy>
108
				<checksumPolicy>warn</checksumPolicy>
109
			</snapshots>
110
		</repository>
111
		<repository>
112
			<id>osgeo</id>
113
			<name>Open Source Geospatial Foundation</name>
114
			<url>http://download.osgeo.org/webdav/geotools</url>
115
			<releases>
116
				<enabled>true</enabled>
117
				<updatePolicy>never</updatePolicy>
118
				<checksumPolicy>warn</checksumPolicy>
119
			</releases>
120
			<snapshots>
121
				<enabled>false</enabled>
122
			</snapshots>
123
		</repository>
124
	</repositories>
125
	<distributionManagement>
126
		<repository>
127
			<id>gvsig-repository</id>
128
			<name>gvSIG maven repository</name>
129
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/maven-repository/</url>
130
		</repository>
131
		<snapshotRepository>
132
			<id>gvsig-repository</id>
133
			<name>gvSIG maven repository</name>
134
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/maven-repository/</url>
135
		</snapshotRepository>
136
		<!--
137
			<site> <id>gvsig-repository</id>
138
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/docs/reference/${project.artifactId}/2.0.0/</url>
139
			</site>
140
		-->
141
	</distributionManagement>
142
	<dependencyManagement>
143
		<!--
144
			NOTE: the list of dependencies is ordered alphabetically by the artifactId.
145
			Please, if new dependencies are added, keep the order.
146
		-->
147
		<dependencies>
148
			<dependency>
149
				<groupId>org.jzkit</groupId>
150
				<artifactId>a2j-runtime</artifactId>
151
				<version>2.0.9</version>
152
			</dependency>
153
			<dependency>
154
				<groupId>org.jzkit</groupId>
155
				<artifactId>a2j</artifactId>
156
				<version>2.0.9</version>
157
			</dependency>
158
			<dependency>
159
				<groupId>net.swing</groupId>
160
				<artifactId>amic-util</artifactId>
161
				<version>unknown</version>
162
			</dependency>
163
			<dependency>
164
				<groupId>org.apache.xmlgraphics</groupId>
165
				<artifactId>batik-gvt</artifactId>
166
				<version>1.7</version>
167
			</dependency>
168
			<dependency>
169
				<groupId>org.apache.xmlgraphics</groupId>
170
				<artifactId>batik-script</artifactId>
171
				<version>1.7</version>
172
			</dependency>
173
			<dependency>
174
				<groupId>org.apache.xmlgraphics</groupId>
175
				<artifactId>batik-awt-util</artifactId>
176
				<version>1.7</version>
177
			</dependency>
178
			<dependency>
179
				<groupId>bsf</groupId>
180
				<artifactId>bsf</artifactId>
181
				<version>2.3.0-rc1</version>
182
			</dependency>
183
			<dependency>
184
				<groupId>bsh</groupId>
185
				<artifactId>bsh</artifactId>
186
				<version>2.0b1</version>
187
			</dependency>
188
			<dependency>
189
				<groupId>castor</groupId>
190
				<artifactId>castor</artifactId>
191
				<version>0.9.5.3</version>
192
			</dependency>
193
			<dependency>
194
				<groupId>commons-beanutils</groupId>
195
				<artifactId>commons-beanutils</artifactId>
196
				<version>1.6</version>
197
			</dependency>
198
			<dependency>
199
				<groupId>commons-dbcp</groupId>
200
				<artifactId>commons-dbcp</artifactId>
201
				<version>1.2.2</version>
202
			</dependency>
203
			<dependency>
204
				<groupId>commons-collections</groupId>
205
				<artifactId>commons-collections</artifactId>
206
				<version>3.2.1</version>
207
			</dependency>
208
			<dependency>
209
				<groupId>commons-httpclient</groupId>
210
				<artifactId>commons-httpclient</artifactId>
211
				<version>2.0.2</version>
212
			</dependency>
213
			<dependency>
214
				<groupId>org.dspace</groupId>
215
				<artifactId>cql-java</artifactId>
216
				<version>1.0</version>
217
			</dependency>
218
			<dependency>
219
				<groupId>flanagan</groupId>
220
				<artifactId>flanagan</artifactId>
221
				<version>20090616</version>
222
			</dependency>
223
			<dependency>
224
				<groupId>net.sf</groupId>
225
				<artifactId>flib-jcalendar</artifactId>
226
				<version>unknown</version>
227
			</dependency>
228
			<dependency>
229
				<groupId>org.opengis</groupId>
230
				<artifactId>geoapi</artifactId>
231
				<version>2.0</version>
232
			</dependency>
233
			<dependency>
234
				<groupId>geojava</groupId>
235
				<artifactId>geojava</artifactId>
236
				<version>unknown</version>
237
			</dependency>
238
			<dependency>
239
				<groupId>org.geonames</groupId>
240
				<artifactId>geonames</artifactId>
241
				<version>1.0</version>
242
				<classifier>java5</classifier>
243
			</dependency>
244
			<dependency>
245
				<groupId>org.geotools</groupId>
246
				<artifactId>gt2-epsg-esri</artifactId>
247
				<version>unknown</version>
248
			</dependency>
249
			<dependency>
250
				<groupId>org.geotools</groupId>
251
				<artifactId>gt2-epsg-hsql</artifactId>
252
				<version>unknown</version>
253
			</dependency>
254
			<dependency>
255
				<groupId>org.geotools</groupId>
256
				<artifactId>gt2-epsg-iau2000</artifactId>
257
				<version>unknown</version>
258
			</dependency>
259
			<dependency>
260
				<groupId>org.geotools</groupId>
261
				<artifactId>gt2-epsg-usr</artifactId>
262
				<version>unknown</version>
263
			</dependency>
264
			<dependency>
265
				<groupId>org.geotools</groupId>
266
				<artifactId>gt2-legacy</artifactId>
267
				<version>unknown</version>
268
			</dependency>
269
			<dependency>
270
				<groupId>org.geotools</groupId>
271
				<artifactId>gt2-main</artifactId>
272
				<version>unknown</version>
273
			</dependency>
274
			<dependency>
275
				<groupId>hsqldb</groupId>
276
				<artifactId>hsqldb</artifactId>
277
				<version>1.7.3.0</version>
278
			</dependency>
279
			<dependency>
280
				<groupId>com.lowagie</groupId>
281
				<artifactId>itext</artifactId>
282
				<version>2.1.4</version>
283
			</dependency>
284
			<dependency>
285
				<groupId>javax.media</groupId>
286
				<artifactId>jai_core</artifactId>
287
				<version>1.1.3</version>
288
			</dependency>
289
			<dependency>
290
				<groupId>javax.media</groupId>
291
				<artifactId>jai_codec</artifactId>
292
				<version>1.1.3</version>
293
			</dependency>
294
			<dependency>
295
				<groupId>gov.nist.math</groupId>
296
				<artifactId>jama</artifactId>
297
				<version>unknown</version>
298
			</dependency>
299
			<dependency>
300
				<groupId>javax.help</groupId>
301
				<artifactId>javahelp</artifactId>
302
				<version>2.0.05</version>
303
			</dependency>
304
			<dependency>
305
				<groupId>jre</groupId>
306
				<artifactId>javaws</artifactId>
307
				<version>any</version>
308
				<type>jar</type>
309
				<scope>system</scope>
310
				<systemPath>${java.home}/lib/javaws.jar</systemPath>
311
			</dependency>
312
			<dependency>
313
				<groupId>jfree</groupId>
314
				<artifactId>jcommon</artifactId>
315
				<version>1.0.12</version>
316
			</dependency>
317
			<dependency>
318
				<groupId>jdom</groupId>
319
				<artifactId>jdom</artifactId>
320
				<version>1.0</version>
321
			</dependency>
322
			<dependency>
323
				<groupId>org.nfunk</groupId>
324
				<artifactId>jep</artifactId>
325
				<version>2.4.0</version>
326
			</dependency>
327
			<dependency>
328
				<groupId>jfree</groupId>
329
				<artifactId>jfreechart</artifactId>
330
				<version>1.0.7</version>
331
			</dependency>
332
			<dependency>
333
				<groupId>net.sf</groupId>
334
				<artifactId>jgraph</artifactId>
335
				<version>5.10.1.5</version>
336
			</dependency>
337
			<dependency>
338
				<groupId>net.sf</groupId>
339
				<artifactId>jgridshiftapi</artifactId>
340
				<version>1.0</version>
341
			</dependency>
342
			<dependency>
343
				<groupId>com.sun</groupId>
344
				<artifactId>jimi</artifactId>
345
				<version>1.1</version>
346
			</dependency>
347
			<dependency>
348
				<groupId>org.jpedal</groupId>
349
				<artifactId>jpedal</artifactId>
350
				<version>unknown</version>
351
			</dependency>
352
			<dependency>
353
				<groupId>net.sf</groupId>
354
				<artifactId>jsi</artifactId>
355
				<version>unknown</version>
356
			</dependency>
357
			<dependency>
358
				<groupId>com.vividsolutions</groupId>
359
				<artifactId>jts</artifactId>
360
				<version>1.9</version>
361
			</dependency>
362
			<dependency>
363
				<groupId>com.vividsolutions</groupId>
364
				<artifactId>jtsio</artifactId>
365
				<version>1.7</version>
366
			</dependency>
367
			<dependency>
368
				<groupId>junit</groupId>
369
				<artifactId>junit</artifactId>
370
				<version>3.8.1</version>
371
				<scope>test</scope>
372
			</dependency>
373
			<dependency>
374
				<groupId>jwizardcomponent</groupId>
375
				<artifactId>jwizardcomponent</artifactId>
376
				<version>1.2.2</version>
377
			</dependency>
378
			<dependency>
379
				<groupId>org.jzkit</groupId>
380
				<artifactId>jzkit2-core</artifactId>
381
				<version>2.0.0</version>
382
			</dependency>
383
			<dependency>
384
				<groupId>org.jzkit</groupId>
385
				<artifactId>jzkit2-z3950</artifactId>
386
				<version>2.0.0</version>
387
			</dependency>
388
			<dependency>
389
				<groupId>org.jzkit</groupId>
390
				<artifactId>jzkit2-origin</artifactId>
391
				<version>2.0.0</version>
392
			</dependency>
393
			<dependency>
394
				<groupId>net.sf.kxml</groupId>
395
				<artifactId>kxml2</artifactId>
396
				<version>2.2.2</version>
397
			</dependency>
398
			<dependency>
399
				<groupId>log4j</groupId>
400
				<artifactId>log4j</artifactId>
401
				<version>1.2.14</version>
402
				<scope>runtime</scope>
403
			</dependency>
404
			<dependency>
405
				<groupId>com.jgoodies</groupId>
406
				<artifactId>looks</artifactId>
407
				<version>2.1.4</version>
408
			</dependency>
409
			<dependency>
410
				<groupId>org.gvsig</groupId>
411
				<artifactId>org.gvsig.gpe.lib.api</artifactId>
412
				<version>2.1-SNAPSHOT</version>
413
			</dependency>
414
			<dependency>
415
				<groupId>org.gvsig</groupId>
416
				<artifactId>org.gvsig.gpe.lib.spi</artifactId>
417
				<version>2.1-SNAPSHOT</version>
418
			</dependency>
419
			<dependency>
420
				<groupId>org.gvsig</groupId>
421
				<artifactId>org.gvsig.gpe.lib.impl</artifactId>
422
				<version>2.1-SNAPSHOT</version>
423
			</dependency>
424
			<dependency>
425
				<groupId>org.gvsig</groupId>
426
				<artifactId>org.gvsig.gpe.prov.xml</artifactId>
427
				<version>2.1-SNAPSHOT</version>
428
			</dependency>
429
			<dependency>
430
				<groupId>org.gvsig</groupId>
431
				<artifactId>org.gvsig.gpe.prov.gml</artifactId>
432
				<version>2.1-SNAPSHOT</version>
433
			</dependency>
434
			<dependency>
435
				<groupId>org.gvsig</groupId>
436
				<artifactId>org.gvsig.gpe.prov.kml</artifactId>
437
				<version>2.1-SNAPSHOT</version>
438
			</dependency>
439
			<dependency>
440
				<groupId>org.gvsig</groupId>
441
				<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
442
				<version>2.0-SNAPSHOT</version>
443
			</dependency>
444
			<dependency>
445
				<groupId>org.gvsig</groupId>
446
				<artifactId>org.gvsig.xmlpull.lib.spi</artifactId>
447
				<version>2.0-SNAPSHOT</version>
448
			</dependency>
449
			<dependency>
450
				<groupId>org.gvsig</groupId>
451
				<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
452
				<version>2.0-SNAPSHOT</version>
453
			</dependency>
454
			<dependency>
455
				<groupId>org.gvsig</groupId>
456
				<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
457
				<version>2.0-SNAPSHOT</version>
458
			</dependency>
459
			<dependency>
460
				<groupId>org.gvsig</groupId>
461
				<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
462
				<version>2.0-SNAPSHOT</version>
463
			</dependency>
464
			<dependency>
465
				<groupId>org.gvsig</groupId>
466
				<artifactId>org.gvsig.xmpull.lib.impl</artifactId>
467
				<version>2.0-SNAPSHOT</version>
468
			</dependency>
469
			<dependency>
470
				<groupId>org.gvsig</groupId>
471
				<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
472
				<version>2.0-SNAPSHOT</version>
473
			</dependency>
474
			<dependency>
475
				<groupId>org.gvsig</groupId>
476
				<artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
477
				<version>2.0-SNAPSHOT</version>
478
			</dependency>
479
			<dependency>
480
				<groupId>com.ostermiller</groupId>
481
				<artifactId>ostermillerutils</artifactId>
482
				<version>1.4.3</version>
483
			</dependency>
484
			<dependency>
485
				<groupId>mysql</groupId>
486
				<artifactId>mysql-connector-java</artifactId>
487
				<version>5.1.6</version>
488
			</dependency>
489
			<dependency>
490
				<groupId>postgresql</groupId>
491
				<artifactId>postgresql</artifactId>
492
				<version>8.3-603.jdbc3</version>
493
			</dependency>
494
			<dependency>
495
				<groupId>es.unex</groupId>
496
				<artifactId>sextante</artifactId>
497
				<version>0.15</version>
498
			</dependency>
499
			<dependency>
500
				<groupId>es.unex</groupId>
501
				<artifactId>sextante</artifactId>
502
				<version>0.15</version>
503
				<classifier>gui</classifier>
504
			</dependency>
505
			<dependency>
506
				<groupId>org.slf4j</groupId>
507
				<artifactId>slf4j-api</artifactId>
508
				<version>1.5.5</version>
509
			</dependency>
510
			<dependency>
511
				<groupId>org.slf4j</groupId>
512
				<artifactId>slf4j-log4j12</artifactId>
513
				<version>1.5.5</version>
514
				<scope>runtime</scope>
515
			</dependency>
516
			<dependency>
517
				<groupId>spatialindex</groupId>
518
				<artifactId>spatialindex</artifactId>
519
				<version>unknown</version>
520
			</dependency>
521
			<dependency>
522
				<groupId>org.springframework</groupId>
523
				<artifactId>spring</artifactId>
524
				<version>1.2.8</version>
525
			</dependency>
526
			<dependency>
527
				<groupId>net.sf</groupId>
528
				<artifactId>sqljep</artifactId>
529
				<version>0.2</version>
530
			</dependency>
531
			<dependency>
532
				<groupId>net.sf.smc</groupId>
533
				<artifactId>smc</artifactId>
534
				<version>4.3</version>
535
			</dependency>
536
			<dependency>
537
				<groupId>soap</groupId>
538
				<artifactId>soap</artifactId>
539
				<version>2.3</version>
540
			</dependency>
541
			<dependency>
542
				<groupId>tablelayout</groupId>
543
				<artifactId>TableLayout</artifactId>
544
				<version>20050920</version>
545
			</dependency>
546
			<dependency>
547
				<groupId>java3d</groupId>
548
				<artifactId>vecmath</artifactId>
549
				<version>1.3.1</version>
550
			</dependency>
551
			<dependency>
552
				<groupId>xerces</groupId>
553
				<artifactId>xercesImpl</artifactId>
554
				<version>2.5.0</version>
555
			</dependency>
556
			<dependency>
557
				<groupId>zql</groupId>
558
				<artifactId>zql</artifactId>
559
				<version>unknown</version>
560
			</dependency>
561
		</dependencies>
562
	</dependencyManagement>
563
	<dependencies>
564
		<dependency>
565
			<groupId>junit</groupId>
566
			<artifactId>junit</artifactId>
567
		</dependency>
568
		<dependency>
569
			<groupId>org.slf4j</groupId>
570
			<artifactId>slf4j-api</artifactId>
571
		</dependency>
572
		<dependency>
573
			<groupId>org.slf4j</groupId>
574
			<artifactId>slf4j-log4j12</artifactId>
575
		</dependency>
576
		<dependency>
577
			<groupId>log4j</groupId>
578
			<artifactId>log4j</artifactId>
579
			<!--
580
				TODO: Change to runtime when everything becomes migrated to SLF4J
581
			-->
582
			<scope>compile</scope>
583
		</dependency>
584
		<dependency>
585
			<groupId>org.gvsig</groupId>
586
			<artifactId>org.gvsig.maven.base.tools</artifactId>
587
			<version>1.0.0-SNAPSHOT</version>
588
		</dependency>
589
	</dependencies>
590
	<build>
591
		<extensions>
592
			<extension>
593
				<groupId>org.gvsig.maven.wagon</groupId>
594
				<artifactId>wagon-ftp</artifactId>
595
				<version>0.2</version>
596
			</extension>
597
		</extensions>
598
		<pluginManagement>
599
			<plugins>
600
				<plugin>
601
					<artifactId>maven-antrun-plugin</artifactId>
602
					<dependencies>
603
						<dependency>
604
							<groupId>org.apache.ant</groupId>
605
							<artifactId>ant-trax</artifactId>
606
							<version>1.7.1</version>
607
						</dependency>
608
						<dependency>
609
							<groupId>xalan</groupId>
610
							<artifactId>xalan</artifactId>
611
							<version>2.6.0</version>
612
						</dependency>
613
					</dependencies>
614
				</plugin>
615
				<!--
616
					plugin> <groupId>org.apache.maven.plugins</groupId>
617
					<artifactId>maven-javadoc-plugin</artifactId> </plugin
618
				-->
619
			</plugins>
620
		</pluginManagement>
621
		<plugins>
622
			<plugin>
623
				<groupId>org.apache.maven.plugins</groupId>
624
				<artifactId>maven-dependency-plugin</artifactId>
625
				<executions>
626
					<execution>
627
						<id>unpack-build-tools</id>
628
						<phase>generate-sources</phase>
629
						<goals>
630
							<goal>unpack-dependencies</goal>
631
						</goals>
632
						<configuration>
633
							<includeArtifactIds>org.gvsig.maven.base.tools</includeArtifactIds>
634
							<outputDirectory>${project.build.directory}/org.gvsig.maven.base.tools</outputDirectory>
635
							<overWriteReleases>true</overWriteReleases>
636
							<overWriteSnapshots>true</overWriteSnapshots>
637
						</configuration>
638
					</execution>
639
				</executions>
640
			</plugin>
641
			<plugin>
642
				<groupId>org.apache.maven.plugins</groupId>
643
				<artifactId>maven-compiler-plugin</artifactId>
644
				<configuration>
645
					<source>1.5</source>
646
					<target>1.5</target>
647
					<!-- put your configurations here -->
648
					<encoding>ISO-8859-1</encoding>
649
					<!--<failOnError>false</failOnError>-->
650
				</configuration>
651
			</plugin>
652
			<plugin>
653
				<groupId>org.apache.maven.plugins</groupId>
654
				<artifactId>maven-resources-plugin</artifactId>
655
				<configuration>
656
					<encoding>ISO-8859-1</encoding>
657
				</configuration>
658
			</plugin>
659
			<plugin>
660
				<groupId>org.apache.maven.plugins</groupId>
661
				<artifactId>maven-eclipse-plugin</artifactId>
662
				<configuration>
663
					<downloadSources>true</downloadSources>
664
					<downloadJavadocs>true</downloadJavadocs>
665
					<projectNameTemplate>${project.name}</projectNameTemplate>
666
				</configuration>
667
			</plugin>
668
			<plugin>
669
				<groupId>org.apache.maven.plugins</groupId>
670
				<artifactId>maven-source-plugin</artifactId>
671
				<executions>
672
					<execution>
673
						<id>attach-sources</id>
674
						<goals>
675
							<goal>jar</goal>
676
						</goals>
677
					</execution>
678
				</executions>
679
			</plugin>
680
			<plugin>
681
				<groupId>org.apache.maven.plugins</groupId>
682
				<artifactId>maven-checkstyle-plugin</artifactId>
683
				<dependencies>
684
					<dependency>
685
						<groupId>checkstyle</groupId>
686
						<artifactId>checkstyle</artifactId>
687
						<version>4.4</version>
688
					</dependency>
689
					<dependency>
690
						<groupId>checkstyle</groupId>
691
						<artifactId>checkstyle-optional</artifactId>
692
						<version>4.4</version>
693
					</dependency>
694
					<dependency>
695
						<groupId>org.gvsig</groupId>
696
						<artifactId>org.gvsig.maven.base.tools</artifactId>
697
						<version>2.0-SNAPSHOT</version>
698
					</dependency>
699
				</dependencies>
700
			</plugin>
701
			<plugin>
702
				<artifactId>maven-surefire-plugin</artifactId>
703
				<configuration>
704
					<forkMode>once</forkMode>
705
					<environmentVariables>
706
						<LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
707
						<DYLD_LIBRARY_PATH>${user.home}/.depman/lib</DYLD_LIBRARY_PATH>
708
						<PATH>${user.home}/.depman/bin</PATH>
709
					</environmentVariables>
710
				</configuration>
711
			</plugin>
712
			<plugin>
713
				<groupId>org.apache.maven.plugins</groupId>
714
				<artifactId>maven-javadoc-plugin</artifactId>
715

  
716
				<configuration>
717
					<encoding>ISO-8859-1</encoding>
718
					<footer></footer>
719
					<header></header>
720
					<keywords>true</keywords>
721
					<links>
722
						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
723
						<link>http://maven.apache.org/ref/current/apidocs</link>
724
						<link>http://www.slf4j.org/api/</link>
725
						<link>http://junit.sourceforge.net/javadoc/</link>
726
					</links>
727
				</configuration>
728
			</plugin>
729
			<plugin>
730
				<groupId>org.apache.maven.plugins</groupId>
731
				<artifactId>maven-release-plugin</artifactId>
732
				<configuration>
733
					<tagBase>https://gvsig.org/svn/gvSIG/tags</tagBase>
734
				</configuration>
735
			</plugin>
736
		</plugins>
737
	</build>
738
	<profiles>
739
		<profile>
740
			<id>release</id>
741
			<activation>
742
				<activeByDefault>true</activeByDefault>
743
			</activation>
744
			<build>
745
				<plugins>
746
					<plugin>
747
						<groupId>org.apache.maven.plugins</groupId>
748
						<artifactId>maven-javadoc-plugin</artifactId>
749

  
750
						<executions>
751
							<execution>
752
								<id>attach-javadocs</id>
753
								<goals>
754
									<goal>jar</goal>
755
								</goals>
756
							</execution>
757
						</executions>
758
					</plugin>
759
				</plugins>
760
			</build>
761
		</profile>
762
		<profile>
763
			<id>cdc</id>
764
			<activation>
765
				<activeByDefault>false</activeByDefault>
766
			</activation>
767
			<dependencies>
768
				<dependency>
769
					<groupId>com.sun.phoneme</groupId>
770
					<artifactId>btclasses</artifactId>
771
					<version>bn102</version>
772
					<type>zip</type>
773
				</dependency>
774
				<dependency>
775
					<groupId>com.sun.phoneme</groupId>
776
					<artifactId>rt</artifactId>
777
					<version>bn102</version>
778
				</dependency>
779
				<dependency>
780
					<groupId>org.gvsig.mobile</groupId>
781
					<artifactId>cdc-addons</artifactId>
782
					<version>1.0-SNAPSHOT</version>
783
				</dependency>
784
			</dependencies>
785
			<build>
786
				<!--
787
					finalName>${project.artifactId}.cdc-${project.version}-${buildnumber}</finalName
788
				-->
789
				<!--finalName>${project.artifactId}-cdc-${project.version}</finalName-->
790
				<plugins>
791
					<plugin>
792
						<groupId>org.apache.maven.plugins</groupId>
793
						<artifactId>maven-compiler-plugin</artifactId>
794
						<configuration>
795
							<source>1.4</source>
796
							<target>1.4</target>
797
							<compilerArguments>
798
								<bootclasspath>${cdc-runtime}</bootclasspath>
799
							</compilerArguments>
800
						</configuration>
801
					</plugin>
802
				</plugins>
803
			</build>
804
			<repositories>
805
				<repository>
806
					<id>gvsig-public-http-repository</id>
807
					<name>gvSIG maven public HTTP repository</name>
808
					<url>http://downloads.gvsig.org/pub/gvSIG-mobile/maven-repository</url>
809
				</repository>
810
			</repositories>
811
			<distributionManagement>
812
				<repository>
813
					<id>gvsig-ftp-repository</id>
814
					<name>gvSIG Mobile maven FTP repository</name>
815
					<url>ftpes://downloads.gvsig.org/anon/pub/gvSIG-mobile/maven-repository</url>
816
				</repository>
817
				<snapshotRepository>
818
					<id>gvsig-ftp-repository</id>
819
					<name>gvSIG Mobile maven FTP repository</name>
820
					<url>ftpes://downloads.gvsig.org/anon/pub/gvSIG-mobile/maven-repository</url>
821
				</snapshotRepository>
822
			</distributionManagement>
823
		</profile>
824

  
825
		<profile>
826
			<id>windows-profile</id>
827
			<activation>
828
				<os>
829
					<family>windows</family>
830
				</os>
831
			</activation>
832
			<properties>
833
				<native-platform>win</native-platform>
834
				<native-distribution>nt</native-distribution>
835
				<native-compiler>vs8</native-compiler>
836
				<native-arch>i386</native-arch>
837
				<native-libraryType>dynamic</native-libraryType>
838
				<native-classifier>${native-platform}-${native-distribution}-${native-compiler}-${native-arch}-${native-libraryType}</native-classifier>
839
			</properties>
840
			<build>
841
				<plugins>
842
					<plugin>
843
						<groupId>org.apache.maven.plugins</groupId>
844
						<artifactId>maven-dependency-plugin</artifactId>
845
						<executions>
846
							<execution>
847
								<id>unpack-dependencies</id>
848
								<phase>generate-sources</phase>
849
								<goals>
850
									<goal>unpack-dependencies</goal>
851
								</goals>
852
								<configuration>
853
									<includeTypes>tar.gz</includeTypes>
854
									<outputDirectory>${user.home}/.depman</outputDirectory>
855
									<overWriteReleases>true</overWriteReleases>
856
									<overWriteSnapshots>true</overWriteSnapshots>
857
								</configuration>
858
							</execution>
859
						</executions>
860
					</plugin>
861
				</plugins>
862
			</build>
863
		</profile>
864
		<profile>
865
			<id>linux-profile</id>
866
			<activation>
867
				<os>
868
					<family>linux</family>
869
				</os>
870
			</activation>
871
			<properties>
872
				<native-platform>linux</native-platform>
873
				<native-distribution>Ubuntu-9.04</native-distribution>
874
				<native-compiler>gcc4</native-compiler>
875
				<native-arch>i386</native-arch>
876
				<native-libraryType>dynamic</native-libraryType>
877
				<native-classifier>${native-platform}-${native-distribution}-${native-compiler}-${native-arch}-${native-libraryType}</native-classifier>
878
			</properties>
879
			<build>
880
				<plugins>
881
					<plugin>
882
						<groupId>org.apache.maven.plugins</groupId>
883
						<artifactId>maven-dependency-plugin</artifactId>
884
						<executions>
885
							<execution>
886
								<id>copy-dependencies</id>
887
								<phase>generate-sources</phase>
888
								<goals>
889
									<goal>copy-dependencies</goal>
890
								</goals>
891
								<configuration>
892
									<includeTypes>tar.gz</includeTypes>
893
									<outputDirectory>${project.build.directory}/native_dependencies</outputDirectory>
894
									<overWriteReleases>true</overWriteReleases>
895
									<overWriteSnapshots>true</overWriteSnapshots>
896
									<overWriteIfNewer>true</overWriteIfNewer>
897
								</configuration>
898
							</execution>
899
						</executions>
900
					</plugin>
901
					<plugin>
902
						<groupId>org.codehaus.mojo</groupId>
903
						<artifactId>exec-maven-plugin</artifactId>
904
						<executions>
905
							<execution>
906
								<id>unpack-dependencies</id>
907
								<phase>generate-sources</phase>
908
								<goals>
909
									<goal>exec</goal>
910
								</goals>
911
								<configuration>
912
									<executable>sh</executable>
913
									<arguments>
914
										<argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
915
										<argument>${project.build.directory}/native_dependencies</argument>
916
										<argument>${user.home}/.depman</argument>
917
									</arguments>
918
								</configuration>
919
							</execution>
920
						</executions>
921
					</plugin>
922
				</plugins>
923
			</build>
924
		</profile>
925
		<profile>
926
			<id>mac-profile</id>
927
			<activation>
928
				<os>
929
					<family>mac</family>
930
				</os>
931
			</activation>
932
			<properties>
933
				<native-platform>mac</native-platform>
934
				<native-distribution>10.5</native-distribution>
935
				<native-compiler>gcc4</native-compiler>
936
				<native-arch>universal</native-arch>
937
				<native-libraryType>dynamic</native-libraryType>
938
				<native-classifier>${native-platform}-${native-distribution}-${native-compiler}-${native-arch}-${native-libraryType}</native-classifier>
939
			</properties>
940
			<build>
941
				<plugins>
942
					<plugin>
943
						<groupId>org.apache.maven.plugins</groupId>
944
						<artifactId>maven-dependency-plugin</artifactId>
945
						<executions>
946
							<execution>
947
								<id>unpack-build-tools</id>
948
								<phase>generate-sources</phase>
949
								<goals>
950
									<goal>unpack-dependencies</goal>
951
								</goals>
952
								<configuration>
953
									<includeArtifactIds>org.gvsig.maven.base.tools</includeArtifactIds>
954
									<outputDirectory>${project.build.directory}/org.gvsig.maven.base.tools</outputDirectory>
955
									<overWriteReleases>true</overWriteReleases>
956
									<overWriteSnapshots>true</overWriteSnapshots>
957
								</configuration>
958
							</execution>
959
						</executions>
960
					</plugin>
961
					<plugin>
962
						<groupId>org.apache.maven.plugins</groupId>
963
						<artifactId>maven-dependency-plugin</artifactId>
964
						<executions>
965
							<execution>
966
								<id>copy-dependencies</id>
967
								<phase>generate-sources</phase>
968
								<goals>
969
									<goal>copy-dependencies</goal>
970
								</goals>
971
								<configuration>
972
									<includeTypes>tar.gz</includeTypes>
973
									<outputDirectory>${project.build.directory}/native_dependencies</outputDirectory>
974
									<overWriteReleases>true</overWriteReleases>
975
									<overWriteSnapshots>true</overWriteSnapshots>
976
									<overWriteIfNewer>true</overWriteIfNewer>
977
								</configuration>
978
							</execution>
979
						</executions>
980
					</plugin>
981
					<plugin>
982
						<groupId>org.codehaus.mojo</groupId>
983
						<artifactId>exec-maven-plugin</artifactId>
984
						<executions>
985
							<execution>
986
								<id>unpack-dependencies</id>
987
								<phase>generate-sources</phase>
988
								<goals>
989
									<goal>exec</goal>
990
								</goals>
991
								<configuration>
992
									<executable>sh</executable>
993
									<arguments>
994
										<argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
995
										<argument>${project.build.directory}/native_dependencies</argument>
996
										<argument>${user.home}/.depman</argument>
997
									</arguments>
998
								</configuration>
999
							</execution>
1000
						</executions>
1001
					</plugin>
1002
				</plugins>
1003
			</build>
1004
		</profile>
1005
		<profile>
1006
			<id>eclipse-project</id>
1007
			<build>
1008
				<defaultGoal>antrun:run</defaultGoal>
1009
			</build>
1010
		</profile>
1011
	</profiles>
1012
	<reporting>
1013
		<plugins>
1014
			<plugin>
1015
				<groupId>org.apache.maven.plugins</groupId>
1016
				<artifactId>maven-checkstyle-plugin</artifactId>
1017
				<configuration>
1018
					<configLocation>checkstyle/checkstyle_gvsig.xml</configLocation>
1019
					<headerLocation>checkstyle/gvsig.header</headerLocation>
1020
					<propertyExpansion>
1021
						basedir=${basedir}
1022
                    </propertyExpansion>
1023
				</configuration>
1024
			</plugin>
1025
			<plugin>
1026
				<groupId>org.apache.maven.plugins</groupId>
1027
				<artifactId>maven-javadoc-plugin</artifactId>
1028
				<configuration>
1029
					<docTitle>${project.name} ${project.version}</docTitle>
1030
					<encoding>ISO-8859-1</encoding>
1031
					<footer></footer>
1032
					<header></header>
1033
					<keywords>true</keywords>
1034
					<links>
1035
						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
1036
						<link>http://maven.apache.org/ref/current/apidocs</link>
1037
						<link>http://www.slf4j.org/api/</link>
1038
						<link>http://junit.sourceforge.net/javadoc/</link>
1039
					</links>
1040
				</configuration>
1041
			</plugin>
1042
			<plugin>
1043
				<groupId>org.apache.maven.plugins</groupId>
1044
				<artifactId>maven-jxr-plugin</artifactId>
1045
			</plugin>
1046
			<plugin>
1047
				<groupId>org.apache.maven.plugins</groupId>
1048
				<artifactId>maven-pmd-plugin</artifactId>
1049
				<configuration>
1050
					<targetJdk>1.5</targetJdk>
1051
				</configuration>
1052
			</plugin>
1053
			<!--
1054
				CHANGES & CHANGELOG PLUGINS <plugin>
1055
				<groupId>org.apache.maven.plugins</groupId>
1056
				<artifactId>maven-changelog-plugin</artifactId> <configuration>
1057
				<type>range</type> <range>60</range> </configuration> </plugin> <plugin>
1058
				<groupId>org.apache.maven.plugins</groupId>
1059
				<artifactId>maven-changes-plugin</artifactId> <reportSets> <reportSet>
1060
				<reports> <report>changes-report</report> </reports> </reportSet>
1061
				</reportSets> <configuration> <issueLinkTemplate>
1062
				https://gvsig.org/trac/gvSIG/ticket/%ISSUE% </issueLinkTemplate>
1063
				</configuration> </plugin>
1064
			-->
1065
			<plugin>
1066
				<groupId>org.codehaus.mojo</groupId>
1067
				<artifactId>javancss-maven-plugin</artifactId>
1068
			</plugin>
1069
			<plugin>
1070
				<groupId>org.apache.maven.plugins</groupId>
1071
				<artifactId>maven-surefire-report-plugin</artifactId>
1072
			</plugin>
1073
			<plugin>
1074
				<groupId>org.codehaus.mojo</groupId>
1075
				<artifactId>cobertura-maven-plugin</artifactId>
1076
			</plugin>
1077
			<plugin>
1078
				<groupId>org.codehaus.mojo</groupId>
1079
				<artifactId>taglist-maven-plugin</artifactId>
1080
				<configuration>
1081
					<tags>
1082
						<tag>TODO</tag>
1083
						<tag>FIXME</tag>
1084
						<tag>@todo</tag>
1085
						<tag>@deprecated</tag>
1086
						<tag>DOCUMENT ME!</tag>
1087
					</tags>
1088
				</configuration>
1089
			</plugin>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff