On Nov 10, 2010, at 12:37 AM, lv wrote: > I add and change some java files of Geotools. Then, I use mvn clean install > –DskipTests to rebuild GeoTools. Is it the right step? right, as long as you understand that skipTests skips tests... so you don't really know if anything's broken because of your changes.
> After rebuilding , where are the new libraries that I can use to add other > web applications? <user home dir>/.m2/repository/org/geotools/... It'd be easier if you also use maven to build those other web applications, since declaring a dependency over one of the geotools artifacts will carry over all its transitive dependencies. Otherwise you need a way to know exactly which other libraries the geotools artifact in question depends upon. You can easily do that by changing dir to that geotool's project and ask maven, for example: cd <geotools dev dir>/modules/plugins/arcsde mvn dependency:tree hope that helps, gabriel > > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev_______________________________________________ > Geotools-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/geotools-devel Gabriel Roldan [email protected] Expert service straight from the developers ------------------------------------------------------------------------------ Centralized Desktop Delivery: Dell and VMware Reference Architecture Simplifying enterprise desktop deployment and management using Dell EqualLogic storage and VMware View: A highly scalable, end-to-end client virtualization framework. Read more! http://p.sf.net/sfu/dell-eql-dev2dev _______________________________________________ Geotools-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geotools-devel
