Revision 285

View differences:

org.gvsig.gpe/library/trunk/org.gvsig.gpe/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.gpe</artifactId>
7
	<packaging>pom</packaging>
8
	<version>2.1.0-SNAPSHOT</version>
9
	<name>org.gvsig.gpe</name>
10
	<description>Generic Persistence Engine</description>
11
	<url>http://devel.gvsig.org/sites/org.gvsig.gpe/${project.version}</url>
12
	<parent>
13
		<groupId>org.gvsig</groupId>
14
		<artifactId>org.gvsig.maven.base.pom</artifactId>
15
		<version>1.0.9</version>
16
	</parent>
17
	
18
    <scm>
19
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/trunk/${name}</connection>
20
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/trunk/${name}</developerConnection>
21
        <url>https://devel.gvsig.org/redmine/projects/gvsig-gpe/repository/show/org.gvsig.gpe/library/trunk/${name}</url>
22
    </scm>
23
    
24
    
25
	<distributionManagement>
26
		<site>
27
			<id>gvsig-repository</id>
28
            <url>dav:https://devel.gvsig.org/sites/org.gvsig.gpe/${project.version}</url>
29
		</site>
30
	</distributionManagement>
31
	<repositories>
32
		<repository>
33
			<id>gvsig-public-http-repository</id>
34
			<name>gvSIG maven public HTTP repository</name>
35
			<url>http://devel.gvsig.org/m2repo/j2se</url>
36
			<releases>
37
				<enabled>true</enabled>
38
				<updatePolicy>daily</updatePolicy>
39
				<checksumPolicy>warn</checksumPolicy>
40
			</releases>
41
			<snapshots>
42
				<enabled>true</enabled>
43
				<updatePolicy>daily</updatePolicy>
44
				<checksumPolicy>warn</checksumPolicy>
45
			</snapshots>
46
		</repository>
47
	</repositories>
48
	
49

  
50
	<build>
51
		<plugins>
52
			<plugin>
53
				<groupId>org.apache.maven.plugins</groupId>
54
				<artifactId>maven-release-plugin</artifactId>
55
				<configuration>
56
					<tagBase>https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags</tagBase>
57
				</configuration>
58
			</plugin>
59
		</plugins>
60
	</build>
61

  
62
	<dependencyManagement>
63
		<dependencies>
64
			<dependency>
65
				<groupId>org.gvsig</groupId>
66
				<artifactId>org.gvsig.tools.lib</artifactId>
67
				<version>3.0.0</version>
68
				<scope>compile</scope>
69
			</dependency>
70
			<dependency>
71
				<groupId>org.gvsig</groupId>
72
				<artifactId>org.gvsig.tools.lib</artifactId>
73
				<version>3.0.0</version>
74
				<classifier>tests</classifier>
75
			</dependency>
76
			<dependency>
77
				<groupId>org.gvsig</groupId>
78
				<artifactId>org.gvsig.i18n</artifactId>
79
				<version>2.0</version>
80
				<scope>compile</scope>				
81
			</dependency>
82
			<dependency>
83
				<groupId>org.gvsig</groupId>
84
				<artifactId>org.gvsig.compat</artifactId>
85
				<version>2.0</version>
86
				<scope>compile</scope>				
87
			</dependency>
88
			<dependency>
89
				<groupId>org.gvsig</groupId>
90
				<artifactId>org.gvsig.compat</artifactId>
91
				<classifier>se</classifier>
92
				<version>2.0</version>
93
				<scope>runtime</scope>				
94
			</dependency>
95
			<!--
96
			<dependency>
97
				<groupId>org.gvsig.mobile</groupId>
98
				<artifactId>org.gvsig.mobile.compat</artifactId>
99
				<version>2.0-SNAPSHOT</version>
100
				<scope>runtime</scope>				
101
			</dependency>
102
			-->
103
			<dependency>
104
				<groupId>org.gvsig</groupId>
105
				<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
106
				<version>2.0.0</version>
107
				<scope>compile</scope>				
108
			</dependency>
109
			<dependency>
110
				<groupId>org.gvsig</groupId>
111
				<artifactId>org.gvsig.xmlpull.lib.spi</artifactId>
112
				<version>2.0.0</version>
113
				<scope>runtime</scope>				
114
			</dependency>
115
			<dependency>
116
				<groupId>org.gvsig</groupId>
117
				<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
118
				<version>2.0.0</version>
119
				<scope>runtime</scope>				
120
			</dependency>
121
			<dependency>
122
				<groupId>org.gvsig</groupId>
123
				<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
124
				<version>2.0.0</version>
125
				<scope>runtime</scope>				
126
			</dependency>
127
			<dependency>
128
				<groupId>org.gvsig</groupId>
129
				<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
130
				<version>2.0.0</version>
131
				<scope>runtime</scope>				
132
			</dependency>
133
			<dependency>
134
				<groupId>org.gvsig</groupId>
135
				<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
136
				<version>2.0.0</version>
137
				<scope>compile</scope>				
138
			</dependency>
139
			<dependency>
140
				<groupId>org.gvsig</groupId>
141
				<artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
142
				<version>2.0.0</version>
143
				<scope>runtime</scope>				
