Revision 37400

View differences:

tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/README.txt
1
The first time you checkout the current project to a new workspace, 
2
you have to prepare it to be able to work easily with maven from
3
eclipse itself.
4

  
5
Perform the following steps:
6

  
7
1.- Launch the *prepare-workspace.xml* ant build file. 
8
    You can do it by loading the file into the ant view, 
9
    and running the default task, or right-clicking the 
10
    file from the package explorer or the navigator and
11
    select the option: *Run as > Ant build*. 
12
    
13
2.- Restart eclipse.
14

  
15
3.- Import the subprojects of the project you have just checked out.
16

  
17
Those steps are only needed once per workspace.     
18

  
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/distribution/distribution.xml
1
<assembly>
2
</assembly>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Fri Nov 18 13:19:15 CET 2011
3
buildNumber=12
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>org.gvsig.newlayer.app</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
	</buildSpec>
9
	<natures>
10
	</natures>
11
</projectDescription>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/distribution/distribution.xml
1
<assembly>
2
	<id>distribution</id>
3
	<formats>
4
		<format>dir</format>
5
	</formats>
6
	<fileSets>
7
		<!-- Estructure for the extension -->
8
		<fileSet>
9
			<directory>src/main/resources</directory>
10
			<outputDirectory>${extension.install.dir.name}
11
			</outputDirectory>
12
		</fileSet>
13
	</fileSets>
14
    <files>
15
        <file>
16
            <source>package.info</source>
17
            <outputDirectory>${extension.install.dir.name}</outputDirectory>
18
        </file>
19
    </files>	
20
	<dependencySets>
21
		<dependencySet>
22
			<outputDirectory>${extension.install.dir.name}/${library-dir}
23
			</outputDirectory>
24
			<includes>
25
				<include>org.gvsig:org.gvsig.newlayer.app.extension</include>
26
				<include>org.gvsig:org.gvsig.newlayer.lib.api</include>
27
				<include>org.gvsig:org.gvsig.newlayer.lib.impl</include>
28
				<include>org.gvsig:org.gvsig.newlayer.prov.generic</include>
29
			</includes>
30
		</dependencySet>
31
	</dependencySets>
32
</assembly>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Fri Nov 18 13:19:16 CET 2011
3
buildNumber=12
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/resources/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="org.gvsig.app" />
4
	<resourceBundle name="text"/>
5
	<libraries library-dir="lib"/>
6
	<extensions>
7
		<extension class-name="org.gvsig.newlayer.app.extension.NewLayerExtension"
8
			description=""
9
			active="true"
10
			priority="1">
11
			<menu text="Vista/new_layer"
12
				position="30090"
13
				action-command="NewLayer"/>				
14
		</extension>		
15
		<!-- <extension class-name="org.gvsig.newlayer.app.extension.ExporttoTableExtension"
16
            description=""
17
            active="true"
18
            priority="1">
19
            <menu text="Tabla/new_layer"
20
                position="50"
21
                action-command="NewLayer"/>             
22
        </extension> -->        
23
	</extensions>
24
</plugin-config>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/resources/build.number
1
#Build Number for ANT. Do not edit!
2
#Tue Apr 28 16:00:47 CEST 2009
3
build.number=2005
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/resources/org/gvsig/newlayer/app/extension/i18n/text.properties
1
add_table_to_project=Desea a?adir la tabla al proyecto?
2
add_table=A?adir tabla
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/resources/org/gvsig/newlayer/app/extension/i18n/text_en.properties
1
add_table_to_project=Add the table to the project?
2
add_table=Add table
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/java/org/gvsig/newlayer/app/extension/package.html
1
<?xml version="1.0" encoding="UTF-8" ?>
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
<head>
5
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
<title>org.gvsig.newlayer package documentation</title>
7
</head>
8
<body>
9

  
10
	<p>NewLayer gvSIG extension</p>
11
	
12
	<p>
