Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / org.gvsig.exportto / org.gvsig.exportto.swing / org.gvsig.exportto.swing.api / pom.xml @ 40099

History | View | Annotate | Download (1.84 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 http://maven.apache.org/maven-v4_0_0.xsd">
5
        <modelVersion>4.0.0</modelVersion>
6
        <artifactId>org.gvsig.exportto.swing.api</artifactId>
7
        <packaging>jar</packaging>
8
        <name>org.gvsig.exportto.swing.api</name>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>org.gvsig.exportto.swing</artifactId>
12
                <version>1.0.0-SNAPSHOT</version>
13
        </parent>
14
        <dependencies>
15
                <dependency>
16
                        <groupId>org.gvsig</groupId>
17
                        <artifactId>org.gvsig.exportto.lib.api</artifactId>
18
                        <version>1.0.0-SNAPSHOT</version>
19
                </dependency>
20
        <dependency>
21
            <groupId>org.gvsig</groupId>
22
            <artifactId>org.gvsig.tools.lib</artifactId>
23
            <scope>compile</scope>
24
        </dependency> 
25
        <dependency>
26
            <groupId>org.gvsig</groupId>
27
            <artifactId>org.gvsig.tools.swing.api</artifactId>
28
            <scope>compile</scope>
29
        </dependency> 
30
         <dependency>
31
            <groupId>org.gvsig</groupId>
32
            <artifactId>org.gvsig.projection</artifactId>
33
            <scope>compile</scope>
34
        </dependency>
35
        <dependency>
36
            <groupId>org.gvsig</groupId>
37
            <artifactId>org.gvsig.fmap.dal</artifactId>    
38
            <scope>compile</scope>        
39
        </dependency>      
40
        </dependencies>
41
        <build>
42
                <plugins>
43
                        <plugin>
44
                                <groupId>org.apache.maven.plugins</groupId>
45
                                <artifactId>maven-jar-plugin</artifactId>
46
                                <configuration>
47
                                </configuration>
48
                                <executions>
49
                                <!--
50
                                Generates a jar file only with the test classes
51
                                -->
52
                                        <execution>
53
                                                <goals>
54
                                                        <goal>test-jar</goal>
55
                                                </goals>
56
                                        </execution>
57
                                </executions>
58
                        </plugin>
59
                </plugins>
60
        </build>
61
</project>
62

    
63

    
64