144
			</dependency>
145
			<dependency>
146
				<groupId>stax</groupId>
147
				<artifactId>stax-api</artifactId>
148
				<version>1.0.1</version>
149
				<scope>compile</scope>				
150
			</dependency>
151
			<dependency>
152
				<groupId>stax</groupId>
153
				<artifactId>stax</artifactId>
154
				<version>1.2.0</version>
155
				<scope>compile</scope>				
156
			</dependency>
157
		</dependencies>
158
	</dependencyManagement>
159
	<dependencies>
160
		<dependency>
161
			<groupId>org.gvsig</groupId>
162
			<artifactId>org.gvsig.tools.lib</artifactId>
163
		</dependency>
164
		<dependency>
165
			<groupId>org.gvsig</groupId>
166
			<artifactId>org.gvsig.tools.lib</artifactId>
167
			<classifier>tests</classifier>
168
			<scope>test</scope>
169
		</dependency>
170
	</dependencies>
171
	<modules>
172
		<module>org.gvsig.gpe.lib</module>
173
		<module>org.gvsig.gpe.prov</module>
174
	</modules>
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" 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
	<artifactId>org.gvsig.gpe</artifactId>
6
	<packaging>pom</packaging>
7
	<version>2.1.0</version>
8
	<name>org.gvsig.gpe</name>
9
	<description>Generic Persistence Engine</description>
10
	<url>http://devel.gvsig.org/sites/org.gvsig.gpe/${project.version}</url>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.maven.base.pom</artifactId>
14
		<version>1.0.9</version>
15
	</parent>
16
	
17
    <scm>
18
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags/2.1.0</connection>
19
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags/2.1.0</developerConnection>
20
        <url>https://devel.gvsig.org/redmine/projects/gvsig-gpe/repository/show/org.gvsig.gpe/library/tags/2.1.0</url>
21
    </scm>
22
    
23
    
24
	<distributionManagement>
25
		<site>
26
			<id>gvsig-repository</id>
27
            <url>dav:https://devel.gvsig.org/sites/org.gvsig.gpe/${project.version}</url>
28
		</site>
29
	</distributionManagement>
30
	<repositories>
31
		<repository>
32
			<id>gvsig-public-http-repository</id>
33
			<name>gvSIG maven public HTTP repository</name>
34
			<url>http://devel.gvsig.org/m2repo/j2se</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
	
48

  
49
	<build>
50
		<plugins>
51
			<plugin>
52
				<groupId>org.apache.maven.plugins</groupId>
53
				<artifactId>maven-release-plugin</artifactId>
54
				<configuration>
55
					<tagBase>https://devel.gvsig.org/svn/gvsig-gpe/org.gvsig.gpe/library/tags</tagBase>
56
				</configuration>
57
			</plugin>
58
		</plugins>
59
	</build>
60

  
61
	<dependencyManagement>
62
		<dependencies>
63
			<dependency>
64
				<groupId>org.gvsig</groupId>
65
				<artifactId>org.gvsig.tools.lib</artifactId>
66
				<version>3.0.0</version>
67
				<scope>compile</scope>
68
			</dependency>
69
			<dependency>
70
				<groupId>org.gvsig</groupId>
71
				<artifactId>org.gvsig.tools.lib</artifactId>
72
				<version>3.0.0</version>
73
				<classifier>tests</classifier>
74
			</dependency>
75
			<dependency>
76
				<groupId>org.gvsig</groupId>
77
				<artifactId>org.gvsig.i18n</artifactId>
78
				<version>2.0</version>
79
				<scope>compile</scope>				
80
			</dependency>
81
			<dependency>
82
				<groupId>org.gvsig</groupId>
83
				<artifactId>org.gvsig.compat</artifactId>
84
				<version>2.0</version>
85
				<scope>compile</scope>				
86
			</dependency>
87
			<dependency>
88
				<groupId>org.gvsig</groupId>
89
				<artifactId>org.gvsig.compat</artifactId>
90
				<classifier>se</classifier>
91
				<version>2.0</version>
92
				<scope>runtime</scope>				
93
			</dependency>
94
			<!--
95
			<dependency>
96
				<groupId>org.gvsig.mobile</groupId>
97
				<artifactId>org.gvsig.mobile.compat</artifactId>
98
				<version>2.0-SNAPSHOT</version>
99
				<scope>runtime</scope>				
100
			</dependency>
101
			-->
102
			<dependency>
103
				<groupId>org.gvsig</groupId>
104
				<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
105
				<version>2.0.0</version>
106
				<scope>compile</scope>				
107
			</dependency>
108
			<dependency>
109
				<groupId>org.gvsig</groupId>
110
				<artifactId>org.gvsig.xmlpull.lib.spi</artifactId>
111
				<version>2.0.0</version>
112
				<scope>runtime</scope>				
113
			</dependency>
114
			<dependency>
115
				<groupId>org.gvsig</groupId>
116
				<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
117
				<version>2.0.0</version>
118
				<scope>runtime</scope>				
119
			</dependency>
120
			<dependency>
121
				<groupId>org.gvsig</groupId>
122
				<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
123
				<version>2.0.0</version>
124
				<scope>runtime</scope>				