13
	Shows NewLayer into gvSIG.
14
	</p>
15

  
16
</body>
17
</html>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/main/java/org/gvsig/newlayer/app/extension/NewLayerExtension.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.newlayer.app.extension;
23

  
24
import javax.swing.JOptionPane;
25

  
26
import org.gvsig.andami.plugins.Extension;
27
import org.gvsig.app.ApplicationLocator;
28
import org.gvsig.app.ApplicationManager;
29
import org.gvsig.app.project.documents.view.ViewDocument;
30
import org.gvsig.app.project.documents.view.ViewManager;
31
import org.gvsig.newlayer.NewLayerLocator;
32
import org.gvsig.newlayer.NewLayerManager;
33
import org.gvsig.newlayer.NewLayerService;
34
import org.gvsig.newlayer.NewLayerWizard;
35
import org.gvsig.tools.swing.api.ToolsSwingLocator;
36
import org.gvsig.tools.swing.api.windowmanager.WindowManager;
37

  
38
/**
39
 * @author gvSIG Team
40
 * @version $Id$
41
 * 
42
 */
43
public class NewLayerExtension extends Extension {
44
	
45
	private ViewDocument view = null;
46

  
47
	public void initialize() {
48
		
49
	}
50

  
51
	@Override
52
	public void postInitialize() {
53
		super.postInitialize();
54
	}
55

  
56
	public void execute(String actionCommand) {
57
		
58
		ApplicationManager application = ApplicationLocator.getManager();
59
		ViewDocument view = (ViewDocument) application.getActiveDocument(ViewManager.TYPENAME);
60

  
61
		if (view != null) {
62
			NewLayerManager manager = NewLayerLocator.getManager();
63
			NewLayerService service = manager.createNewLayerService(view.getMapContext());
64
			NewLayerWizard wizard = manager.createNewLayerWizard(service);
65
			
66
			WindowManager windowMgr = ToolsSwingLocator.getWindowManager();
67
			windowMgr.showWindow(wizard, "New layer wizard", WindowManager.MODE.DIALOG);
68
		}
69
	}
70

  
71
	public boolean isEnabled() {
72
		
73
		ApplicationManager application = ApplicationLocator.getManager();
74
		view = (ViewDocument) application.getActiveDocument(ViewManager.TYPENAME);
75
		return (view != null);
76
		
77
	}
78

  
79
	public boolean isVisible() {
80
		
81
		ApplicationManager application = ApplicationLocator.getManager();
82
		view = (ViewDocument) application.getActiveDocument(ViewManager.TYPENAME);
83
		return (view != null);
84
		
85
	}
86
	
87
	public ViewDocument getView() {
88
		return view;
89
	}
90
	
91
}
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!-- 
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<!-- 
17
	Activate logging messages of DEBUG level of higher only for the
18
	org.gvsig.tools packages.
19
	You can put full classes names or packages instead, to configure
20
	logging for all the classes and subpackages of the package.
21
	-->
22
	<category name="org.gvsig.tools">
23
		<priority value="DEBUG" />
24
	</category>
25
	<category name="org.gvsig.newlayer">
26
		<priority value="DEBUG" />
27
	</category>
28

  
29
	<!-- 
30
	By default, show only logging messages of INFO level or higher, 
31
	through the previously configured CONSOLE appender. 
32
	-->
33
	<root>
34
		<priority value="INFO" />
35
		<appender-ref ref="CONSOLE" />
36
	</root>
37
</log4j:configuration>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/src/test/resources/README.txt
1
Put into this folder the resources needed by your test classes.
2

  
3
This folder is added to the Tests classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your tests classes.
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/org.gvsig.newlayer.app.extension/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 http://maven.apache.org/maven-v4_0_0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<artifactId>org.gvsig.newlayer.app.extension</artifactId>
7
	<packaging>jar</packaging>
8
	<name>Tools: New layer</name>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.newlayer.app</artifactId>
