Statistics
| Revision:

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

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