You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.springframework'
|
|
version '5.2.9.BUILD-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":spring-beans"))
|
|
compile(project(":spring-core"))
|
|
compile(project(":spring-context"))
|
|
compile(project(":spring-webmvc"))
|
|
compile(project(":spring-jdbc"))
|
|
compile(project(":spring-orm"))
|
|
compile(project(":spring-tx"))
|
|
compile(project(":spring-web"))
|
|
compile(project(":spring-context-indexer"))
|
|
compile(project(":spring-context-support"))
|
|
compile(project(":spring-expression"))
|
|
compile(project(":spring-instrument"))
|
|
compile(project(":spring-jcl"))
|
|
compile(project(":spring-jms"))
|
|
compile(project(":spring-messaging"))
|
|
compile(project(":spring-oxm"))
|
|
compile(project(":spring-test"))
|
|
compile(project(":spring-webflux"))
|
|
compile(project(":spring-websocket"))
|
|
// compile(project(":spring-aspects"))
|
|
// compile('org.springframework:spring-aspectj:5.2.9')
|
|
compile("org.aspectj:aspectjweaver:1.9.6")
|
|
compile(project(":spring-aop"))
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compile("com.alibaba:druid:1.2.4")
|
|
compile("mysql:mysql-connector-java:5.1.48")
|
|
}
|