12
		<version>1.0.0-SNAPSHOT</version>
13
	</parent>
14

  
15
	<dependencies>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.andami</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
		<dependency>
22
			<groupId>org.gvsig</groupId>
23
			<artifactId>org.gvsig.i18n</artifactId>
24
            <scope>compile</scope>
25
		</dependency>
26
		<dependency>
27
			<groupId>org.gvsig</groupId>
28
			<artifactId>org.gvsig.tools.lib</artifactId>
29
			<scope>compile</scope>
30
		</dependency>		
31
		<dependency>
32
			<groupId>org.gvsig</groupId>
33
			<artifactId>org.gvsig.tools.swing.api</artifactId>
34
			<scope>compile</scope>
35
		</dependency>		
36
		<dependency>
37
			<groupId>org.gvsig</groupId>
38
			<artifactId>org.gvsig.ui</artifactId>
39
			<scope>compile</scope>
40
		</dependency>		
41
		<dependency>
42
            <groupId>org.gvsig</groupId>
43
            <artifactId>org.gvsig.projection</artifactId>
44
            <scope>compile</scope>
45
        </dependency>
46
        <dependency>
47
            <groupId>org.gvsig</groupId>
48
            <artifactId>org.gvsig.fmap.mapcontext</artifactId>
49
            <scope>compile</scope>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.gvsig</groupId>
53
            <artifactId>org.gvsig.fmap.dal</artifactId>
54
            <scope>compile</scope>
55
        </dependency>
56
		<dependency>
57
			<groupId>org.gvsig</groupId>
58
			<artifactId>org.gvsig.newlayer.lib.api</artifactId>
59
            <scope>compile</scope>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.gvsig</groupId>
63
			<artifactId>org.gvsig.newlayer.lib.impl</artifactId>
64
            <scope>runtime</scope>
65
		</dependency>
66
	    <dependency>
67
            <groupId>org.gvsig</groupId>
68
            <artifactId>org.gvsig.newlayer.prov.generic</artifactId>
69
            <scope>runtime</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.gvsig</groupId>
73
            <artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
74
            <scope>compile</scope>
75
        </dependency>   
76
        <dependency>
77
            <groupId>org.gvsig</groupId>
78
            <artifactId>org.gvsig.app</artifactId>
79
            <scope>compile</scope>
80
        </dependency>   
81
	</dependencies>
82
	<profiles>
83
		<profile>
84
			<id>gvsig-install</id>
85
			<activation>
86
				<activeByDefault>true</activeByDefault>
87
			</activation>
88
			<properties>
89
				<!--
90
					Default gvSIG installation folder relative to the current workspace
91
				-->
92
				<gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
93
			</properties>
94
		</profile>
95
	</profiles>
96
	
97
</project>
0 98

  
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/prepare-workspace.xml
1
<project name="org.gvsig.initial.build" default="prepare-workspace">
2

  
3
	<dirname property="org.gvsig.initial.build.basedir" file="${ant.file.org.gvsig.initial.build}" />
4

  
5
	<property name="workspace.basedir" value="${org.gvsig.initial.build.basedir}/.." />
6
	<property name="build.basedir" value="${workspace.basedir}/org.gvsig.maven.base.build" description="Eclipse workspace location" />
7
	<property name="build.jar.version" value="1.0.6-SNAPSHOT" />
8
	<property name="build.jar.file" value="org.gvsig.maven.base.build-${build.jar.version}.jar" />
9

  
10
	<property name="ant.libs.dir" location="${build.basedir}" description="Additional ant tasks libs folder" />
11

  
12
	<target name="check-maven-base-build-available">
13
		<available file="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" property="maven-base-build-available" />
14
	</target>
15

  
16
	<target name="get-maven-base-build-local" depends="check-maven-base-build-available" if="maven-base-build-available">
17
		<!-- Unzip de build jar file from the maven repository into the workspace root folder -->