125
			</dependency>
126
			<dependency>
127
				<groupId>org.gvsig</groupId>
128
				<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
129
				<version>2.0.0</version>
130
				<scope>runtime</scope>				
131
			</dependency>
132
			<dependency>
133
				<groupId>org.gvsig</groupId>
134
				<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
135
				<version>2.0.0</version>
136
				<scope>compile</scope>				
137
			</dependency>
138
			<dependency>
139
				<groupId>org.gvsig</groupId>
140
				<artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
141
				<version>2.0.0</version>
142
				<scope>runtime</scope>				
143
			</dependency>
144
			<dependency>
145
				<groupId>stax</groupId>
146
				<artifactId>stax-api</artifactId>
147
				<version>1.0.1</version>
148
				<scope>compile</scope>				
149
			</dependency>
150
			<dependency>
151
				<groupId>stax</groupId>
152
				<artifactId>stax</artifactId>
153
				<version>1.2.0</version>
154
				<scope>compile</scope>				
155
			</dependency>
156
		</dependencies>
157
	</dependencyManagement>
158
	<dependencies>
159
		<dependency>
160
			<groupId>org.gvsig</groupId>
161
			<artifactId>org.gvsig.tools.lib</artifactId>
162
		</dependency>
163
		<dependency>
164
			<groupId>org.gvsig</groupId>
165
			<artifactId>org.gvsig.tools.lib</artifactId>
166
			<classifier>tests</classifier>
167
			<scope>test</scope>
168
		</dependency>
169
	</dependencies>
170
	<modules>
171
		<module>org.gvsig.gpe.lib</module>
172
		<module>org.gvsig.gpe.prov</module>
173
	</modules>
175 174
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.lib/org.gvsig.gpe.lib.impl/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
	<artifactId>org.gvsig.gpe.lib.impl</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.lib.impl</name>
10
	<description>Default Generic Persistence Engine library Implementation</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.lib</artifactId>	
14
		<version>2.1.0-SNAPSHOT</version>		
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
20
			<version>2.1.0-SNAPSHOT</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>org.gvsig</groupId>
24
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
25
			<version>2.1.0-SNAPSHOT</version>			
26
		</dependency>
27
		<dependency>
28
			<groupId>org.gvsig</groupId>
29
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>	
30
			<scope>test</scope>
31
		</dependency>		
32
	</dependencies>
33
	<build>		
34
		<plugins>
35
			<plugin>
36
				<groupId>org.apache.maven.plugins</groupId>
37
				<artifactId>maven-jar-plugin</artifactId>
38
				<configuration>
39
				</configuration>
40
				<executions>
41
				<!--
42
					Generates a jar file only with the test classes
43
				-->
44
					<execution>
45
						<goals>
46
							<goal>test-jar</goal>
47
						</goals>
48
						<configuration>
49
								
50
						</configuration>
51
					</execution>
52
				</executions>
53
			</plugin>	 
54
			<plugin>
55
				<groupId>org.apache.maven.plugins</groupId>
56
				<artifactId>maven-compiler-plugin</artifactId>
57
				<configuration>
58
					<source>1.4</source>
59
					<target>1.5</target>
60
				</configuration>
61
			</plugin>
62
		</plugins>
63
	</build>
64
	<profiles>
65
		<profile>
66
			<id>cdc</id>
67
			<build>
68
				<plugins>
69
					<plugin>
70
						<groupId>org.apache.maven.plugins</groupId>
71
						<artifactId>maven-compiler-plugin</artifactId>
72
						<configuration>
73
							<source>1.4</source>
74
							<target>1.4</target>
75
						</configuration>
76
					</plugin>
77
				</plugins>
78
			</build>
79
		</profile>
80
	</profiles>
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" 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
	<artifactId>org.gvsig.gpe.lib.impl</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.lib.impl</name>
8
	<description>Default Generic Persistence Engine library Implementation</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.lib</artifactId>	
12
		<version>2.1.0</version>		
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
18
			<version>2.1.0</version>
19
		</dependency>
20
		<dependency>
21
			<groupId>org.gvsig</groupId>
22
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
23
			<version>2.1.0</version>			
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>	
28
			<scope>test</scope>
29
		</dependency>		
30
	</dependencies>
31
	<build>		
32
		<plugins>
33
			<plugin>
34
				<groupId>org.apache.maven.plugins</groupId>
35
				<artifactId>maven-jar-plugin</artifactId>
36
				<configuration>
37
				</configuration>
38
				<executions>
39
				<!--
40
					Generates a jar file only with the test classes
41
				-->
42
					<execution>
43
						<goals>
44
							<goal>test-jar</goal>
45
						</goals>
46
						<configuration>
47
								
48
						</configuration>
49
					</execution>
50
				</executions>
51
			</plugin>	 
52
			<plugin>
53
				<groupId>org.apache.maven.plugins</groupId>
54
				<artifactId>maven-compiler-plugin</artifactId>
55
				<configuration>
56
					<source>1.4</source>
57
					<target>1.5</target>
58
				</configuration>
59
			</plugin>
60
		</plugins>
61
	</build>
62
	<profiles>
63
		<profile>
64
			<id>cdc</id>
65
			<build>
