Spring framework 라이브러리 build.gradle

Spring 2017. 12. 27. 11:25 Posted by 알기에링
1
2
3
4
5
6
7
8
9
// spring framework 라이브러리 
    compile group: "org.springframework", name: "spring-core"     , version: "4.1.9.RELEASE"    
    compile group: "org.springframework", name: "spring-beans"    , version: "4.1.9.RELEASE"
    compile group: "org.springframework", name: "spring-context"  , version: "4.1.9.RELEASE"
    compile group: "org.springframework", name: "spring-webmvc"   , version: "4.1.9.RELEASE"
    compile group: "org.springframework", name: "spring-jdbc"     , version: "4.1.9.RELEASE"
    compile group: "org.springframework", name: "spring-tx"       , version: "4.1.9.RELEASE"
    compile group: "org.springframework", name: "spring-aop"      , version: "4.1.9.RELEASE"
    runtime group: "org.springframework", name: "spring-aspects"  , version: "4.1.9.RELEASE"
cs