Do we have documentation on including apache-sis in other projects?

Example: Include this in pom.xml:

...
    <dependency>
      <groupId>org.apache.sis.storage</groupId>
      <artifactId>sis-storage</artifactId>
      <version>0.3</version>
    </dependency>
...

Ex: Including snapshots:

....
    <dependency>
      <groupId>org.apache.sis.storage</groupId>
      <artifactId>sis-shapefile</artifactId>
      <version>0.4-SNAPSHOT</version>
    </dependency>
   </dependencies>

   <repositories>
     <repository>
       <id>apache.snapshots</id>
       <name>Apache Snapshot Repository</name>
       <url>http://repository.apache.org/snapshots</url>
       <releases>
         <enabled>false</enabled>
       </releases>
     </repository>
   </repositories>
...


Thanks,
Travis

Reply via email to