66
				<plugins>
67
					<plugin>
68
						<groupId>org.apache.maven.plugins</groupId>
69
						<artifactId>maven-compiler-plugin</artifactId>
70
						<configuration>
71
							<source>1.4</source>
72
							<target>1.4</target>
73
						</configuration>
74
					</plugin>
75
				</plugins>
76
			</build>
77
		</profile>
78
	</profiles>
81 79
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.lib/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
	<artifactId>org.gvsig.gpe.lib</artifactId>
8
	<packaging>pom</packaging>	
9
	<name>org.gvsig.gpe.lib</name>
10
	<description>Generic Persistence Engine library</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe</artifactId>	
14
		<version>2.1.0-SNAPSHOT</version>	
15
	</parent>
16
	<modules>	
17
		<module>org.gvsig.gpe.lib.api</module>
18
		<module>org.gvsig.gpe.lib.spi</module>
19
		<module>org.gvsig.gpe.lib.impl</module>	
20
	</modules>
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" 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
	<artifactId>org.gvsig.gpe.lib</artifactId>
6
	<packaging>pom</packaging>	
7
	<name>org.gvsig.gpe.lib</name>
8
	<description>Generic Persistence Engine library</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe</artifactId>	
12
		<version>2.1.0</version>	
13
	</parent>
14
	<modules>	
15
		<module>org.gvsig.gpe.lib.api</module>
16
		<module>org.gvsig.gpe.lib.spi</module>
17
		<module>org.gvsig.gpe.lib.impl</module>	
18
	</modules>
21 19
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.lib/org.gvsig.gpe.lib.api/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
	<artifactId>org.gvsig.gpe.lib.api</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.lib.api</name>
10
	<description>Generic Persistence Engine library API</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.lib</artifactId>
14
		<version>2.1.0-SNAPSHOT</version>		
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
20
		</dependency>
21
	</dependencies>
22
	<build>
23
		<plugins>
24
			<plugin>
25
				<groupId>org.apache.maven.plugins</groupId>
26
				<artifactId>maven-compiler-plugin</artifactId>
27
				<configuration>
28
					<source>1.4</source>
29
					<target>1.5</target>
30
				</configuration>
31
			</plugin>
32
		</plugins>
33
	</build>
34
	<profiles>
35
		<profile>
36
			<id>cdc</id>
37
			<build>
38
				<plugins>
39
					<plugin>
40
						<groupId>org.apache.maven.plugins</groupId>
41
						<artifactId>maven-compiler-plugin</artifactId>
42
						<configuration>
43
							<source>1.4</source>
44
							<target>1.4</target>
45
						</configuration>
46
					</plugin>
47
				</plugins>
48
			</build>
49
		</profile>
50
	</profiles>
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" 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
	<artifactId>org.gvsig.gpe.lib.api</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.lib.api</name>
8
	<description>Generic Persistence Engine library API</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.lib</artifactId>
12
		<version>2.1.0</version>		
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
18
		</dependency>
19
	</dependencies>
20
	<build>
21
		<plugins>
22
			<plugin>
23
				<groupId>org.apache.maven.plugins</groupId>
24
				<artifactId>maven-compiler-plugin</artifactId>
25
				<configuration>
26
					<source>1.4</source>
27
					<target>1.5</target>
28
				</configuration>
29
			</plugin>
30
		</plugins>
31
	</build>
32
	<profiles>
33
		<profile>
34
			<id>cdc</id>
35
			<build>
36
				<plugins>
37
					<plugin>
38
						<groupId>org.apache.maven.plugins</groupId>
39
						<artifactId>maven-compiler-plugin</artifactId>
40
						<configuration>
41
							<source>1.4</source>
42
							<target>1.4</target>
43
						</configuration>
44
					</plugin>
45
				</plugins>
46
			</build>
47
		</profile>
48
	</profiles>
51 49
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.lib/org.gvsig.gpe.lib.spi/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
	<artifactId>org.gvsig.gpe.lib.spi</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.lib.spi</name>
10
	<description>Generic Persistence Engine library SPI</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.lib</artifactId>
14
		<version>2.1.0-SNAPSHOT</version>				
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
20
			<version>2.1.0-SNAPSHOT</version>		
21
		</dependency>		
22
	</dependencies>
23
	<build>
24
		<plugins>
25
			<plugin>
26
				<groupId>org.apache.maven.plugins</groupId>
27
				<artifactId>maven-compiler-plugin</artifactId>
28
				<configuration>
29
					<source>1.4</source>
30
					<target>1.5</target>
31
				</configuration>
32
			</plugin>
33
		</plugins>
34
	</build>
35
	<profiles>
36
		<profile>
37
			<id>cdc</id>
38
			<build>
39
				<plugins>
40
					<plugin>
41
						<groupId>org.apache.maven.plugins</groupId>
42
						<artifactId>maven-compiler-plugin</artifactId>
43
						<configuration>
44
							<source>1.4</source>
45
							<target>1.4</target>
46
						</configuration>
47
					</plugin>
48
				</plugins>
49
			</build>
50
		</profile>
51
	</profiles>
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" 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
	<artifactId>org.gvsig.gpe.lib.spi</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.lib.spi</name>
