Revision 285 org.gvsig.gpe/library/trunk/org.gvsig.gpe/org.gvsig.gpe.lib/org.gvsig.gpe.lib.impl/pom.xml

View differences:

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>

Also available in: Unified diff