Statistics
| Revision:

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

History | View | Annotate | Download (1.77 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.81</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
                </plugins>
58
        </build>
59
</project>
60