Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-devel] Force Maven download specific lib verion: HOW TO?

Marco,

normally you can force maven to load a specified version if you define the relevant project in the dependencyManagement section :

<dependencyManagement>
<dependencies>
                     <dependency> 
                          <groupId>it.geosolutions.imageio-ext</groupId> 
                          <artifactId>imageio-ext-streams</artifactId> 
                          <version>${imageio-ext.version}</version> 
                     </dependency> 
</dependencies>
</dependencyManagement>

Cheers,
Frank

2012/8/15 Marco Foi <foimarco@xxxxxxxxx>
As described in
I am using Maven to download libs for the  net.refractions.udi.lib  plug-in

Currently imageio-ext-XXX libs are downloaded in 1.1.4 version
BUT
classpath requires 1.1.3
(and also sqlite-jdbc-spatialite downloads in a newer version)

Is there any way to force Maven to download good-old ones? (instead of fixing 'build.properties')

Marco

_______________________________________________
User-friendly Desktop Internet GIS (uDig)
http://udig.refractions.net
http://lists.refractions.net/mailman/listinfo/udig-devel



Back to the top