Statistics
| Revision:

root / org.gvsig.gpe / library / trunk / org.gvsig.gpe / org.gvsig.gpe.lib / org.gvsig.gpe.lib.impl / pom.xml @ 799

History | View | Annotate | Download (2.33 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
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.gpe.lib.impl</artifactId>
5
        <packaging>jar</packaging>
6
        <name>org.gvsig.gpe.lib.impl</name>
7
        <description>Default Generic Persistence Engine library Implementation</description>
8
        <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.gpe.lib</artifactId>        
11
                <version>2.1.66</version>                
12
        </parent>
13
        <dependencies>
14
                <dependency>
15
                        <groupId>org.gvsig</groupId>
16
                        <artifactId>org.gvsig.gpe.lib.api</artifactId>        
17
                        <scope>compile</scope>
18
                </dependency>
19
                <dependency>
20
                        <groupId>org.gvsig</groupId>
21
                        <artifactId>org.gvsig.gpe.lib.spi</artifactId>
22
                        <scope>compile</scope>
23
                </dependency>
24
                <dependency>
25
                        <groupId>org.gvsig</groupId>
26
                        <artifactId>org.gvsig.xmlschema.lib.api</artifactId>        
27
                        <scope>compile</scope>
28
                </dependency>                
29
            <dependency>
30
                <groupId>org.gvsig</groupId>
31
                <artifactId>org.gvsig.tools.lib</artifactId>
32
                <type>test-jar</type>
33
                <scope>test</scope>                    
34
            </dependency>                   
35
        </dependencies>
36
        <build>                
37
                <plugins>
38
                        <plugin>
39
                                <groupId>org.apache.maven.plugins</groupId>
40
                                <artifactId>maven-jar-plugin</artifactId>
41
                                <configuration>
42
                                </configuration>
43
                                <executions>
44
                                <!--
45
                                        Generates a jar file only with the test classes
46
                                -->
47
                                        <execution>
48
                                                <goals>
49
                                                        <goal>test-jar</goal>
50
                                                </goals>
51
                                                <configuration>
52
                                                                
53
                                                </configuration>
54
                                        </execution>
55
                                </executions>
56
                        </plugin>         
57
                        <plugin>
58
                                <groupId>org.apache.maven.plugins</groupId>
59
                                <artifactId>maven-compiler-plugin</artifactId>
60
                                <configuration>
61
                                        <source>1.4</source>
62
                                        <target>1.5</target>
63
                                </configuration>
64
                        </plugin>
65
                </plugins>
66
        </build>
67
        <profiles>
68
                <profile>
69
                        <id>cdc</id>
70
                        <build>
71
                                <plugins>
72
                                        <plugin>
73
                                                <groupId>org.apache.maven.plugins</groupId>
74
                                                <artifactId>maven-compiler-plugin</artifactId>
75
                                                <configuration>
76
                                                        <source>1.4</source>
77
                                                        <target>1.4</target>
78
                                                </configuration>
79
                                        </plugin>
80
                                </plugins>
81
                        </build>
82
                </profile>
83
        </profiles>
84
</project>
85