Statistics
| Revision:

root / org.gvsig.xmlschema / library / trunk / org.gvsig.xmlschema / org.gvsig.xmlschema.lib / org.gvsig.xmlschema.lib.impl / pom.xml @ 888

History | View | Annotate | Download (1.7 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
        <modelVersion>4.0.0</modelVersion>
5
        <artifactId>org.gvsig.xmlschema.lib.impl</artifactId>
6
        <packaging>jar</packaging>
7
        <name>org.gvsig.xmlschema.lib.impl</name>
8
        <description>Default XML Schema library Implementation</description>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>org.gvsig.xmlschema.lib</artifactId>        
12
                <version>2.0.16</version>                        
13
        </parent>
14
        <dependencies>
15
                <dependency>
16
                        <groupId>org.gvsig</groupId>
17
                        <artifactId>org.gvsig.xmlschema.lib.api</artifactId>
18
                        <version>2.0.16</version>
19
                </dependency>
20
                <dependency>
21
                        <groupId>org.gvsig</groupId>
22
                        <artifactId>org.gvsig.xmlschema.lib.spi</artifactId>
23
                        <version>2.0.16</version>
24
                </dependency>
25
            <dependency>
26
                <groupId>org.gvsig</groupId>
27
                <artifactId>org.gvsig.tools.lib</artifactId>
28
            </dependency>                
29
        </dependencies>        
30
        <build>
31
                <plugins>
32
                        <plugin>
33
                                <groupId>org.apache.maven.plugins</groupId>
34
                                <artifactId>maven-compiler-plugin</artifactId>
35
                                <configuration>
36
                                        <source>1.4</source>
37
                                        <target>1.5</target>
38
                                </configuration>
39
                        </plugin>
40
                </plugins>
41
        </build>
42
        <profiles>
43
                <profile>
44
                        <id>cdc</id>
45
                        <build>
46
                                <plugins>
47
                                        <plugin>
48
                                                <groupId>org.apache.maven.plugins</groupId>
49
                                                <artifactId>maven-compiler-plugin</artifactId>
50
                                                <configuration>
51
                                                        <source>1.4</source>
52
                                                        <target>1.4</target>
53
                                                </configuration>
54
                                        </plugin>
55
                                </plugins>
56
                        </build>
57
                </profile>
58
        </profiles>
59
</project>