Revision 807 org.gvsig.tools/library/trunk/org.gvsig.tools/pom.xml

View differences:

pom.xml
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<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">
3 3
    <modelVersion>4.0.0</modelVersion>
4
    <groupId>org.gvsig</groupId>    
4 5
    <artifactId>org.gvsig.tools</artifactId>
5 6
    <packaging>pom</packaging>
6
    <version>3.0.2-SNAPSHOT</version>
7
    <version>3.0.3-SNAPSHOT</version>
7 8
    <name>org.gvsig.tools</name>
8 9
    <description>Tools related to application framework architecture 
9 10
	and implementations of design patterns</description>
10
    <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.maven.base.pom</artifactId>
13
        <version>1.0.10-SNAPSHOT</version>
14
    </parent>
11

  
15 12
    <scm>
16 13
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-tools/org.gvsig.tools/library/trunk/org.gvsig.tools</connection>
17 14
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-tools/org.gvsig.tools/library/trunk/org.gvsig.tools</developerConnection>
......
46 43
        </developer>
47 44
    </developers>
48 45

  
46
    <dependencyManagement>
47
      <dependencies>
48
        <dependency>
49
            <groupId>junit</groupId>
50
            <artifactId>junit</artifactId>
51
            <version>3.8.1</version>
52
        </dependency>
53
		<dependency>
54
            <groupId>org.slf4j</groupId>
55
            <artifactId>slf4j-api</artifactId>
56
            <version>1.5.5</version>
57
        </dependency>
58
        <dependency>
59
            <groupId>org.slf4j</groupId>
60
            <artifactId>slf4j-log4j12</artifactId>
61
            <version>1.5.5</version>
62
        </dependency>
63
        <dependency>
64
          <groupId>easymock</groupId>
65
          <artifactId>easymock</artifactId>
66
          <version>1.2_Java1.3</version>
67
          <scope>test</scope>
68
        </dependency>
69
        <dependency>
70
           <groupId>net.sf.kxml</groupId>
71
           <artifactId>kxml2</artifactId>
72
	       <version>2.2.2</version>
73
        </dependency>
74
        <dependency>
75
            <groupId>commons-io</groupId>
76
            <artifactId>commons-io</artifactId>
77
            <version>2.4</version>
78
        </dependency>
79
        <dependency>
80
            <groupId>net.sf</groupId>
81
            <artifactId>flib-jcalendar</artifactId>
82
            <version>unknown</version>
83
        </dependency>
84
                
85
        <dependency>
86
            <groupId>org.gvsig</groupId>
87
            <artifactId>org.gvsig.tools.lib</artifactId>
88
            <version>${gvsig.tools.children.version}</version>
89
        </dependency>
90
        <dependency>
91
            <groupId>org.gvsig</groupId>
92
            <artifactId>org.gvsig.tools.swing</artifactId>
93
            <version>${gvsig.tools.children.version}</version>
94
        </dependency>
95
        <dependency>
96
            <groupId>org.gvsig</groupId>
97
            <artifactId>org.gvsig.tools.swing.api</artifactId>
98
            <version>${gvsig.tools.children.version}</version>
99
        </dependency>
100
        <dependency>
101
            <groupId>org.gvsig</groupId>
102
            <artifactId>org.gvsig.tools.swing.impl</artifactId>
103
            <version>${gvsig.tools.children.version}</version>
104
        </dependency>
105
        <dependency>
106
            <groupId>org.gvsig</groupId>
107
            <artifactId>org.gvsig.tools.swing.spi</artifactId>
108
            <version>${gvsig.tools.children.version}</version>
109
        </dependency>
110
        <dependency>
111
            <groupId>org.gvsig</groupId>
112
            <artifactId>org.gvsig.tools.swing.serv</artifactId>
113
            <version>${gvsig.tools.children.version}</version>
114
        </dependency>
115
        <dependency>
116
            <groupId>org.gvsig</groupId>
117
            <artifactId>org.gvsig.tools.swing.serv.field</artifactId>
