@@ -26,60 +26,57 @@ dependencyManagement {
2626}
2727
2828dependencies {
29- compile project(" :ngrinder-core" )
30-
31- compile (group : " org.springframework.boot" , name : " spring-boot-starter-web" )
32- compile (group : " org.springframework.boot" , name : " spring-boot-starter-freemarker" )
33- compile (group : " org.springframework.boot" , name : " spring-boot-starter-security" )
34- compile (group : " org.springframework.boot" , name : " spring-boot-starter-data-jpa" )
35- compile (group : " org.springframework.boot" , name : " spring-boot-starter-cache" )
36- compile (group : " org.springframework.boot" , name : " spring-boot-starter-webflux" )
37-
38- compile (group : " com.github.jknack" , name : " handlebars-springmvc" , version : handlebars_version)
39- compile (group : " com.github.jknack" , name : " handlebars-helpers" , version : handlebars_version)
40- compile (group : " rome" , name : " rome" , version : " 1.0" )
41- compile (group : " com.ibm.icu" , name : " icu4j" , version : " 4.6" )
42- compile (group : " sonia.svnkit" , name : " svnkit-dav" , version : svnkit_version)
43- compile (group : " sonia.svnkit" , name : " svnkit" , version : svnkit_version) {
29+ implementation project(" :ngrinder-core" )
30+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-web" )
31+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-freemarker" )
32+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-security" )
33+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-data-jpa" )
34+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-cache" )
35+ implementation (group : " org.springframework.boot" , name : " spring-boot-starter-webflux" )
36+
37+ implementation (group : " com.github.jknack" , name : " handlebars-springmvc" , version : handlebars_version)
38+ implementation (group : " com.github.jknack" , name : " handlebars-helpers" , version : handlebars_version)
39+ implementation (group : " rome" , name : " rome" , version : " 1.0" )
40+ implementation (group : " com.ibm.icu" , name : " icu4j" , version : " 4.6" )
41+ implementation (group : " sonia.svnkit" , name : " svnkit-dav" , version : svnkit_version)
42+ implementation (group : " sonia.svnkit" , name : " svnkit" , version : svnkit_version) {
4443 exclude (module : " platform" )
4544 }
46- compile (group : " javax.servlet.jsp" , name : " jsp-api" , version : " 2.1" )
47- compile (group : " com.google.guava" , name : " guava" , version : " 20.0" )
48- compile (group : " org.springframework.security" , name : " spring-security-taglibs" , version : spring_security_version)
49- compile (group : " org.liquibase" , name : " liquibase-core" , version : " 3.5.3" )
50- compile (group : " org.hibernate" , name : " hibernate-jcache" , version : hibernate_version)
51- compile (group : " com.github.ben-manes.caffeine" , name : " caffeine" , version : " 2.6.2" )
52- compile (group : " com.github.ben-manes.caffeine" , name : " jcache" , version : " 2.6.2" )
53- compile (group : " mysql" , name : " mysql-connector-java" , version : " 8.0.13" )
54- compile (group : " commons-httpclient" , name : " commons-httpclient" , version : " 3.1" )
55- compile (group : " com.h2database" , name : " h2" , version : " 1.4.197" )
56- compile (group : " commons-fileupload" , name : " commons-fileupload" , version : " 1.3.1" )
57- compile (group : " commons-dbcp" , name : " commons-dbcp" , version : " 1.4" )
58- compile (group : " com.fasterxml.jackson.core" , name : " jackson-annotations" , version : jackson_version)
59- compile (group : " com.fasterxml.jackson.core" , name : " jackson-databind" , version : jackson_version)
60- compile (group : " jaxen" , name : " jaxen" , version : " 1.1.4" )
61- compile (group : " com.beust" , name : " jcommander" , version : " 1.32" )
62- compile (group : " org.pf4j" , name : " pf4j" , version : " 3.0.1" )
63- compile (group : " org.yaml" , name : " snakeyaml" , version : " 1.25" )
64- compile (group : " commons-collections" , name : " commons-collections" , version : " 3.2.1" )
65- compile (group : " org.reflections" , name : " reflections" , version : " 0.9.9" )
66- compile (group : " com.hazelcast" , name : " hazelcast" , version : hazelcast_version)
67- compile (group : " com.hazelcast" , name : " hazelcast-spring" , version : hazelcast_version)
68- compile (group : " org.kohsuke" , name : " github-api" , version : " 1.99" )
69- compile (group : " commons-validator" , name : " commons-validator" , version : " 1.6" )
70- compile (group : " org.codehaus.groovy" , name : " groovy-jsr223" , version : groovy_version)
71- compile (group : " com.unboundid" , name : " unboundid-ldapsdk" , version : " 5.1.1" )
72-
73- compileOnly (group : " org.projectlombok" , name : " lombok" , version : " 1.18.8 " )
74- annotationProcessor (group : " org.projectlombok" , name : " lombok" , version : " 1.18.8 " )
45+ implementation (group : " javax.servlet.jsp" , name : " jsp-api" , version : " 2.1" )
46+ implementation (group : " com.google.guava" , name : " guava" , version : " 20.0" )
47+ implementation (group : " org.springframework.security" , name : " spring-security-taglibs" , version : spring_security_version)
48+ implementation (group : " org.liquibase" , name : " liquibase-core" , version : " 3.5.3" )
49+ implementation (group : " org.hibernate" , name : " hibernate-jcache" , version : hibernate_version)
50+ implementation (group : " com.github.ben-manes.caffeine" , name : " caffeine" , version : " 2.6.2" )
51+ implementation (group : " com.github.ben-manes.caffeine" , name : " jcache" , version : " 2.6.2" )
52+ implementation (group : " mysql" , name : " mysql-connector-java" , version : " 8.0.13" )
53+ implementation (group : " commons-httpclient" , name : " commons-httpclient" , version : " 3.1" )
54+ implementation (group : " com.h2database" , name : " h2" , version : " 1.4.197" )
55+ implementation (group : " commons-fileupload" , name : " commons-fileupload" , version : " 1.3.1" )
56+ implementation (group : " commons-dbcp" , name : " commons-dbcp" , version : " 1.4" )
57+ implementation (group : " com.fasterxml.jackson.core" , name : " jackson-annotations" , version : jackson_version)
58+ implementation (group : " com.fasterxml.jackson.core" , name : " jackson-databind" , version : jackson_version)
59+ implementation (group : " jaxen" , name : " jaxen" , version : " 1.1.4" )
60+ implementation (group : " com.beust" , name : " jcommander" , version : " 1.32" )
61+ implementation (group : " org.pf4j" , name : " pf4j" , version : " 3.0.1" )
62+ implementation (group : " org.yaml" , name : " snakeyaml" , version : " 1.25" )
63+ implementation (group : " commons-collections" , name : " commons-collections" , version : " 3.2.1" )
64+ implementation (group : " org.reflections" , name : " reflections" , version : " 0.9.9" )
65+ implementation (group : " com.hazelcast" , name : " hazelcast" , version : hazelcast_version)
66+ implementation (group : " com.hazelcast" , name : " hazelcast-spring" , version : hazelcast_version)
67+ implementation (group : " org.kohsuke" , name : " github-api" , version : " 1.99" )
68+ implementation (group : " commons-validator" , name : " commons-validator" , version : " 1.6" )
69+ implementation (group : " org.codehaus.groovy" , name : " groovy-jsr223" , version : groovy_version)
70+ implementation (group : " com.unboundid" , name : " unboundid-ldapsdk" , version : " 5.1.1" )
71+
72+ compileOnly (group : " org.projectlombok" , name : " lombok" , version : lombok_version )
73+ annotationProcessor (group : " org.projectlombok" , name : " lombok" , version : lombok_version )
7574
7675 providedRuntime (group : " org.springframework.boot" , name : " spring-boot-starter-tomcat" , version : spring_boot_version)
7776
78- testCompile (group : " junit" , name : " junit" , version : junit_version)
79- testCompile (group : " org.easytesting" , name : " fest-assert" , version : " 1.4" )
80- testCompile (group : " org.springframework.boot" , name : " spring-boot-starter-test" , version : spring_boot_version)
81- testCompileOnly (group : " org.projectlombok" , name : " lombok" , version : " 1.18.8" )
82- testAnnotationProcessor (group : " org.projectlombok" , name : " lombok" , version : " 1.18.8" )
77+ testImplementation (group : " junit" , name : " junit" , version : junit_version)
78+ testImplementation (group : " org.easytesting" , name : " fest-assert" , version : " 1.4" )
79+ testImplementation (group : " org.springframework.boot" , name : " spring-boot-starter-test" , version : spring_boot_version)
8380}
8481
8582
@@ -109,7 +106,7 @@ processResources {
109106}
110107
111108test {
112- jvmArgs " -Xms600m" , " -Xmx1024m" , " -XX:MaxPermSize=200m "
109+ jvmArgs " -Xms600m" , " -Xmx1024m"
113110}
114111
115112tasks. bootWar. dependsOn convert_cr_lf
0 commit comments