-
Notifications
You must be signed in to change notification settings - Fork 64
Setup Maven
İlhan Subaşı edited this page Nov 26, 2019
·
41 revisions
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.8.0</version>
</dependency>
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.8.1-SNAPSHOT</version>
</dependency>
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.
- Introduction
- Changelog 1.7.x
- Setup Maven
- Configuration
- Server Methods
- Model Generator
- Model Generator APT
- Development
- Links