This renaming more intuitively expresses the relationship between
subprojects and the JAR artifacts they produce.
Tracking history across these renames is possible, but it requires
use of the --follow flag to `git log`, for example
$ git log spring-aop/src/main/java/org/springframework/aop/Advisor.java
will show history up until the renaming event, where
$ git log --follow spring-aop/src/main/java/org/springframework/aop/Advisor.java
will show history for all changes to the file, before and after the
renaming.
See http://chrisbeams.com/git-diff-across-renamed-directories
23 lines
518 B
Groovy
23 lines
518 B
Groovy
rootProject.name = 'spring'
|
|
|
|
include 'spring-aop'
|
|
include 'spring-asm'
|
|
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-tx'
|
|
include 'spring-web'
|
|
include 'spring-webmvc'
|
|
include 'spring-webmvc-portlet'
|