| author | ymh <ymh.work@gmail.com> |
| Mon, 07 Sep 2015 16:34:30 +0200 | |
| changeset 495 | 444b80998255 |
| parent 493 | 6f2ab1a72f4a |
| child 501 | a509adc8ac10 |
| permissions | -rw-r--r-- |
| 311 | 1 |
allprojects { |
2 |
apply plugin: 'maven' |
|
3 |
||
4 |
group = 'org.iri_research.renkan' |
|
|
495
444b80998255
update client version + small correction in dojoConfig to load ckeditor jquery adapter
ymh <ymh.work@gmail.com>
parents:
493
diff
changeset
|
5 |
version = '0.12.1' |
| 314 | 6 |
|
7 |
||
| 311 | 8 |
gradle.projectsEvaluated { |
9 |
tasks.withType(JavaCompile) { |
|
10 |
options.compilerArgs << "-Xlint" |
|
11 |
} |
|
12 |
} |
|
13 |
} |
|
14 |
||
15 |
ext { |
|
16 |
organization = "IRI" |
|
17 |
||
18 |
junit_version = '4.11' |
|
19 |
slf4j_log4j12_version = '1.7.5' |
|
|
435
e529b633c339
Add shape management, correction on shape manip[ulation on the client, correct 404 error on space creation, increment version
ymh <ymh.work@gmail.com>
parents:
410
diff
changeset
|
20 |
spring_version = '3.2.9.RELEASE' |
| 311 | 21 |
javax_servlet_version = '3.0.1' |
22 |
java_inject_version = '1' |
|
23 |
commons_codec_version = '1.8' |
|
24 |
jackson_version = '2.2.3' |
|
25 |
joda_time_version = '2.3' |
|
26 |
spring_data_commons_version = '1.6.3.RELEASE' |
|
27 |
spring_data_jpa_version = '1.4.3.RELEASE' |
|
28 |
spring_data_mongodb_version = '1.3.3.RELEASE' |
|
29 |
spring_security_version = '3.2.0.RELEASE' |
|
30 |
jetty_version = '8.1.15.v20140411' |
|
31 |
persistence_api_version = '1.0.2' |
|
32 |
mongo_java_driver_version = '2.11.4' |
|
33 |
} |
|
34 |
||
35 |
subprojects { |
|
36 |
apply plugin: 'java' |
|
37 |
sourceCompatibility = 1.7 |
|
38 |
targetCompatibility = 1.7 |
|
39 |
||
| 314 | 40 |
|
| 311 | 41 |
repositories { |
42 |
mavenLocal() |
|
43 |
mavenCentral() |
|
| 314 | 44 |
|
| 311 | 45 |
maven { url "http://repo.maven.apache.org/maven2" } |
46 |
maven { url "http://maven.springframework.org/release" } |
|
47 |
maven { url "http://maven.springframework.org/milestone" } |
|
48 |
maven { url "http://repo.springsource.org/release" } |
|
49 |
maven { url "http://repo.springsource.org/libs-release" } |
|
50 |
} |
|
51 |
||
52 |
test { |
|
53 |
testLogging { |
|
54 |
events "passed", "skipped", "failed"//, "standardOut", "standardError" |
|
55 |
} |
|
56 |
} |
|
| 314 | 57 |
|
| 311 | 58 |
dependencies { |
59 |
testCompile group: 'junit', name: 'junit', version:junit_version |
|
60 |
runtime group: 'org.slf4j', name: 'slf4j-log4j12', version:slf4j_log4j12_version |
|
61 |
} |
|
| 314 | 62 |
|
| 311 | 63 |
} |