|
311
|
1 |
|
|
|
2 |
description = 'renkan-core' |
|
|
3 |
|
|
|
4 |
repositories { |
|
|
5 |
mavenCentral() |
|
|
6 |
} |
|
|
7 |
|
|
|
8 |
ext { |
|
|
9 |
commons_collections_version = '4.0' |
|
|
10 |
uuid_generator_version = '3.1.3' |
|
|
11 |
} |
|
|
12 |
|
|
|
13 |
dependencies { |
|
|
14 |
compile group: 'javax.inject', name: 'javax.inject', version:java_inject_version |
|
|
15 |
compile group: 'commons-codec', name: 'commons-codec', version:commons_codec_version |
|
|
16 |
compile group: 'org.apache.commons', name: 'commons-collections4', version:commons_collections_version |
|
|
17 |
compile group: 'com.fasterxml.uuid', name: 'java-uuid-generator', version:uuid_generator_version |
|
|
18 |
compile group: 'joda-time', name: 'joda-time', version:joda_time_version |
|
|
19 |
compile group: 'org.springframework', name: 'spring-core', version:spring_version |
|
|
20 |
compile group: 'org.springframework', name: 'spring-beans', version:spring_version |
|
|
21 |
compile group: 'org.springframework', name: 'spring-jdbc', version:spring_version |
|
|
22 |
compile group: 'org.springframework', name: 'spring-context', version:spring_version |
|
|
23 |
compile group: 'org.springframework.data', name: 'spring-data-commons', version:spring_data_commons_version |
|
|
24 |
compile group: 'org.springframework.data', name: 'spring-data-jpa', version:spring_data_jpa_version |
|
|
25 |
compile group: 'org.springframework.data', name: 'spring-data-mongodb', version:spring_data_mongodb_version |
|
|
26 |
compile group: 'org.springframework.security', name: 'spring-security-core', version:spring_security_version |
|
|
27 |
compile group: 'javax.persistence', name: 'persistence-api', version:persistence_api_version |
|
|
28 |
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version:jackson_version |
|
|
29 |
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:jackson_version |
|
|
30 |
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version:jackson_version |
|
|
31 |
compile group: 'com.fasterxml.jackson.jaxrs', name: 'jackson-jaxrs-json-provider', version:jackson_version |
|
|
32 |
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version:jackson_version |
|
|
33 |
compile group: 'org.mongodb', name: 'mongo-java-driver', version:mongo_java_driver_version |
|
|
34 |
testCompile group: 'org.springframework', name: 'spring-test', version:spring_version |
|
|
35 |
testRuntime group: 'org.slf4j', name: 'slf4j-log4j12', version:slf4j_log4j12_version |
|
|
36 |
} |