118
            <version>${gvsig.tools.children.version}</version>
119
        </dependency>
120
        <dependency>
121
            <groupId>org.gvsig</groupId>
122
            <artifactId>org.gvsig.tools.swing.serv.jform</artifactId>
123
            <version>${gvsig.tools.children.version}</version>
124
        </dependency>
125
        <dependency>
126
            <groupId>org.gvsig</groupId>
127
            <artifactId>org.gvsig.tools.swing.serv.jlist</artifactId>
128
            <version>${gvsig.tools.children.version}</version>
129
        </dependency>
130
        
131
      </dependencies>
132
    </dependencyManagement>
133

  
49 134
    <dependencies>
50 135
        <dependency>
51 136
            <groupId>org.slf4j</groupId>
......
57 142
            <artifactId>slf4j-log4j12</artifactId>
58 143
            <scope>runtime</scope>
59 144
        </dependency>
145
        <dependency>
146
            <groupId>junit</groupId>
147
            <artifactId>junit</artifactId>
148
            <scope>test</scope>
149
        </dependency>
60 150
    </dependencies>
61 151

  
62 152
    <build>
153
      <pluginManagement>
63 154
        <plugins>
155
        
156
          <plugin>
157
              <groupId>org.apache.maven.plugins</groupId>
158
              <artifactId>maven-surefire-plugin</artifactId>
159
              <version>2.7.1</version>
160
              <configuration>
161
                  <forkMode>once</forkMode>
162
              </configuration>
163
          </plugin>
164
          <plugin>
165
              <groupId>org.apache.maven.plugins</groupId>
166
              <artifactId>maven-compiler-plugin</artifactId>
167
              <version>2.3.2</version>
168
              <configuration>
169
                  <source>1.5</source>
170
                  <target>1.5</target>
171
                  <encoding>ISO-8859-1</encoding>
172
              </configuration>
173
          </plugin>
174

  
175
          <plugin>
176
              <groupId>org.apache.maven.plugins</groupId>
177
              <artifactId>maven-resources-plugin</artifactId>
178
              <version>2.4.3</version>
179
              <configuration>
180
                  <encoding>ISO-8859-1</encoding>
181
              </configuration>
182
          </plugin>
183
        
184
		   <plugin>
185
              <groupId>org.apache.maven.plugins</groupId>
186
              <artifactId>maven-javadoc-plugin</artifactId>
187
              <version>2.9</version>
188
              <configuration>
189
                  <docTitle>${project.name} ${project.version}</docTitle>
190
                  <encoding>ISO-8859-1</encoding>
191
                  <footer />
192
                  <header />
193
                  <keywords>true</keywords>
194
                  <detectLinks>true</detectLinks>
195
                  <javaApiLinks>
196
                      <property>
197
                          <name>api_1.4</name>
198
                          <value>http://download.oracle.com/javase/1.4.2/docs/api/</value>
199
                      </property>
200
                      <property>
201
                          <name>api_1.5</name>
202
                          <value>http://download.oracle.com/javase/1.5.0/docs/api/</value>
203
                      </property>
204
                      <property>
205
                          <name>api_1.6</name>
206
                          <value>http://download.oracle.com/javase/6/docs/api/</value>
207
                      </property>
208
                  </javaApiLinks>
209
              </configuration>
210
          </plugin>
211
        
212
          <plugin>
213
              <groupId>org.apache.maven.plugins</groupId>
214
              <artifactId>maven-site-plugin</artifactId>
215
              <configuration>
216
                  <chmod>true</chmod>
217
                  <chmodMode>a+rwX</chmodMode>
218
              </configuration>
219
          </plugin>
220
          
221
          <plugin>
222
              <groupId>org.apache.maven.plugins</groupId>
223
              <artifactId>maven-jar-plugin</artifactId>
224
              <version>2.3.1</version>
225
              <configuration>
226
                  <archive>
227
                      <manifestEntries>
228
                          <Built-By>gvSIG Team</Built-By>
229
                      </manifestEntries>
