Statistics
| Revision:

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

History | View | Annotate | Download (3.23 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.prov.kxml</artifactId>
8
        <packaging>jar</packaging>
9
        <name>org.gvsig.xmlschema.prov.kxml</name>
10
        <description>xmlschema provider based on kxml</description>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>org.gvsig.xmlschema.prov</artifactId>        
14
                <version>2.0.0-SNAPSHOT</version>                        
15
        </parent>
16
        <dependencies>
17
                <dependency>
18
                        <groupId>org.gvsig</groupId>
19
                        <artifactId>org.gvsig.compat</artifactId>                                        
20
                </dependency>
21
                <dependency>
22
                        <groupId>org.gvsig</groupId>
23
                        <artifactId>org.gvsig.compat</artifactId>                        
24
                        <classifier>se</classifier>
25
                </dependency>
26
                <dependency>
27
                        <groupId>org.gvsig</groupId>
28
                        <artifactId>org.gvsig.xmlschema.lib.api</artifactId>
29
                        <version>2.0.0-SNAPSHOT</version>
30
                </dependency>
31
                <dependency>
32
                        <groupId>org.gvsig</groupId>
33
                        <artifactId>org.gvsig.xmlschema.lib.spi</artifactId>
34
                        <version>2.0.0-SNAPSHOT</version>
35
                </dependency>
36
                <dependency>
37
                        <groupId>org.gvsig</groupId>
38
                        <artifactId>org.gvsig.xmlschema.lib.spi</artifactId>
39
                        <version>2.0.0-SNAPSHOT</version>
40
                        <classifier>tests</classifier>
41
                        <scope>test</scope>
42
                </dependency>
43
                <dependency>
44
                        <groupId>org.gvsig</groupId>
45
                        <artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
46
                        <version>2.0.0-SNAPSHOT</version>
47
                        <scope>runtime</scope>
48
                </dependency>
49
                <dependency>
50
                        <groupId>org.gvsig</groupId>
51
                        <artifactId>org.gvsig.xmlpull.lib.impl</artifactId>
52
                        <version>2.0.0</version>
53
                        <scope>runtime</scope>
54
                </dependency>
55
                <dependency>
56
                        <groupId>org.gvsig</groupId>
57
                        <artifactId>org.gvsig.xmlpull.prov.kxml</artifactId>
58
                        <version>2.0.0</version>
59
                        <scope>runtime</scope>
60
                </dependency>
61
                
62
                <!--
63
                <dependency>
64
                        <groupId>org.gvsig</groupId>
65
                        <artifactId>org.gvsig.gpe.lib.impl</artifactId>
66
                        <scope>runtime</scope>
67
                </dependency>
68
                <dependency>
69
                        <groupId>org.gvsig</groupId>
70
                        <artifactId>org.gvsig.gpe.prov.gml</artifactId>
71
                        <scope>runtime</scope>
72
                </dependency>
73
                -->
74
                
75
                <dependency>
76
                        <groupId>org.gvsig</groupId>
77
                        <artifactId>org.gvsig.xmlpull.lib.api</artifactId>
78
                        <version>2.0.0</version>
79
                </dependency>
80
        </dependencies>
81
        <build>
82
                <plugins>
83
                        <plugin>
84
                                <groupId>org.apache.maven.plugins</groupId>
85
                                <artifactId>maven-compiler-plugin</artifactId>
86
                                <configuration>
87
                                        <source>1.4</source>
88
                                        <target>1.5</target>
89
                                </configuration>
90
                        </plugin>
91
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
92
                        <plugin>
93
                                <groupId>org.apache.maven.plugins</groupId>
94
                                <artifactId>maven-surefire-plugin</artifactId>
95
                                <configuration>
96
                                        <skipTests>true</skipTests>
97
                                </configuration>
98
                        </plugin>
99
                </plugins>
100
        </build>
101
        <profiles>
102
                <profile>
103
                        <id>cdc</id>
104
                        <build>
105
                                <plugins>
106
                                        <plugin>
107
                                                <groupId>org.apache.maven.plugins</groupId>
108
                                                <artifactId>maven-compiler-plugin</artifactId>
109
                                                <configuration>
110
                                                        <source>1.4</source>
111
                                                        <target>1.4</target>
112
                                                </configuration>
113
                                        </plugin>
114
                                </plugins>
115
                        </build>
116
                </profile>
117
        </profiles>
118
</project>