Revision 44

View differences:

org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.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

  
org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/README-ECLIPSE.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

  
org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/README.rst
1
===============
2
gvSIG Educa
3
===============
4

  
5
---------------------
6
Thematic Map add-ons
7
---------------------
8

  
9
Description
10
==============
11

  
12
This folder contains the sources of the add-on which uses Thematic Map functionality.
13

  
14
Requirements
15
==============
16

  
17
* Maven 2.6 or higher
18

  
19
* Java JDK 1.5 or higher
20

  
21
* gvSIG 2.0 (Build number 2042 or higher) installed
22

  
23
For eclipse
24
-------------
25

  
26
See `developer guide at gvSIG.org <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/gvsig-devel-guide/2.0.0/>`_ and the file ``REAME-ECLIPSE.txt``
27

  
28

  
29
Contents
30
==========
31

  
32
org.gvsig.educa.thematicmap.app.viewer
33
------------------------------------------
34

  
35
Functionality sources. This project just contain the main process and the logic without any dependency with User Interface.
36

  
37
org.gvsig.educa.thematicmap.app.editor
38
------------------------------------------
39

  
40
User Interface components to access a manage the application services.
41

  
42
pom.xml
43
---------
44

  
45
Maven project definition file
46

  
47
prepare-workspace.xml and README-ECLIPSE.txt
48
-----------------------------------------------
49

  
50
Instructions and utilities to work with eclipse
51

  
52
README.rst
53
--------------
54

  
55
This file (in reStructureText format, for more info this format look at `gvSIG portal <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/guia-para-documentar/el-formato-restructuredtext>`_  or at `docUtils reference <http://docutils.sourceforge.net/rst.html>`_)
56

  
57

  
58
Compilation
59
================
60

  
61
Prepare maven ``gvsig-install`` profile
62
-----------------------------------------
63

  
64
Add-on projets are configured to deploy itself into a gvSIG installation. This must configured using *maven profiles* by setting the gvSIG installation y the ``~/.m2/settings.xml`` file this way::
65

  
66
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
67
    <settings>
68
      ....
69
      ....
70
      <profiles>
71
        ....
72
        ....
73
        <profile>
74
           <id>gvsig-install</id>
75
           <activation>
76
             <activeByDefault>true</activeByDefault>
77
           </activation>
78
           <properties>
79
             <gvsig.install.dir>/home/user/gvSIG_2.0</gvsig.install.dir>
80
           </properties>
81
        </profile>
82
        ....
83
        ....
84
      </profiles>
85
      ....
86
      ....
87
    <settings>
88

  
89

  
90
From shell
91
------------
92

  
93
Execute this command::
94

  
95
    org.gvsig.educa.thematicmap.app.*$ mvn clean install
96

  
97

  
98
From eclipse
99
--------------
100

  
101
See `work in a proyect of the developer guide at gvSIG.org <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/gvsig-devel-guide/2.0.0/trabajar-con-un-proyecto>`_
102

  

Also available in: Unified diff