18
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
19
			<zipfileset src="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}">
20
				<patternset>
21
					<exclude name="META-INF/**" />
22
				</patternset>
23
			</zipfileset>
24
		</copy>
25
	</target>
26

  
27
	<target name="get-maven-base-build-remote" depends="check-maven-base-build-available" unless="maven-base-build-available">
28
		<mkdir dir="target" />
29

  
30
		<!-- Download the build jar file -->
31
		<get src="http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" dest="target/${build.jar.file}" verbose="true" />
32

  
33
		<!-- Unzip de build jar file into the workspace root folder -->
34
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
35
			<zipfileset src="target/${build.jar.file}">
36
				<patternset>
37
					<exclude name="META-INF/**" />
38
				</patternset>
39
			</zipfileset>
40
		</copy>
41

  
42
	</target>
43

  
44
	<target name="prepare-workspace" depends="get-maven-base-build-local,get-maven-base-build-remote">
45

  
46
		<mkdir dir="target" />
47

  
48
		<chmod dir="${build.basedir}/maven/bin" perm="u+x" includes="m2,mvn,mvnDebug" />
49

  
50
		<!-- Copy the maven launchers to the workspace metadata folder -->
51
		<copy todir="${workspace.basedir}/.metadata">
52
			<fileset dir="${build.basedir}/eclipse-launchers">
53
				<exclude name="**/org.eclipse.jdt.core.prefs" />
54
				<exclude name="**/org.eclipse.core.variables.prefs" />
55
			</fileset>
56
		</copy>
57

  
58
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" append="true">
59
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.jdt.core.prefs" />
60
		</concat>
61
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" append="true">
62
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.core.variables.prefs" />
63
		</concat>
64

  
65
		<!-- Configure the eclipse workspace -->
66
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-configure-eclipse-workspace" />
67

  
68
		<!-- Configure the gvSIG profile -->
69
		<ant antfile="${build.basedir}/check-gvsig-profile.xml" target="initialize" />
70

  
71
		<property name="user-settings-file-location" value="${user.home}/.m2/settings.xml" />
72

  
73
		<taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask">
74
			<classpath>
75
				<pathelement location="${ant.libs.dir}/com.oopsconsultancy.xmltask-1.16.1.jar" />
76
			</classpath>
77
		</taskdef>
78

  
79
		<xmltask source="${user-settings-file-location}" dest="${user-settings-file-location}">
80
			<copy path="//:settings/:profiles/:profile[:id/text() = 'gvsig-install']/:properties/:gvsig.install.dir/text()" property="current-gvsig-location" />
81
		</xmltask>
82

  
83
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
84
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
85

  
86
		<!-- Compile, install and generate eclipse projects -->
87
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-install-and-eclipse-eclipse" />
88

  
89
		<echo>INFORMATION!!!</echo>
90
		<echo>Restart eclipse and then proceed to import the subprojects contained into the main project</echo>
91

  
92
		<!-- TODO: copiar al proyecto de configuraciĆ³n general -->
93
	</target>
94

  
95
	<target name="clean">
96
		<delete dir="target" />
97
	</target>
98

  
99
</project>
tags/v2_0_0_Build_2041/extensions/org.gvsig.newlayer.app/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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<artifactId>org.gvsig.newlayer.app</artifactId>
7
	<packaging>pom</packaging>
8
	<version>1.0.0-SNAPSHOT</version>
9
	<name>org.gvsig.newlayer.app</name>
10
	<description>Extension of the newlayer example project</description>
11
	<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/docs/reference/org.gvsig.newlayer/${project.version}/basic/org.gvsig.newlayer.app</url>
12
    <parent>
13
        <groupId>org.gvsig</groupId>
14
        <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
15
        <version>1.0.8-SNAPSHOT</version>
16
    </parent>
17

  
18
	<scm>
19
		<connection>scm:svn:https://svn.forge.osor.eu/svn/gvsig-newlayer/org.gvsig.newlayer/extension/trunk</connection>
