Hello, I created a programm that uses an ArcSDEDataStoreFactory and it works fine.
Until now I didn't use Maven but I want to switch. I'm using Eclipse and installed the Maven plugin from Sonatype. All the jars in the pom.xml are downloaded fine, but I have no idea what I have to add to the pom.xml to include the gt-arrcsde.jar? (This is the jar where ArcSDEDataStoreFactory is defined) Is there somewhere a list where I can find valid values for groupID artefactID or version fields? Or is there a special editor for the pom.xml, now I use the textEditor of Eclipse Attached my pom.xml, thanks in advance for any help! Stefan -------- <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.geotools.demo</groupId> <artifactId>example</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>example</name> <url>http://maven.apache.org</url> <properties> <geotools.version>2.6.0</geotools.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-main</artifactId> <version>${geotools.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-shapefile</artifactId> <version>${geotools.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-epsg-hsql</artifactId> <version>${geotools.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-swing</artifactId> <version>${geotools.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-render</artifactId> <version>${geotools.version}</version> <!-- For this module we explicitly exclude some of its own --> <!-- dependencies from being downloaded because they are --> <!-- big and we don't need them --> <exclusions> <exclusion> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-transcoder</artifactId> </exclusion> </exclusions> </dependency> ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Geotools-gt2-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users
