Statistics
| Revision:

root / org.gvsig.xmlschema / library / trunk / org.gvsig.xmlschema / org.gvsig.xmlschema.prov / org.gvsig.xmlschema.prov.kxml / pom.xml @ 888

History | View | Annotate | Download (3.99 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.prov.kxml</artifactId>
7
    <packaging>jar</packaging>
8
    <name>org.gvsig.xmlschema.prov.kxml</name>
9
    <description>xmlschema provider based on kxml</description>
10
    <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.xmlschema.prov</artifactId>        
13
        <version>2.0.16</version>                        
14
    </parent>
15
    <dependencies>
16
        
17
        <dependency>
18
            <groupId>org.gvsig</groupId>
19
            <artifactId>org.gvsig.tools.lib</artifactId>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.tools.lib</artifactId>
24
            <type>test-jar</type>
25
        </dependency>  
26
        
27
        <dependency>
28
            <groupId>org.gvsig</groupId>
29
            <artifactId>org.gvsig.compat.api</artifactId>                                        
30
        </dependency>
31
        <dependency>
32
            <groupId>org.gvsig</groupId>
33
            <artifactId>org.gvsig.compat.se</artifactId>                        
34
        </dependency>
35
        <dependency>
36
            <groupId>org.gvsig</groupId>
37
            <artifactId>org.gvsig.xmlschema.lib.api</artifactId>
38
            <version>2.0.16</version>
39
        </dependency>
40
        <dependency>
41
            <groupId>org.gvsig</groupId>
42
            <artifactId>org.gvsig.xmlschema.lib.spi</artifactId>
43
            <version>2.0.16</version>
44
        </dependency>
45
        <dependency>
46
            <groupId>org.gvsig</groupId>
47
            <artifactId>org.gvsig.xmlschema.lib.spi</artifactId>
48
            <version>2.0.16</version>
49
            <classifier>tests</classifier>
50
            <scope>test</scope>
51
        </dependency>
52
        <dependency>
53
            <groupId>org.gvsig</groupId>
54
            <artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
55
            <version>2.0.16</version>
56
            <scope>runtime</scope>
57
        </dependency>
58
        <dependency>
59
            <groupId>org.gvsig</groupId>
60
            <artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
61
            <version>2.0.1</version>
62
            <scope>runtime</scope>
63
        </dependency>
64
        <dependency>
65
            <groupId>org.gvsig</groupId>
66
            <artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
67
            <version>2.0.1</version>
68
            <scope>runtime</scope>
69
        </dependency>
70
                
71

    
72
        <dependency>
73
            <groupId>org.gvsig</groupId>
74
            <artifactId>org.gvsig.xmlpull.lib.api</artifactId>
75
            <version>2.0.1</version>
76
        </dependency>
77
    </dependencies>
78
    <build>
79
        <plugins>
80
            <plugin>
81
                <groupId>org.apache.maven.plugins</groupId>
82
                <artifactId>maven-compiler-plugin</artifactId>
83
                <configuration>
84
                    <source>1.4</source>
85
                    <target>1.5</target>
86
                </configuration>
87
            </plugin>
88
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
89
            <plugin>
90
                <groupId>org.apache.maven.plugins</groupId>
91
                <artifactId>maven-surefire-plugin</artifactId>
92
                <configuration>
93
                    <skipTests>true</skipTests>
94
                </configuration>
95
            </plugin>
96
        </plugins>
97
    </build>
98
    <profiles>
99
        <profile>
100
            <id>cdc</id>
101
            <build>
102
                <plugins>
103
                    <plugin>
104
                        <groupId>org.apache.maven.plugins</groupId>
105
                        <artifactId>maven-compiler-plugin</artifactId>
106
                        <configuration>
107
                            <source>1.4</source>
108
                            <target>1.4</target>
109
                        </configuration>
110
                    </plugin>
111
                </plugins>
112
            </build>
113
        </profile>
114
    </profiles>
115
</project>