Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libProjection / pom.xml @ 27509

History | View | Annotate | Download (4.6 KB)

1
<?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
        <modelVersion>4.0.0</modelVersion>
7
        <groupId>org.gvsig</groupId>
8
        <artifactId>org.gvsig.projection</artifactId>
9
        <packaging>jar</packaging>
10
        <version>2.0-SNAPSHOT</version>
11
        <name>libProjection</name>
12
        <url>http://gvsig.org</url>
13
        <parent>
14
                <groupId>org.gvsig</groupId>
15
                <artifactId>gvsig-library-base-pom</artifactId>
16
                <version>2.0-SNAPSHOT</version>
17
        </parent>
18
        <dependencies>
19
                <dependency>
20
                        <groupId>org.gvsig</groupId>
21
                        <artifactId>org.gvsig.i18n</artifactId>
22
                        <version>2.0-SNAPSHOT</version>
23
                </dependency>
24
                <dependency>
25
                        <groupId>org.gvsig</groupId>
26
                        <artifactId>org.gvsig.tools</artifactId>
27
                        <version>2.0-SNAPSHOT</version>
28
                </dependency>
29
                <dependency>
30
                        <groupId>org.gvsig.legacy</groupId>
31
                        <artifactId>geoapi</artifactId>
32
                        <version>gvsig</version>
33
                </dependency>
34
                <dependency>
35
                        <groupId>org.gvsig.legacy</groupId>
36
                        <artifactId>gt2-legacy</artifactId>
37
                        <version>gvsig</version>
38
                </dependency>
39
                <dependency>
40
                        <groupId>org.gvsig.legacy</groupId>
41
                        <artifactId>gt2-main</artifactId>
42
                        <version>gvsig</version>
43
                </dependency>
44
                <dependency>
45
                        <groupId>org.gvsig.legacy</groupId>
46
                        <artifactId>geojava</artifactId>
47
                        <version>gvsig</version>
48
                </dependency>
49
                <dependency>
50
                        <groupId>org.gvsig.legacy</groupId>
51
                        <artifactId>vecmath</artifactId>
52
                        <version>gvsig</version>
53
                </dependency>
54
                <dependency>
55
                        <groupId>javax.media</groupId>
56
                        <artifactId>jai_core</artifactId>
57
                        <version>1.1.3</version>
58
                </dependency>
59
                <dependency>
60
                        <groupId>javax.media</groupId>
61
                        <artifactId>jai_codec</artifactId>
62
                        <version>1.1.3</version>
63
                </dependency>
64
                <dependency>
65
                        <groupId>javax.units</groupId>
66
                        <artifactId>jsr108</artifactId>
67
                        <version>0.01</version>
68
                </dependency>
69

    
70
        </dependencies>
71
        <build>
72
                <sourceDirectory>src</sourceDirectory>
73
                <testSourceDirectory>src-test</testSourceDirectory>
74
                <resources>
75
                    <resource>
76
                                <directory>config</directory>
77
                        </resource>
78
                        <resource>
79
                                <directory>images</directory>
80
                        </resource>
81
                </resources>
82
                
83
                <plugins>
84
                        <plugin>
85
                                <groupId>org.apache.maven.plugins</groupId>
86
                                <artifactId>maven-compiler-plugin</artifactId>
87
                                <configuration>
88
                                        <source>1.4</source>
89
                                        <target>1.4</target>
90
                                        <!-- put your configurations here -->
91
                                        <encoding>ISO-8859-1</encoding>
92
                                </configuration>
93
                        </plugin>
94
                        <plugin>
95
                                <groupId>org.apache.maven.plugins</groupId>
96
                                <artifactId>maven-jar-plugin</artifactId>
97
                                <configuration>
98
                                        <excludes>
99
                                                <exclude>**/org/cresques/impl/**</exclude>
100
                                                <exclude>**/org/cresques/ui/**</exclude>
101
                                                <exclude>**/org/cresques/resources/**</exclude>
102
                                                <exclude>*.gif</exclude>
103
                                        </excludes>
104
                                </configuration>
105
                                <executions>
106
                                <!--         <execution>
107
                                                <id>projection-api</id>
108
                                                <phase>package</phase>
109
                                                <goals>
110
                                                        <goal>jar</goal>
111
                                                </goals>
112
                                                <configuration>
113
                                                        <classifier>projection-api</classifier>
114
                                                        <excludes>
115
                                                                <exclude>**/org/cresques/impl/**</exclude>
116
                                                                <exclude>**/org/cresques/ui/**</exclude>
117
                                                                <exclude>**/org/cresques/resources/**</exclude>
118
                                                                <exclude>*.gif</exclude>
119
                                                        </excludes>
120
                                                </configuration>
121
                                        </execution> -->
122
                                        <execution>
123
                                                <id>cresques-ui</id>
124
                                                <phase>package</phase>
125
                                                <goals>
126
                                                        <goal>jar</goal>
127
                                                </goals>
128
                                                <configuration>
129
                                                        <classifier>cresques-ui</classifier>
130
                                                        <excludes>
131
                                                                <exclude>NONE</exclude>
132
                                                        </excludes>
133
                                                        <includes>
134
                                                                <include>**/org/cresques/ui/**</include>
135
                                                                <include>**/org/cresques/resources/**</include>
136
                                                                <include>*.gif</include>
137
                                                        </includes>
138
                                                <!--        <finalName>org.cresques.ui</finalName>  -->
139
                                                </configuration>
140
                                        </execution>
141
                                        <execution>
142
                                                <id>cresques-cts-impl</id>
143
                                                <phase>package</phase>
144
                                                <goals>
145
                                                        <goal>jar</goal>
146
                                                </goals>
147
                                                <configuration>
148
                                                        <classifier>cresques-impl</classifier>
149
                                                        <excludes>
150
                                                                <exclude>**/org/cresques/resources/**</exclude>
151
                                                                <exclude>*.gif</exclude>
152
                                                        </excludes>
153
                                                        <includes>
154
                                                                <include>**/org/cresques/impl/**</include>
155
                                                        </includes>
156
                                                <!-- <finalName>org.cresques.cts</finalName> -->
157
                                                </configuration>
158
                                        </execution>
159
                                </executions>
160

    
161
                        </plugin>
162

    
163
                </plugins>
164
        </build>
165
</project>