8
	<description>Generic Persistence Engine library SPI</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.lib</artifactId>
12
		<version>2.1.0</version>				
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
18
			<version>2.1.0</version>		
19
		</dependency>		
20
	</dependencies>
21
	<build>
22
		<plugins>
23
			<plugin>
24
				<groupId>org.apache.maven.plugins</groupId>
25
				<artifactId>maven-compiler-plugin</artifactId>
26
				<configuration>
27
					<source>1.4</source>
28
					<target>1.5</target>
29
				</configuration>
30
			</plugin>
31
		</plugins>
32
	</build>
33
	<profiles>
34
		<profile>
35
			<id>cdc</id>
36
			<build>
37
				<plugins>
38
					<plugin>
39
						<groupId>org.apache.maven.plugins</groupId>
40
						<artifactId>maven-compiler-plugin</artifactId>
41
						<configuration>
42
							<source>1.4</source>
43
							<target>1.4</target>
44
						</configuration>
45
					</plugin>
46
				</plugins>
47
			</build>
48
		</profile>
49
	</profiles>
52 50
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.prov/org.gvsig.gpe.prov.gml/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
	<artifactId>org.gvsig.gpe.prov.gml</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.prov.gml</name>
10
	<description>Provider of GML for GPE</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.prov</artifactId>
14
		<version>2.1.0-SNAPSHOT</version>
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.compat</artifactId>
20
		</dependency>
21
		<dependency>
22
			<groupId>org.gvsig</groupId>
23
			<artifactId>org.gvsig.compat</artifactId>
24
			<classifier>se</classifier>
25
			<scope>test</scope>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.gvsig</groupId>
29
			<artifactId>org.gvsig.gpe.lib.api</artifactId>
30
			<version>2.1.0-SNAPSHOT</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.gvsig</groupId>
34
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
35
			<version>2.1.0-SNAPSHOT</version>
36
		</dependency>
37
		<dependency>
38
			<groupId>org.gvsig</groupId>
39
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
40
			<version>2.1.0-SNAPSHOT</version>
41
			<scope>compile</scope>
42
		</dependency>
43
		<dependency>
44
			<groupId>org.gvsig</groupId>
45
			<artifactId>org.gvsig.gpe.prov.xml</artifactId>
46
			<version>2.1.0-SNAPSHOT</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.gvsig</groupId>
50
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
51
		</dependency>
52
		<!-- Tests -->
53
		<dependency>
54
			<groupId>org.gvsig</groupId>
55
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
56
			<version>2.1.0-SNAPSHOT</version>
57
			<classifier>tests</classifier>
58
			<scope>test</scope>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.gvsig</groupId>
62
			<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
63
			<scope>test</scope>
64
		</dependency>
65
		<dependency>
66
			<groupId>org.gvsig</groupId>
67
			<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
68
			<scope>test</scope>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.gvsig</groupId>
72
			<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
73
			<scope>test</scope>
74
		</dependency>
75
		<dependency>
76
			<groupId>org.gvsig</groupId>
77
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
78
			<scope>compile</scope>			
79
		</dependency>
80
		<dependency>
81
			<groupId>org.gvsig</groupId>
82
			<artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
83
			<scope>test</scope>
84
		</dependency>
85
		<!-- 
86
		<dependency>
87
			<groupId>stax</groupId>
88
			<artifactId>stax-api</artifactId>
89
			<scope>test</scope>
90
		</dependency>
91
		<dependency>
92
			<groupId>stax</groupId>
93
			<artifactId>stax</artifactId>
94
			<scope>test</scope>
95
		</dependency>
96
		 -->
97
	</dependencies>
98
	<build>
99
		<plugins>
100
			<plugin>
101
				<groupId>org.apache.maven.plugins</groupId>
102
				<artifactId>maven-jar-plugin</artifactId>
103
				<configuration>
104
				</configuration>
105
				<executions>
106
					<!--
107
					Generates a jar file only with the test classes
108
				-->
109
					<execution>
110
						<goals>
111
							<goal>test-jar</goal>
112
						</goals>
113
						<configuration>
114

  
115
						</configuration>
116
					</execution>
117
				</executions>
118
			</plugin>
119
			<plugin>
120
				<groupId>org.apache.maven.plugins</groupId>
121
				<artifactId>maven-compiler-plugin</artifactId>
122
				<configuration>
123
					<source>1.4</source>
124
					<target>1.5</target>
125
				</configuration>
126
			</plugin>
127
		</plugins>
128
	</build>
129
	<profiles>
130
		<profile>
131
			<id>cdc</id>
132
			<build>
133
				<plugins>
134
					<plugin>
135
						<groupId>org.apache.maven.plugins</groupId>
136
						<artifactId>maven-compiler-plugin</artifactId>
137
						<configuration>
138
							<source>1.4</source>
139
							<target>1.4</target>
140
						</configuration>
141
					</plugin>
142
				</plugins>
143
			</build>
144
		</profile>
145
	</profiles>
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" 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
	<artifactId>org.gvsig.gpe.prov.gml</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.prov.gml</name>
8
	<description>Provider of GML for GPE</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.prov</artifactId>
12
		<version>2.1.0</version>
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.compat</artifactId>
18
		</dependency>