230
                  </archive>
231
              </configuration>
232
          </plugin>
233
          
234
          <plugin>
235
            <groupId>org.codehaus.mojo</groupId>
236
            <artifactId>properties-maven-plugin</artifactId>
237
            <version>1.0-alpha-2</version>
238
          </plugin>
239
  
240
          <plugin>
241
            <groupId>org.codehaus.gmaven</groupId>
242
            <artifactId>gmaven-plugin</artifactId>
243
            <version>1.4</version>
244
          </plugin>
245
  
246
          <plugin>
247
            <groupId>org.apache.maven.plugins</groupId>
248
            <artifactId>maven-antrun-plugin</artifactId>
249
            <version>1.7</version>
250
          </plugin>
251

  
252
          <plugin>
253
            <groupId>org.codehaus.mojo</groupId>
254
            <artifactId>animal-sniffer-maven-plugin</artifactId>
255
            <version>1.9</version>
256
          </plugin>
257

  
258
          <plugin>
259
              <groupId>org.apache.maven.plugins</groupId>
260
              <artifactId>maven-release-plugin</artifactId>
261
              <version>2.1</version>
262
          </plugin>
263

  
264
          <plugin>
265
            <groupId>org.apache.maven.plugins</groupId>
266
            <artifactId>maven-assembly-plugin</artifactId>
267
            <version>2.2-beta-5</version>
268
          </plugin>
269

  
270
          <plugin>
271
            <groupId>org.apache.maven.plugins</groupId>
272
            <artifactId>maven-clean-plugin</artifactId>
273
            <version>2.4.1</version>
274
          </plugin>
275
          
276
          <plugin>
277
              <groupId>org.codehaus.mojo</groupId>
278
              <artifactId>exec-maven-plugin</artifactId>
279
              <version>1.2</version>
280
          </plugin>    
281

  
282
          <plugin>
283
              <groupId>com.mycila.maven-license-plugin</groupId>
284
              <artifactId>maven-license-plugin</artifactId>
285
              <version>1.10.b1</version>
286
          </plugin>    
287

  
288
          <plugin>
289
              <groupId>org.apache.maven.plugins</groupId>
290
              <artifactId>maven-source-plugin</artifactId>
291
              <version>2.2.1</version>
292
          </plugin>
293

  
294
        </plugins>
295
      </pluginManagement>
296
      
297
        <plugins>
64 298
            <plugin>
65 299
                <groupId>org.apache.maven.plugins</groupId>
66 300
                <artifactId>maven-release-plugin</artifactId>
......
69 303
                    <goals>deploy</goals>
70 304
                </configuration>
71 305
            </plugin>
306
            <plugin>
307
		        <!-- to continue building  when test fail -->
308
		        <groupId>org.apache.maven.plugins</groupId>
309
		        <artifactId>maven-surefire-plugin</artifactId>
310
		        <configuration>
311
		          <testFailureIgnore>true</testFailureIgnore>
312
		        </configuration>
313
		      </plugin>
72 314
        </plugins>
73 315
    </build>
316
    
317
    <properties>
318
    	<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
319
    	<localRepository>${user.home}/.m2/repository</localRepository>
320
    	<site-repository>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</site-repository>
321

  
322
	    <gvsig.tools.children.version>3.0.3-SNAPSHOT</gvsig.tools.children.version>
323
  	</properties>
324
    
74 325
    <profiles>
75 326
        <profile>
76 327
            <id>cdc</id>
......
93 344
                        <checksumPolicy>warn</checksumPolicy>
94 345
                    </snapshots>
95 346
                </repository>
347
                <!-- 
96 348
                <repository>
97 349
                    <id>osgeo</id>
98 350
                    <name>Open Source Geospatial Foundation</name>
......
106 358
                        <enabled>false</enabled>
107 359
                    </snapshots>
108 360
                </repository>
361
                -->
109 362
            </repositories>
110 363
            <modules>
111 364
                <module>org.gvsig.tools.lib</module>

Also available in: Unified diff