20
		<developerConnection>scm:svn:https://svn.forge.osor.eu/svn/gvsig-newlayer/org.gvsig.newlayer/extension/trunk</developerConnection>
21
		<url>https://forge.osor.eu/plugins/scmsvn/viewcvs.php/org.gvsig.newlayer/extension/trunk/?root=gvsig-newlayer</url>
22
	</scm>
23

  
24
    <developers>
25
        <developer>
26
            <id>jpiera</id>
27
            <name>Jorge Piera</name>
28
            <email>jpiera@gvsig.org</email>
29
            <roles>
30
                <role>Architect</role>
31
                <role>Developer</role>
32
            </roles>
33
        </developer>
34
        <developer>
35
            <id>jjdelcerro</id>
36
            <name>Joaqu?n Jos? del Cerro</name>
37
            <email>jjdelcerro@gvsig.org</email>
38
            <roles>
39
                <role>Architect</role>          
40
            </roles>
41
        </developer>        
42
    </developers>
43

  
44
	<distributionManagement>
45
		<site>
46
			<id>gvsig-repository</id>
47
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/docs/reference/org.gvsig.newlayer/${project.version}/basic/org.gvsig.newlayer.app</url>
48
		</site>
49
	</distributionManagement>
50
	<repositories>
51
		<repository>
52
			<id>gvsig-public-http-repository</id>
53
			<name>gvSIG maven public HTTP repository</name>
54
			<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
55
			<releases>
56
				<enabled>true</enabled>
57
				<updatePolicy>daily</updatePolicy>
58
				<checksumPolicy>warn</checksumPolicy>
59
			</releases>
60
			<snapshots>
61
				<enabled>true</enabled>
62
				<updatePolicy>daily</updatePolicy>
63
				<checksumPolicy>warn</checksumPolicy>
64
			</snapshots>
65
		</repository>
66
	</repositories>
67
	<build>
68
		<plugins>
69
			<plugin>
70
				<groupId>org.apache.maven.plugins</groupId>
71
				<artifactId>maven-release-plugin</artifactId>
72
				<configuration>
73
					<tagBase>https://svn.forge.osor.eu/svn/gvsig-newlayer/org.gvsig.newlayer/extension/tags</tagBase>
74
				</configuration>
75
			</plugin>
76
		</plugins>
77
	</build>
78
	<dependencyManagement>
79
        <dependencies>          
80
            <dependency>
81
                <groupId>org.gvsig</groupId>
82
                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
83
                <version>2.0.1-SNAPSHOT</version>
84
                <type>pom</type>
85
                <scope>import</scope>
86
            </dependency>
87
			<dependency>
88
                <groupId>org.gvsig</groupId>
89
                <artifactId>org.gvsig.app</artifactId>
90
                <version>2.0-SNAPSHOT</version>
91
            </dependency>
92
			<dependency>
93
				<groupId>org.gvsig</groupId>
94
				<artifactId>org.gvsig.newlayer.lib.api</artifactId>
95
				<version>1.0.0-SNAPSHOT</version>
96
			</dependency>
97
			<dependency>
98
				<groupId>org.gvsig</groupId>
99
				<artifactId>org.gvsig.newlayer.lib.impl</artifactId>
100
				<version>1.0.0-SNAPSHOT</version>
101
				<scope>runtime</scope>
102
			</dependency>
103
			<dependency>
104
                <groupId>org.gvsig</groupId>
105
                <artifactId>org.gvsig.newlayer.prov.generic</artifactId>
106
                <version>1.0.0-SNAPSHOT</version>
107
                <scope>runtime</scope>
108
            </dependency> 
109
		</dependencies>
110
	</dependencyManagement>
111

  
112
	<modules>
113
		<module>org.gvsig.newlayer.app.extension</module>
114
	</modules>
115
</project>
0 116

  

Also available in: Unified diff