19
		<dependency>
20
			<groupId>org.gvsig</groupId>
21
			<artifactId>org.gvsig.compat</artifactId>
22
			<classifier>se</classifier>
23
			<scope>test</scope>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>org.gvsig.gpe.lib.api</artifactId>
28
			<version>2.1.0</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.gvsig</groupId>
32
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
33
			<version>2.1.0</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.gvsig</groupId>
37
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
38
			<version>2.1.0</version>
39
			<scope>compile</scope>
40
		</dependency>
41
		<dependency>
42
			<groupId>org.gvsig</groupId>
43
			<artifactId>org.gvsig.gpe.prov.xml</artifactId>
44
			<version>2.1.0</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>org.gvsig</groupId>
48
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>
49
		</dependency>
50
		<!-- Tests -->
51
		<dependency>
52
			<groupId>org.gvsig</groupId>
53
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
54
			<version>2.1.0</version>
55
			<classifier>tests</classifier>
56
			<scope>test</scope>
57
		</dependency>
58
		<dependency>
59
			<groupId>org.gvsig</groupId>
60
			<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
61
			<scope>test</scope>
62
		</dependency>
63
		<dependency>
64
			<groupId>org.gvsig</groupId>
65
			<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
66
			<scope>test</scope>
67
		</dependency>
68
		<dependency>
69
			<groupId>org.gvsig</groupId>
70
			<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
71
			<scope>test</scope>
72
		</dependency>
73
		<dependency>
74
			<groupId>org.gvsig</groupId>
75
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
76
			<scope>compile</scope>			
77
		</dependency>
78
		<dependency>
79
			<groupId>org.gvsig</groupId>
80
			<artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
81
			<scope>test</scope>
82
		</dependency>
83
		<!-- 
84
		<dependency>
85
			<groupId>stax</groupId>
86
			<artifactId>stax-api</artifactId>
87
			<scope>test</scope>
88
		</dependency>
89
		<dependency>
90
			<groupId>stax</groupId>
91
			<artifactId>stax</artifactId>
92
			<scope>test</scope>
93
		</dependency>
94
		 -->
95
	</dependencies>
96
	<build>
97
		<plugins>
98
			<plugin>
99
				<groupId>org.apache.maven.plugins</groupId>
100
				<artifactId>maven-jar-plugin</artifactId>
101
				<configuration>
102
				</configuration>
103
				<executions>
104
					<!--
105
					Generates a jar file only with the test classes
106
				-->
107
					<execution>
108
						<goals>
109
							<goal>test-jar</goal>
110
						</goals>
111
						<configuration>
112

  
113
						</configuration>
114
					</execution>
115
				</executions>
116
			</plugin>
117
			<plugin>
118
				<groupId>org.apache.maven.plugins</groupId>
119
				<artifactId>maven-compiler-plugin</artifactId>
120
				<configuration>
121
					<source>1.4</source>
122
					<target>1.5</target>
123
				</configuration>
124
			</plugin>
125
		</plugins>
126
	</build>
127
	<profiles>
128
		<profile>
129
			<id>cdc</id>
130
			<build>
131
				<plugins>
132
					<plugin>
133
						<groupId>org.apache.maven.plugins</groupId>
134
						<artifactId>maven-compiler-plugin</artifactId>
135
						<configuration>
136
							<source>1.4</source>
137
							<target>1.4</target>
138
						</configuration>
139
					</plugin>
140
				</plugins>
141
			</build>
142
		</profile>
143
	</profiles>
146 144
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.prov/org.gvsig.gpe.prov.xml/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
	<artifactId>org.gvsig.gpe.prov.xml</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.prov.xml</name>
10
	<description>Provider of XML for GPE</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.prov</artifactId>
14
		<version>2.1.0-SNAPSHOT</version>				
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.gpe.lib.api</artifactId>		
20
			<version>2.1.0-SNAPSHOT</version>	
21
		</dependency>
22
		<dependency>
23
			<groupId>org.gvsig</groupId>
24
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
25
			<version>2.1.0-SNAPSHOT</version>			
26
		</dependency>
27
		<dependency>
28
			<groupId>org.gvsig</groupId>
29
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
30
			<version>2.1.0-SNAPSHOT</version>			
31
		</dependency>
32
		<dependency>
33
			<groupId>org.gvsig</groupId>
34
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>			
35
		</dependency>				
36
	</dependencies>
37
	<build>
38
		<plugins>
39
			<plugin>
40
				<groupId>org.apache.maven.plugins</groupId>
41
				<artifactId>maven-compiler-plugin</artifactId>
42
				<configuration>
43
					<source>1.4</source>
44
					<target>1.5</target>
45
				</configuration>
46
			</plugin>
47
		</plugins>
48
	</build>
49
	<profiles>
50
		<profile>
51
			<id>cdc</id>
52
			<build>
53
				<plugins>
54
					<plugin>
55
						<groupId>org.apache.maven.plugins</groupId>
56
						<artifactId>maven-compiler-plugin</artifactId>
57
						<configuration>
58
							<source>1.4</source>
59
							<target>1.4</target>
60
						</configuration>
61
					</plugin>
62
				</plugins>
