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
A first milestone of Spring Scala is available for download at our milestone repository, http://repo.springsource.org/libs-milestone.
For Maven users:
<distributionManagement>
<repository>
<id>milestone.repo.springsource.org</id>
<name>repo.springsource.org-milestone</name>
<url>https://repo.springsource.org/libs-milestone</url>
</repository>
</distributionManagement>
<dependency>
<groupId>org.springframework.scala</groupId>
<artifactId>spring-scala</artifactId>
<version>1.0.0.M1</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.