Revision 40568

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/resources-plugin/config.xml
25 25

  
26 26
-->
27 27
<plugin-config>
28

  
28 29
  <depends plugin-name="org.gvsig.projection.app.mainplugin" />
30
  <depends plugin-name="org.gvsig.geometry.app.mainplugin" />
29 31
  <alternativeNames name="org.gvsig.app"/>
30 32
  <icon src="gvsig-logo-icon" text="gvSIG"/>
31 33
  <libraries library-dir="lib"/>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/assembly/gvsig-plugin-package.xml
70 70
        -->
71 71
        <include>com.sun:jimi</include>
72 72
        <include>com.toedter:jcalendar</include>
73
        <include>com.vividsolutions:jts</include>
74 73
        <include>java3d:vecmath</include>
75 74
        <include>joda-time:joda-time</include>
76 75
        <include>net.sf:sqljep</include>
......
105 104
        <include>org.gvsig:org.gvsig.fmap.dal.file.shp</include>
106 105
        <include>org.gvsig:org.gvsig.fmap.dal.impl</include>
107 106
        <include>org.gvsig:org.gvsig.fmap.dal.spi</include>
108
        <include>org.gvsig:org.gvsig.fmap.geometry.api</include>
109
        <include>org.gvsig:org.gvsig.fmap.geometry.impl</include>
110
        <include>org.gvsig:org.gvsig.fmap.geometry.operation</include>
111 107
        <include>org.gvsig:org.gvsig.fmap.mapcontext.api</include>
112 108
        <include>org.gvsig:org.gvsig.fmap.mapcontext.impl</include>
113 109
        <include>org.gvsig:org.gvsig.fmap.mapcontext.operation</include>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/pom.xml
462 462

  
463 463

  
464 464
  <properties>
465
      <gvsig.package.info.dependencies>required: org.gvsig.projection.app.mainplugin -ge 1, required: org.gvsig.geometry.app.mainplugin -ge 1</gvsig.package.info.dependencies>
465 466
      <gvsig.package.info.codealias>org.gvsig.app</gvsig.package.info.codealias>
466 467
	  <gvsig.package.info.version>2.1.0</gvsig.package.info.version>
467 468
	  <gvsig.package.info.official>true</gvsig.package.info.official>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/pom.xml
515 515
      <module>org.gvsig.newlayer.app</module>
516 516
      <module>org.gvsig.mkmvnproject.app</module>
517 517
      <module>org.gvsig.projection.app</module>
518
      <module>org.gvsig.geometry.app</module>
518 519
    </modules>
519 520

  
520 521
</project>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.projection.app/org.gvsig.projection.app.proj4j/src/main/resources-plugin/config.xml
25 25

  
26 26
-->
27 27
<plugin-config>
28
	<depends plugin-name="org.gvsig.app" />
28
    <alternativeNames name="org.gvsig.projection.app.mainplugin"/>
29 29
	<resourceBundle name="text"/>
30 30
	<libraries library-dir="lib"/>
31 31
	<extensions>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.projection.app/org.gvsig.projection.app.proj4j/pom.xml
45 45
      </dependency>
46 46
      <dependency>
47 47
          <groupId>org.gvsig</groupId>
48
          <artifactId>org.gvsig.app.mainplugin</artifactId>
49
          <scope>provided</scope>
50
      </dependency>
51
      <dependency>
52
          <groupId>org.gvsig</groupId>
53 48
          <artifactId>org.gvsig.i18n</artifactId>
54 49
          <scope>provided</scope>
55 50
      </dependency>
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.geometry.app/org.gvsig.geometry.app.generalpath/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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.geometry.app.generalpath</artifactId>
5
  <packaging>jar</packaging>
6
  <name>Geometry Support</name>
7
  <description>This project has the geometries library for use in the application based  on the use of GeneralPath</description>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.geometry.app</artifactId>
11
      <version>2.0.14-SNAPSHOT</version>
12
  </parent>
13
  <dependencies>