63
			</build>
64
		</profile>
65
	</profiles>
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" 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
	<artifactId>org.gvsig.gpe.prov.xml</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.prov.xml</name>
8
	<description>Provider of XML for GPE</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.prov</artifactId>
12
		<version>2.1.0</version>				
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.gpe.lib.api</artifactId>		
18
			<version>2.1.0</version>	
19
		</dependency>
20
		<dependency>
21
			<groupId>org.gvsig</groupId>
22
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
23
			<version>2.1.0</version>			
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
28
			<version>2.1.0</version>			
29
		</dependency>
30
		<dependency>
31
			<groupId>org.gvsig</groupId>
32
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>			
33
		</dependency>				
34
	</dependencies>
35
	<build>
36
		<plugins>
37
			<plugin>
38
				<groupId>org.apache.maven.plugins</groupId>
39
				<artifactId>maven-compiler-plugin</artifactId>
40
				<configuration>
41
					<source>1.4</source>
42
					<target>1.5</target>
43
				</configuration>
44
			</plugin>
45
		</plugins>
46
	</build>
47
	<profiles>
48
		<profile>
49
			<id>cdc</id>
50
			<build>
51
				<plugins>
52
					<plugin>
53
						<groupId>org.apache.maven.plugins</groupId>
54
						<artifactId>maven-compiler-plugin</artifactId>
55
						<configuration>
56
							<source>1.4</source>
57
							<target>1.4</target>
58
						</configuration>
59
					</plugin>
60
				</plugins>
61
			</build>
62
		</profile>
63
	</profiles>
66 64
</project>
org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.prov/org.gvsig.gpe.prov.kml/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
	<artifactId>org.gvsig.gpe.prov.kml</artifactId>
8
	<packaging>jar</packaging>
9
	<name>org.gvsig.gpe.prov.kml</name>
10
	<description>Provider of KML for GPE</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.gpe.prov</artifactId>
14
		<version>2.1.0-SNAPSHOT</version>				
15
	</parent>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.gvsig</groupId>
19
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
20
			<version>2.1.0-SNAPSHOT</version>		
21
		</dependency>
22
		<dependency>
23
			<groupId>org.gvsig</groupId>
24
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
25
			<version>2.1.0-SNAPSHOT</version>			
26
		</dependency>
27
		<dependency>
28
			<groupId>org.gvsig</groupId>
29
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
30
			<version>2.1.0-SNAPSHOT</version>		
31
			<scope>compile</scope>	
32
		</dependency>		
33
		<dependency>
34
			<groupId>org.gvsig</groupId>
35
			<artifactId>org.gvsig.gpe.prov.xml</artifactId>
36
			<version>2.1.0-SNAPSHOT</version>			
37
		</dependency>
38
		<dependency>
39
			<groupId>org.gvsig</groupId>
40
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>			
41
		</dependency>
42
		<!-- Tests -->
43
		<dependency>
44
			<groupId>org.gvsig</groupId>
45
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>		
46
			<version>2.1.0-SNAPSHOT</version>				
47
			<classifier>tests</classifier>
48
			<scope>test</scope>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.gvsig</groupId>
52
			<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
53
			<scope>test</scope>			
54
		</dependency>	
55
		<dependency>
56
			<groupId>org.gvsig</groupId>
57
			<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
58
			<scope>test</scope>			
59
		</dependency>	
60
		<dependency>
61
			<groupId>org.gvsig</groupId>
62
			<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
63
			<scope>test</scope>			
64
		</dependency>
65
		<dependency>
66
			<groupId>org.gvsig</groupId>
67
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
68
			<scope>test</scope>			
69
		</dependency>
70
	</dependencies>
71
	<build>	
72
		<plugins>
73
			<plugin>
74
				<groupId>org.apache.maven.plugins</groupId>
75
				<artifactId>maven-jar-plugin</artifactId>
76
				<configuration>
77
				</configuration>
78
				<executions>
79
				<!--
80
					Generates a jar file only with the test classes
81
				-->
82
					<execution>
83
						<goals>
84
							<goal>test-jar</goal>
85
						</goals>
86
						<configuration>
87
								
88
						</configuration>
89
					</execution>
90
				</executions>
91
			</plugin>	 
92
			<plugin>
93
				<groupId>org.apache.maven.plugins</groupId>
94
				<artifactId>maven-compiler-plugin</artifactId>
95
				<configuration>
96
					<source>1.4</source>
97
					<target>1.5</target>
98
				</configuration>
99
			</plugin>
100
		</plugins>
101
	</build>
102
	<profiles>	
103
		<profile>
104
			<id>se</id>
105
			<activation>
106
				<activeByDefault>true</activeByDefault>
107
			</activation>
108
			<dependencies>			
109
				<dependency>
110
					<groupId>org.gvsig</groupId>
111
					<artifactId>org.gvsig.compat</artifactId>					
112
				</dependency>
113
				<dependency>
114
					<groupId>org.gvsig</groupId>
115
					<artifactId>org.gvsig.compat</artifactId>					
116
					<classifier>se</classifier>					
117
				</dependency>
118
			</dependencies>
119
		</profile>
120
		<profile>
121
			<id>cdc</id>
