Statistics
| Revision:

root / org.gvsig.xmlpull / library / trunk / org.gvsig.xmlpull / org.gvsig.xmlpull.lib / org.gvsig.xmlpull.lib.impl / pom.xml @ 1585

History | View | Annotate | Download (1.75 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.xmlpull.lib.impl</artifactId>
6
        <packaging>jar</packaging>
7
        <name>org.gvsig.xmlpull.lib.impl</name>
8
        <description>Default XML Pull library Implementation</description>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>org.gvsig.xmlpull.lib</artifactId>        
12
                <version>2.0.36-SNAPSHOT</version>                        
13
        </parent>
14
        <dependencies>
15
        
16
                <dependency>
17
                      <groupId>org.gvsig</groupId>
18
                      <artifactId>org.gvsig.tools.lib</artifactId>
19
            </dependency>
20
            <dependency>
21
                      <groupId>org.gvsig</groupId>
22
                      <artifactId>org.gvsig.tools.lib</artifactId>
23
                      <type>test-jar</type>
24
            </dependency>  
25

    
26
                <dependency>
27
                        <groupId>org.gvsig</groupId>
28
                        <artifactId>org.gvsig.xmlpull.lib.api</artifactId>        
29
                </dependency>
30
                <dependency>
31
                        <groupId>org.gvsig</groupId>
32
                        <artifactId>org.gvsig.xmlpull.lib.spi</artifactId>                        
33
                </dependency>
34
        </dependencies>
35
        <build>
36
                <plugins>
37
                        <plugin>
38
                                <groupId>org.apache.maven.plugins</groupId>
39
                                <artifactId>maven-compiler-plugin</artifactId>
40
                                <configuration>
41
                                        <source>1.4</source>
42
                                        <target>1.5</target>
43
                                </configuration>
44
                        </plugin>
45
                </plugins>
46
        </build>
47
        <profiles>
48
                <profile>
49
                        <id>cdc</id>
50
                        <build>
51
                                <plugins>
52
                                        <plugin>
53
                                                <groupId>org.apache.maven.plugins</groupId>
54
                                                <artifactId>maven-compiler-plugin</artifactId>
55
                                                <configuration>
56
                                                        <source>1.4</source>
57
                                                        <target>1.4</target>
58
                                                </configuration>
59
                                        </plugin>
60
                                </plugins>
61
                        </build>
62
                </profile>
63
        </profiles>
64
</project>