Tiles 3 has modified packages and classes as well as additional
dependencies, notably "tiles-request-api", which is a request/response
abstraction independent of Servlet and JSP APIs.
In order to have both Tiles 2 and Tiles 3 integrations, the source for
the Tiles 3 integration is in a separate project spring-webmvc-tiles3.
The build process merges the compiled Tiles 3 integration classes into
the spring-webmvc module so in effect it contains both the Tiles 2 and
the Tiles 3 integrations.
This change originated as a pull request at spring-framework-issues:
https://github.com/SpringSource/spring-framework-issues/pull/30
And was additionally updated:
1f64be4aa5
Issue: SPR-8825
24 lines
554 B
Groovy
24 lines
554 B
Groovy
rootProject.name = 'spring'
|
|
|
|
include 'spring-aop'
|
|
include 'spring-aspects'
|
|
include 'spring-beans'
|
|
include 'spring-context'
|
|
include 'spring-context-support'
|
|
include 'spring-core'
|
|
include 'spring-expression'
|
|
include 'spring-instrument'
|
|
include 'spring-instrument-tomcat'
|
|
include 'spring-jdbc'
|
|
include 'spring-jms'
|
|
include 'spring-orm'
|
|
include 'spring-oxm'
|
|
include 'spring-struts'
|
|
include 'spring-test'
|
|
include 'spring-test-mvc'
|
|
include 'spring-tx'
|
|
include 'spring-web'
|
|
include 'spring-webmvc'
|
|
include 'spring-webmvc-portlet'
|
|
include 'spring-webmvc-tiles3'
|