Statistics
| Revision:

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

History | View | Annotate | Download (1.78 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

    
3

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