14

  
15
      <dependency>
16
          <groupId>org.gvsig</groupId>
17
          <artifactId>org.gvsig.andami</artifactId>
18
          <scope>provided</scope>
19
      </dependency>
20
      <dependency>
21
          <groupId>org.gvsig</groupId>
22
          <artifactId>org.gvsig.i18n</artifactId>
23
          <scope>provided</scope>
24
      </dependency>
25
      <dependency>
26
          <groupId>org.slf4j</groupId>
27
          <artifactId>slf4j-api</artifactId>
28
          <scope>provided</scope>
29
      </dependency>
30
 
31
       <dependency>
32
           <groupId>com.vividsolutions</groupId>
33
           <artifactId>jts</artifactId>
34
     		<scope>runtime</scope>
35
       </dependency>
36
       <dependency>
37
           <groupId>org.gvsig</groupId>
38
           <artifactId>org.gvsig.fmap.geometry.api</artifactId>
39
     		<scope>runtime</scope>
40
       </dependency>
41
       <dependency>
42
           <groupId>org.gvsig</groupId>
43
           <artifactId>org.gvsig.fmap.geometry.impl</artifactId>
44
     		<scope>runtime</scope>
45
       </dependency>
46
       <dependency>
47
           <groupId>org.gvsig</groupId>
48
           <artifactId>org.gvsig.fmap.geometry.operation</artifactId>
49
     		<scope>runtime</scope>
50
       </dependency>
51
            
52
  </dependencies>
53

  
54
  <properties>
55
      <gvsig.package.info.dependencies>required: org.gvsig.projection.app.mainplugin -ge 1</gvsig.package.info.dependencies>
56
      <gvsig.package.info.codealias>org.gvsig.geometry.app.mainplugin</gvsig.package.info.codealias>
57
	  <gvsig.package.info.official>true</gvsig.package.info.official>
58
  </properties>
59

  
60
</project>
61

  
0 62

  
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.geometry.app/org.gvsig.geometry.app.generalpath/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Fri Feb 08 11:25:21 CET 2013
3
buildNumber=2201
4

  
0 5

  
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.geometry.app/org.gvsig.geometry.app.generalpath/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2013 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 3
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<plugin-config>
28
  <depends plugin-name="org.gvsig.projection.app.mainplugin" />
29
  <alternativeNames name="org.gvsig.geometry.app.mainplugin"/>
30
  <libraries library-dir="lib"/>
31
  <resourceBundle name="text"/>
32
  <extensions>
33
    <extension class-name="org.gvsig.andami.LibraryExtension"
34
      description=""
35
      active="true">
36
    </extension>
37
  </extensions>
38

  
39
</plugin-config>
0 40

  
trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.geometry.app/org.gvsig.geometry.app.generalpath/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${project.artifactId}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/${project.artifactId}-${project.version}.jar</source>
36
      <outputDirectory>lib</outputDirectory>
37
    </file>
38
    <file>
39
      <source>target/package.info</source>
40
    </file>
41
  </files>
42

  
43
  <fileSets>
44
    <fileSet>
45
      <directory>src/main/resources-plugin</directory>
46
      <outputDirectory>.</outputDirectory>
47
    </fileSet>
48
  </fileSets>
49

  
50

  
51
  <dependencySets>
52
    <dependencySet>
53
      <useProjectArtifact>false</useProjectArtifact>
54
      <useTransitiveDependencies>false</useTransitiveDependencies>
55
      <outputDirectory>lib</outputDirectory>
56
      <includes>
57
        <include>com.vividsolutions:jts</include>
58
        <include>org.gvsig:org.gvsig.fmap.geometry.api</include>
59
        <include>org.gvsig:org.gvsig.fmap.geometry.impl</include>
60
        <include>org.gvsig:org.gvsig.fmap.geometry.operation</include>
61
      </includes>
62
    </dependencySet>
63
  </dependencySets>
64

  
65
</assembly>
66

  
0 67

  

Also available in: Unified diff