The goal of Spring Scala is to make it easier to use the Spring framework in Scala.
Currently, the two main areas of focus are:
- Wiring up Scala classes as Spring Beans, both in traditional XML as well as Scala
- Provide Scala-friendly wrappers for the Spring templates
For more information, please refer to the documentation on the wiki
Milestones of Spring Scala are available for download at our milestone repository, http://repo.springsource.org/milestone.
For Maven users:
<repository>
<id>repository.springsource.milestone</id>
<name>SpringSource Milestone Repository</name>
<url>http://repo.springsource.org/milestone</url>
</repository>
...
<dependency>
<groupId>org.springframework.scala</groupId>
<artifactId>spring-scala</artifactId>
<version>1.0.0.M2</version>
</dependency>
Nightly snapshots of Spring Scala are available for download at our snapshot repository, http://repo.springsource.org/snapshot.
For Maven users:
<repository>
<id>repository.springsource.snapshot</id>
<name>SpringSource Snapshot Repository</name>
<url>http://repo.springsource.org/snapshot</url>
</repository>
...
<dependency>
<groupId>org.springframework.scala</groupId>
<artifactId>spring-scala</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
Spring Scala uses a Gradle-based build system.
In the instructions below, ./gradlew
is invoked from the root of the source tree and serves as a cross-platform, self-contained bootstrap mechanism for the build.
The only prerequisites are Git and JDK 1.7+.
git clone git://github.com/SpringSource/spring-scala.git
./gradlew build
./gradlew install
... and discover more commands with ./gradlew tasks
. See also the Gradle build and release FAQ.
You can find out more information about this project on the wiki
Spring Scala uses JIRA for issue tracking purposes
Spring Scala is Apache 2.0 licensed.