Revision 432 org.gvsig.projection/trunk/org.gvsig.projection.api/pom.xml

View differences:

pom.xml
20 20
	      	</comments>
21 21
        </license>
22 22
    </licenses>
23
    
23

  
24 24
    <organization>
25 25
        <name>gvSIG Association</name>
26 26
        <url>http://www.gvsig.com/</url>
......
31 31
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-jcrs/org.gvsig.projection/trunk/org.gvsig.projection.api/</developerConnection>
32 32
        <url>https://devel.gvsig.org/redmine/projects/gvsig-jcrs/repository/show/org.gvsig.projection/trunk/org.gvsig.projection.api/</url>
33 33
    </scm>
34
	
34

  
35 35
	<repositories>
36 36
		<repository>
37 37
			<id>gvsig-public-http-repository</id>
......
110 110
        </otherArchives>
111 111
      </mailingList>
112 112
    </mailingLists>
113
        
113

  
114 114
   	<developers>
115 115
		<developer>
116 116
			<id>jjdelcerro</id>
......
138 138
                <groupId>junit</groupId>
139 139
                <artifactId>junit</artifactId>
140 140
                <version>3.8.1</version>
141
            </dependency>		
141
            </dependency>
142 142
	        <dependency>
143 143
	            <groupId>org.gvsig</groupId>
144 144
	            <artifactId>org.gvsig.tools.lib</artifactId>
145 145
	            <version>${gvsig.tools.version}</version>
146 146
	        </dependency>
147
		                
147

  
148 148
		</dependencies>
149 149
	</dependencyManagement>
150 150

  
......
170 170
       </extensions>
171 171
      <pluginManagement>
172 172
        <plugins>
173
        
173

  
174 174
          <plugin>
175 175
              <groupId>org.apache.maven.plugins</groupId>
176 176
              <artifactId>maven-surefire-plugin</artifactId>
......
198 198
                  <encoding>ISO-8859-1</encoding>
199 199
              </configuration>
200 200
          </plugin>
201
        
201

  
202 202
		   <plugin>
203 203
              <groupId>org.apache.maven.plugins</groupId>
204 204
              <artifactId>maven-javadoc-plugin</artifactId>
......
226 226
                  </javaApiLinks>
227 227
              </configuration>
228 228
          </plugin>
229
        
229

  
230 230
          <plugin>
231 231
              <groupId>org.apache.maven.plugins</groupId>
232 232
              <artifactId>maven-site-plugin</artifactId>
......
235 235
                  <chmodMode>a+rwX</chmodMode>
236 236
              </configuration>
237 237
          </plugin>
238
          
238

  
239 239
          <plugin>
240 240
              <groupId>org.apache.maven.plugins</groupId>
241 241
              <artifactId>maven-jar-plugin</artifactId>
......
248 248
                  </archive>
249 249
              </configuration>
250 250
          </plugin>
251
          
251

  
252 252
          <plugin>
253 253
            <groupId>org.codehaus.mojo</groupId>
254 254
            <artifactId>properties-maven-plugin</artifactId>
255 255
            <version>1.0-alpha-2</version>
256 256
          </plugin>
257
  
257

  
258 258
          <plugin>
259 259
            <groupId>org.codehaus.gmaven</groupId>
260 260
            <artifactId>gmaven-plugin</artifactId>
261 261
            <version>1.4</version>
262 262
          </plugin>
263
  
263

  
264 264
          <plugin>
265 265
            <groupId>org.apache.maven.plugins</groupId>
266 266
            <artifactId>maven-antrun-plugin</artifactId>
......
290 290
            <artifactId>maven-clean-plugin</artifactId>
291 291
            <version>2.4.1</version>
292 292
          </plugin>
293
          
293

  
294 294
          <plugin>
295 295
              <groupId>org.codehaus.mojo</groupId>
296 296
              <artifactId>exec-maven-plugin</artifactId>
297 297
              <version>1.2</version>
298
          </plugin>    
298
          </plugin>
299 299

  
300 300
          <plugin>
301 301
	          <!-- invoke as "mvn license:format" to fix the header -->
......
323 323
	                  <exclude>**/*.msg</exclude>
324 324
	              </excludes>
325 325
	          </configuration>
326
          </plugin>    
326
          </plugin>
327 327

  
328 328
          <plugin>
329 329
              <groupId>org.apache.maven.plugins</groupId>
......
333 333

  
334 334
        </plugins>
335 335
      </pluginManagement>
336
       
336

  
337 337
       <plugins>
338 338
			<plugin>
339 339
				<groupId>org.apache.maven.plugins</groupId>
......
355 355
				<artifactId>maven-release-plugin</artifactId>
356 356
				<configuration>
357 357
                    <tagBase>https://devel.gvsig.org/svn/gvsig-jcrs/${gvsig.projection.svnroot}/tags/</tagBase>
358
			        <!-- This is a 2.0 beta 6 bug. By default the goals are 'clean verify', so the modules  
359
			        are not installed, so the dependencies between modules are not met. With this configuration   
360
			        we force the module installation. -->  
361
			        <preparationGoals>clean install</preparationGoals>  
358
			        <!-- This is a 2.0 beta 6 bug. By default the goals are 'clean verify', so the modules
359
			        are not installed, so the dependencies between modules are not met. With this configuration
360
			        we force the module installation. -->
361
			        <preparationGoals>clean install</preparationGoals>
362 362
			        <autoVersionSubmodules>true</autoVersionSubmodules>
363 363
				</configuration>
364 364
			</plugin>
365
			
365

  
366 366
            <plugin>
367 367
		        <!-- to continue building  when test fail -->
368 368
		        <groupId>org.apache.maven.plugins</groupId>
......
373 373
		      </plugin>
374 374
		</plugins>
375 375
	</build>
376
	
376

  
377 377
	 <reporting>
378 378
	    <excludeDefaults>true</excludeDefaults>
379 379
	    <plugins>
......
397 397
	      </plugin>
398 398
	    </plugins>
399 399
	  </reporting>
400
	
401
	  
400

  
401

  
402 402
    <properties>
403 403
    	<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
404 404
    	<localRepository>${user.home}/.m2/repository</localRepository>
405 405
    	<site-repository>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</site-repository>
406 406

  
407 407
	    <gvsig.projection.svnroot>org.gvsig.projection</gvsig.projection.svnroot>
408
	    <gvsig.tools.version>3.0.61</gvsig.tools.version>
408
	    <gvsig.tools.version>3.0.65</gvsig.tools.version>
409 409
  	</properties>
410 410

  
411 411
</project>

Also available in: Unified diff