Skip to content
Ralph Schaer edited this page Jul 5, 2016 · 41 revisions

Release

Adding ExtDirectSpring to a Maven project needs the following dependency configuration. The artifact is available from the Central Maven Repository.

  <dependency>
    <groupId>ch.ralscha</groupId>
    <artifactId>extdirectspring</artifactId>
    <version>1.7.0</version>
  </dependency>

Snapshot

Snapshots are available from the Sonatype repository.

  <repositories>
    ...    
    <repository>
      <id>sonatype</id>
      <name>sonatype</name>
      <url>https://oss.sonatype.org/content/groups/public</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>      
    </repository>   
    ...
  </repositories>

  <dependency>
    <groupId>ch.ralscha</groupId>
    <artifactId>extdirectspring</artifactId>
    <version>1.7.1-SNAPSHOT</version>
  </dependency>

Additional libraries

For file uploads these two libraries are necessary if the project is running on a Servlet 2.5 server:

  <dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.3.2</version>
  </dependency>  

  <dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.5</version>
  </dependency>

On a Servlet 3.0 server the two libraries are not needed if the program uses the StandardServletMultipartResolver class.

Clone this wiki locally