Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2002 / libraries / libFMap_dal / pom.xml @ 33816

History | View | Annotate | Download (3.58 KB)

1 26011 cordinyana
<?xml version="1.0" encoding="UTF-8"?>
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/maven-v4_0_0.xsd">
6
7
        <parent>
8
                <artifactId>gvsig-library-base-pom</artifactId>
9
                <groupId>org.gvsig</groupId>
10
                <version>2.0-SNAPSHOT</version>
11
        </parent>
12
        <modelVersion>4.0.0</modelVersion>
13
        <groupId>org.gvsig</groupId>
14
        <artifactId>org.gvsig.fmap.dal</artifactId>
15
        <name>libFMap_data</name>
16
        <version>2.0-SNAPSHOT</version>
17
        <url>http://gvsig.org</url>
18
        <build>
19
                <sourceDirectory>src</sourceDirectory>
20
                <testSourceDirectory>src-test</testSourceDirectory>
21
                <plugins>
22
                        <plugin>
23
                                <groupId>org.apache.maven.plugins</groupId>
24 26757 cordinyana
                                <artifactId>maven-compiler-plugin</artifactId>
25
                                <configuration>
26
                                        <source>1.4</source>
27
                                        <target>1.4</target>
28
                                </configuration>
29
                        </plugin>
30
                        <plugin>
31
                                <groupId>org.apache.maven.plugins</groupId>
32 26011 cordinyana
                                <artifactId>maven-jar-plugin</artifactId>
33 26757 cordinyana
                                <configuration>
34
                                        <excludes>
35
                                                <exclude>**/impl/**</exclude>
36
                                                <exclude>**/spi/**</exclude>
37
                                        </excludes>
38
                        </configuration>
39 26011 cordinyana
                                <executions>
40
                                        <!--
41
                                                Generates a jar file only with the DAL API.
42
                                        <execution>
43
                                                <id>api</id>
44
                                                <phase>package</phase>
45
                                                <goals>
46
                                                        <goal>jar</goal>
47
                                                </goals>
48
                                                <configuration>
49
                                                        <classifier>api</classifier>
50
                                                        <excludes>
51
                                                                <exclude>**/impl/**</exclude>
52
                                                                <exclude>**/spi/**</exclude>
53
                                                        </excludes>
54
                                                </configuration>
55
                                        </execution>
56 26757 cordinyana
                                        -->
57 26011 cordinyana
                                        <!--
58
                                                Generates a jar file only with the DAL default implementation
59
                                        -->
60
                                        <execution>
61
                                                <id>impl</id>
62
                                                <phase>package</phase>
63
                                                <goals>
64
                                                        <goal>jar</goal>
65
                                                </goals>
66
                                                <configuration>
67
                                                        <classifier>impl</classifier>
68
                                                        <includes>
69
                                                                <include>**/impl/**</include>
70
                                                        </includes>
71
                                                        <excludes>
72
                                                                <exclude>**/spi/**</exclude>
73
                                                        </excludes>
74
                                                </configuration>
75
                                        </execution>
76
                                        <!--
77
                                                Generates a jar file only with the DAL SPI
78
                                        -->
79
                                        <execution>
80
                                                <id>spi</id>
81
                                                <phase>package</phase>
82
                                                <goals>
83
                                                        <goal>jar</goal>
84
                                                </goals>
85
                                                <configuration>
86
                                                        <classifier>spi</classifier>
87
                                                        <includes>
88
                                                                <include>**/spi/**</include>
89
                                                        </includes>
90
                                                        <excludes>
91
                                                                <exclude>**/impl/**</exclude>
92
                                                        </excludes>
93
                                                </configuration>
94
                                        </execution>
95
                                        <!--
96
                                                Generates a jar file only with the test classes
97
                                        -->
98
                                        <execution>
99
                                                <goals>
100
                                                        <goal>test-jar</goal>
101
                                                </goals>
102 26767 cordinyana
                                                <configuration>
103
                                                        <includes>
104
                                                                <include>**/**</include>
105
                                                        </includes>
106
                                                        <excludes>
107
                                                                <exclude>NONE</exclude>
108
                                                        </excludes>
109
                                                </configuration>
110 26011 cordinyana
                                        </execution>
111
                                </executions>
112
                        </plugin>
113
                </plugins>
114
        </build>
115
        <dependencies>
116
                <dependency>
117
                        <groupId>org.gvsig</groupId>
118
                        <artifactId>org.gvsig.fmap.geometry</artifactId>
119
                        <version>2.0-SNAPSHOT</version>
120
                </dependency>
121
                <dependency>
122
                        <groupId>org.gvsig</groupId>
123
                        <artifactId>org.gvsig.metadata</artifactId>
124
                        <version>2.0-SNAPSHOT</version>
125
                </dependency>
126 26757 cordinyana
                <!--
127 26011 cordinyana
                <dependency>
128
                        <groupId>org.gvsig</groupId>
129 26757 cordinyana
                        <artifactId>com.iver.utiles/artifactId>
130 26011 cordinyana
                        <version>2.0-SNAPSHOT</version>
131
                </dependency>
132 26757 cordinyana
                 -->
133 26011 cordinyana
                <dependency>
134
                        <groupId>org.gvsig</groupId>
135 26757 cordinyana
                        <artifactId>org.gvsig.tools</artifactId>
136 26011 cordinyana
                        <version>2.0-SNAPSHOT</version>
137
                </dependency>
138
                <dependency>
139
                        <groupId>easymock</groupId>
140
                        <artifactId>easymock</artifactId>
141
                        <version>1.2_Java1.3</version>
142
                </dependency>
143
        </dependencies>
144 23261 cordinyana
</project>