122
			<activation>
123
				<activeByDefault>false</activeByDefault>
124
			</activation>
125
			<dependencies>			
126
				<dependency>
127
					<groupId>org.gvsig.mobile</groupId>
128
					<artifactId>org.gvsig.mobile.compat</artifactId>					
129
				</dependency>
130
			</dependencies>
131
			<build>
132
				<plugins>
133
					<plugin>
134
						<groupId>org.apache.maven.plugins</groupId>
135
						<artifactId>maven-compiler-plugin</artifactId>
136
						<configuration>
137
							<source>1.4</source>
138
							<target>1.4</target>
139
						</configuration>
140
					</plugin>
141
				</plugins>
142
			</build>
143
		</profile>
144
	</profiles>	
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" 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
	<artifactId>org.gvsig.gpe.prov.kml</artifactId>
6
	<packaging>jar</packaging>
7
	<name>org.gvsig.gpe.prov.kml</name>
8
	<description>Provider of KML for GPE</description>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.gpe.prov</artifactId>
12
		<version>2.1.0</version>				
13
	</parent>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.gpe.lib.api</artifactId>	
18
			<version>2.1.0</version>		
19
		</dependency>
20
		<dependency>
21
			<groupId>org.gvsig</groupId>
22
			<artifactId>org.gvsig.gpe.lib.spi</artifactId>
23
			<version>2.1.0</version>			
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>
28
			<version>2.1.0</version>		
29
			<scope>compile</scope>	
30
		</dependency>		
31
		<dependency>
32
			<groupId>org.gvsig</groupId>
33
			<artifactId>org.gvsig.gpe.prov.xml</artifactId>
34
			<version>2.1.0</version>			
35
		</dependency>
36
		<dependency>
37
			<groupId>org.gvsig</groupId>
38
			<artifactId>org.gvsig.xmlpull.lib.api</artifactId>			
39
		</dependency>
40
		<!-- Tests -->
41
		<dependency>
42
			<groupId>org.gvsig</groupId>
43
			<artifactId>org.gvsig.gpe.lib.impl</artifactId>		
44
			<version>2.1.0</version>				
45
			<classifier>tests</classifier>
46
			<scope>test</scope>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.gvsig</groupId>
50
			<artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
51
			<scope>test</scope>			
52
		</dependency>	
53
		<dependency>
54
			<groupId>org.gvsig</groupId>
55
			<artifactId>org.gvsig.xmlpull.prov.stax</artifactId>
56
			<scope>test</scope>			
57
		</dependency>	
58
		<dependency>
59
			<groupId>org.gvsig</groupId>
60
			<artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
61
			<scope>test</scope>			
62
		</dependency>
63
		<dependency>
64
			<groupId>org.gvsig</groupId>
65
			<artifactId>org.gvsig.xmlschema.lib.api</artifactId>
66
			<scope>test</scope>			
67
		</dependency>
68
	</dependencies>
69
	<build>	
70
		<plugins>
71
			<plugin>
72
				<groupId>org.apache.maven.plugins</groupId>
73
				<artifactId>maven-jar-plugin</artifactId>
74
				<configuration>
75
				</configuration>
76
				<executions>
77
				<!--
78
					Generates a jar file only with the test classes
79
				-->
80
					<execution>
81
						<goals>
82
							<goal>test-jar</goal>
83
						</goals>
84
						<configuration>
85
								
86
						</configuration>
87
					</execution>
88
				</executions>
89
			</plugin>	 
90
			<plugin>
91
				<groupId>org.apache.maven.plugins</groupId>
92
				<artifactId>maven-compiler-plugin</artifactId>
93
				<configuration>
94
					<source>1.4</source>
95
					<target>1.5</target>
96
				</configuration>
97
			</plugin>
98
		</plugins>
99
	</build>
100
	<profiles>	
101
		<profile>
102
			<id>se</id>
103
			<activation>
104
				<activeByDefault>true</activeByDefault>
105
			</activation>
106
			<dependencies>			
107
				<dependency>
108
					<groupId>org.gvsig</groupId>
109
					<artifactId>org.gvsig.compat</artifactId>					
110
				</dependency>
111
				<dependency>
112
					<groupId>org.gvsig</groupId>
113
					<artifactId>org.gvsig.compat</artifactId>					
114
					<classifier>se</classifier>					
115
				</dependency>
116
			</dependencies>
117
		</profile>
118
		<profile>
119
			<id>cdc</id>
120
			<activation>
121
				<activeByDefault>false</activeByDefault>
122
			</activation>
123
			<dependencies>			
124
				<dependency>
125
					<groupId>org.gvsig.mobile</groupId>
126
					<artifactId>org.gvsig.mobile.compat</artifactId>					
127
				</dependency>
128
			</dependencies>
129
			<build>
130
				<plugins>
131
					<plugin>
132
						<groupId>org.apache.maven.plugins</groupId>
133
						<artifactId>maven-compiler-plugin</artifactId>
134
						<configuration>
135
							<source>1.4</source>
136
							<target>1.4</target>
137
						</configuration>
138
					</plugin>
139
				</plugins>
140
			</build>
141
		</profile>
142
	</profiles>	
145 143
</project>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff