Statistics
| Revision:

root / org.gvsig.xmlschema / library / trunk / org.gvsig.xmlschema / org.gvsig.xmlschema.lib / org.gvsig.xmlschema.lib.spi / pom.xml @ 278

History | View | Annotate | Download (1.27 KB)

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.xmlschema.lib.spi</artifactId>
8
        <packaging>jar</packaging>
9
        <name>org.gvsig.xmlschema.lib.spi</name>
10
        <description>SPI Schema library Implementation</description>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>org.gvsig.xmlschema.lib</artifactId>        
14
                <version>2.0.0-SNAPSHOT</version>                        
15
        </parent>
16
        <dependencies>
17
                <dependency>
18
                        <groupId>org.gvsig</groupId>
19
                        <artifactId>org.gvsig.xmlschema.lib.api</artifactId>
20
                        <version>2.0.0-SNAPSHOT</version>
21
                </dependency>
22
        </dependencies>
23
        <build>                
24
                <plugins>
25
                        <plugin>
26
                                <groupId>org.apache.maven.plugins</groupId>
27
                                <artifactId>maven-jar-plugin</artifactId>
28
                                <configuration>
29
                                </configuration>
30
                                <executions>
31
                                <!--
32
                                        Generates a jar file only with the test classes
33
                                -->
34
                                        <execution>
35
                                                <goals>
36
                                                        <goal>test-jar</goal>
37
                                                </goals>
38
                                                <configuration>                                                                
39
                                                </configuration>
40
                                        </execution>
41
                                </executions>
42
                        </plugin>         
43
                </plugins>
44
        </build>
45
</project>