You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by mb...@apache.org on 2015/10/31 02:30:38 UTC

[3/4] incubator-geode git commit: Initial sweep of aggregating all dependency versions into a single file

Initial sweep of aggregating all dependency versions into a single file


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/d24c6fd1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/d24c6fd1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/d24c6fd1

Branch: refs/heads/feature/GEODE-227
Commit: d24c6fd11c3482628f4a37314262b99cfe6c197c
Parents: b2dea99
Author: Mark Bretl <mb...@pivotal.io>
Authored: Thu Oct 22 17:36:54 2015 -0700
Committer: Mark Bretl <mb...@pivotal.io>
Committed: Tue Oct 27 16:35:12 2015 -0700

----------------------------------------------------------------------
 build.gradle                    |  46 ++++++------
 gemfire-assembly/build.gradle   |   2 +-
 gemfire-core/build.gradle       | 132 ++++++++++++++++++-----------------
 gemfire-rebalancer/build.gradle |  10 +--
 gemfire-web-api/build.gradle    |  46 ++++++------
 gemfire-web/build.gradle        |   8 +--
 gradle.properties               |  76 ++++++++++++++++++++
 7 files changed, 201 insertions(+), 119 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 7e477f3..2c009ef 100755
--- a/build.gradle
+++ b/build.gradle
@@ -275,30 +275,30 @@ subprojects {
   javadoc.classpath += configurations.provided
   
   dependencies {
-    compile 'org.springframework:spring-aop:3.2.12.RELEASE'
-    compile 'org.springframework:spring-beans:3.2.12.RELEASE'
-    compile 'org.springframework:spring-context:3.2.12.RELEASE'
-    compile 'org.springframework:spring-context-support:3.2.12.RELEASE'
-    compile 'org.springframework:spring-core:3.2.12.RELEASE'
-    compile 'org.springframework:spring-expression:3.2.12.RELEASE'
-    compile 'org.springframework:spring-web:3.2.12.RELEASE'
-    compile 'org.springframework:spring-webmvc:3.2.12.RELEASE'
-
-    testCompile 'com.github.stefanbirkner:system-rules:1.12.1'
-    testCompile 'com.jayway.awaitility:awaitility:1.6.5'
-    testCompile 'edu.umd.cs.mtc:multithreadedtc:1.01'
-    testCompile 'junit:junit:4.12'
-    testCompile 'org.assertj:assertj-core:2.1.0'
-    testCompile 'org.mockito:mockito-core:1.10.19'
-    testCompile 'org.hamcrest:hamcrest-all:1.3'
-    testCompile 'org.jmock:jmock:2.8.1'
-    testCompile 'org.jmock:jmock-junit4:2.8.1'
-    testCompile 'org.jmock:jmock-legacy:2.8.1'
-    testCompile 'pl.pragmatists:JUnitParams:1.0.4'
+    compile 'org.springframework:spring-aop:' + property("springframework.version")
+    compile 'org.springframework:spring-beans:' + property("springframework.version")
+    compile 'org.springframework:spring-context:' + property("springframework.version")
+    compile 'org.springframework:spring-context-support:' + property("springframework.version")
+    compile 'org.springframework:spring-core:' + property("springframework.version")
+    compile 'org.springframework:spring-expression:' + property("springframework.version")
+    compile 'org.springframework:spring-web:' + property("springframework.version")
+    compile 'org.springframework:spring-webmvc:' + property("springframework.version")
+
+    testCompile 'com.jayway.awaitility:awaitility:' + property("awaitility.version")
+    testCompile 'com.github.stefanbirkner:system-rules:' + property("system-rules.version")
+    testCompile 'edu.umd.cs.mtc:multithreadedtc:' + property("multithreadedtc.version")
+    testCompile 'junit:junit:' + property("junit.version")
+    testCompile 'org.assertj:assertj-core:' + property("assertj-core.version")
+    testCompile 'org.mockito:mockito-core:' + property("mockito-core.version")
+    testCompile 'org.hamcrest:hamcrest-all:' + property("hamcrest-all.version")
+    testCompile 'org.jmock:jmock:' + property("jmock.version")
+    testCompile 'org.jmock:jmock-junit4:' + property("jmock.version")
+    testCompile 'org.jmock:jmock-legacy:' + property("jmock.version")
+    testCompile 'pl.pragmatists:JUnitParams:' + property("JUnitParams.version")
     
-    testRuntime 'cglib:cglib:3.1'
-    testRuntime 'org.objenesis:objenesis:2.1'
-    testRuntime 'org.ow2.asm:asm:5.0.3'
+    testRuntime 'cglib:cglib:' + property("cglib.version")
+    testRuntime 'org.objenesis:objenesis:' + property("objenesis.version")
+    testRuntime 'org.ow2.asm:asm:' + property("asm.version")
   }
 
   test {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gemfire-assembly/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-assembly/build.gradle b/gemfire-assembly/build.gradle
index b351729..b511466 100755
--- a/gemfire-assembly/build.gradle
+++ b/gemfire-assembly/build.gradle
@@ -3,7 +3,7 @@ buildscript {
         mavenCentral()
     }
     dependencies {
-        classpath group: 'org.hibernate.build.gradle', name: 'gradle-maven-publish-auth', version: '2.0.1'
+        classpath group: 'org.hibernate.build.gradle', name: 'gradle-maven-publish-auth', version: property("gradle-maven-publish-auth.version")
     }
 }
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gemfire-core/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-core/build.gradle b/gemfire-core/build.gradle
index 1c17474..aef9e57 100755
--- a/gemfire-core/build.gradle
+++ b/gemfire-core/build.gradle
@@ -11,77 +11,83 @@ configurations {
 }
 
 dependencies {
+  // Source Dependencies
+  // External 
   provided files("${System.getProperty('java.home')}/../lib/tools.jar")
-  compile 'antlr:antlr:2.7.7'
-  compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.0'
-  compile 'com.fasterxml.jackson.core:jackson-core:2.2.0'
-  compile 'com.fasterxml.jackson.core:jackson-databind:2.2.0'
-  compile 'com.google.code.findbugs:annotations:3.0.0'
-  compile 'commons-io:commons-io:2.3'
-  compile 'commons-logging:commons-logging:1.1.1'
-  compile 'commons-modeler:commons-modeler:2.0'
-  compile 'org.apache.lucene:lucene-analyzers-common:5.0.0'
-  compile 'org.apache.lucene:lucene-core:5.0.0'
-  compile 'org.apache.lucene:lucene-queries:5.0.0'
-  compile 'org.apache.lucene:lucene-queryparser:5.0.0'
-  compile 'it.unimi.dsi:fastutil:7.0.2'
-  compile 'javax.activation:activation:1.1.1'
-  compile 'javax.mail:javax.mail-api:1.4.5'
-  compile 'javax.resource:javax.resource-api:1.7'
-  compile 'javax.servlet:javax.servlet-api:3.1.0'
-  compile 'javax.transaction:javax.transaction-api:1.2'
-  compile 'mx4j:mx4j:3.0.1'
-  compile 'mx4j:mx4j-remote:3.0.1'
-  compile 'mx4j:mx4j-tools:3.0.1'
-  compile 'net.java.dev.jna:jna:4.0.0'
-  compile 'net.sourceforge.jline:jline:1.0.S2-B'
-  compile 'org.eclipse.jetty:jetty-http:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-io:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-security:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-server:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-servlet:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-util:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-webapp:9.2.3.v20140905'
-  compile 'org.eclipse.jetty:jetty-xml:9.2.3.v20140905'
-  compile 'org.fusesource.jansi:jansi:1.8'
-  compile 'org.apache.logging.log4j:log4j-api:2.1'
-  compile 'org.apache.logging.log4j:log4j-core:2.1'
-  runtime 'org.apache.logging.log4j:log4j-slf4j-impl:2.1'
-  runtime 'org.apache.logging.log4j:log4j-jcl:2.1'
-  runtime 'org.apache.logging.log4j:log4j-jul:2.1'
-  compile 'org.slf4j:slf4j-api:1.7.7'
-  compile 'org.springframework.data:spring-data-commons:1.9.1.RELEASE'
-  provided 'org.springframework.data:spring-data-gemfire:1.5.1.RELEASE'
-  compile 'org.springframework:spring-tx:3.2.12.RELEASE'
-  compile 'org.springframework.shell:spring-shell:1.0.0.RELEASE'
-  compile 'org.xerial.snappy:snappy-java:1.1.1.6'
-  provided 'org.apache.hadoop:hadoop-common:2.4.1'
-  provided 'org.apache.hadoop:hadoop-annotations:2.4.1'
-  provided 'org.apache.hadoop:hadoop-hdfs:2.4.1'
-  provided 'org.apache.hadoop:hadoop-mapreduce-client-core:2.4.1'
-  compile 'org.apache.hbase:hbase:0.94.27'
-  provided 'commons-lang:commons-lang:2.5'
-  provided 'com.google.guava:guava:11.0.2'
-  compile 'io.netty:netty-all:4.0.4.Final'
-
-  testRuntime 'org.apache.hadoop:hadoop-auth:2.4.1'
-  testRuntime 'commons-collections:commons-collections:3.2.1'
-  testRuntime 'commons-configuration:commons-configuration:1.6'
-  testRuntime 'commons-io:commons-io:2.1'
-  testRuntime 'log4j:log4j:1.2.17'
-  
+  compile 'antlr:antlr:' + property("antlr.version")
+  compile 'com.fasterxml.jackson.core:jackson-annotations:' + property("jackson.version")
+  compile 'com.fasterxml.jackson.core:jackson-core:' + property("jackson.version")
+  compile 'com.fasterxml.jackson.core:jackson-databind:' + property("jackson.version")
+  compile 'com.google.code.findbugs:annotations:' + property("annotations.version")
+  provided 'com.google.guava:guava:' + property("guava.version")
+  compile 'commons-io:commons-io:' + property("commons-io.version")
+  provided 'commons-lang:commons-lang:' + property("commons-lang.version")
+  compile 'commons-logging:commons-logging:' + property("commons-logging.version")
+  compile 'commons-modeler:commons-modeler:' + property("commons-modeler.version")
+  compile 'io.netty:netty-all:' + property("netty-all.version")
+  compile 'it.unimi.dsi:fastutil:' + property("fastutil.version")
+  compile 'javax.activation:activation:' + property("activation.version")
+  compile 'javax.mail:javax.mail-api:' + property("javax.mail-api.version")
+  compile 'javax.resource:javax.resource-api:' + property("javax.resource-api.version")
+  compile 'javax.servlet:javax.servlet-api:' + property("javax.servlet-api.version")
+  compile 'javax.transaction:javax.transaction-api:' + property("javax.transaction-api.version")
+  compile 'mx4j:mx4j:' + property("mx4j.version")
+  compile 'mx4j:mx4j-remote:' + property("mx4j.version")
+  compile 'mx4j:mx4j-tools:' + property("mx4j.version")
+  compile 'net.java.dev.jna:jna:' + property("jna.version")
+  compile 'net.sourceforge.jline:jline:' + property("jline.version")
+  provided 'org.apache.hadoop:hadoop-common:' + property("hadoop.version")
+  provided 'org.apache.hadoop:hadoop-annotations:' + property("hadoop.version")
+  provided 'org.apache.hadoop:hadoop-hdfs:' + property("hadoop.version")
+  provided 'org.apache.hadoop:hadoop-mapreduce-client-core:' + property("hadoop.version")
+  compile 'org.apache.hbase:hbase:' + property("hbase.version")
+  compile 'org.apache.logging.log4j:log4j-api:' + property("log4j.version")
+  compile 'org.apache.logging.log4j:log4j-core:' + property("log4j.version")
+  runtime 'org.apache.logging.log4j:log4j-slf4j-impl:' + property("log4j.version")
+  runtime 'org.apache.logging.log4j:log4j-jcl:' + property("log4j.version")
+  runtime 'org.apache.logging.log4j:log4j-jul:' + property("log4j.version")
+  compile 'org.apache.lucene:lucene-analyzers-common:' + property("lucene.version")
+  compile 'org.apache.lucene:lucene-core:' + property("lucene.version")
+  compile 'org.apache.lucene:lucene-queries:' + property("lucene.version")
+  compile 'org.apache.lucene:lucene-queryparser:' + property("lucene.version")
+  compile 'org.eclipse.jetty:jetty-http:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-io:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-security:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-server:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-servlet:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-util:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-webapp:' + property("jetty.version")
+  compile 'org.eclipse.jetty:jetty-xml:' + property("jetty.version")
+  compile 'org.fusesource.jansi:jansi:' + property("jansi.version")
+  compile 'org.slf4j:slf4j-api:' + property("slf4j-api.version")
+  compile 'org.springframework.data:spring-data-commons:' + property("spring-data-commons.version")
+  provided 'org.springframework.data:spring-data-gemfire:' + property("spring-data-gemfire.version")
+  compile 'org.springframework:spring-tx:' + property("springframework.version")
+  compile 'org.springframework.shell:spring-shell:' + property("spring-shell.version")
+  compile 'org.xerial.snappy:snappy-java:' + property("snappy-java.version")
+  compile 'org.apache.hbase:hbase:' + property("hbase.version")
+
+  // Internal
   compile project(':gemfire-jgroups')
   compile project(':gemfire-joptsimple')
   compile project(':gemfire-json')
-  
-  testCompile 'org.apache.bcel:bcel:5.2'
-  testRuntime 'org.apache.derby:derby:10.2.2.0'
-  testCompile 'net.spy:spymemcached:2.9.0'
-  testCompile 'redis.clients:jedis:2.7.2'
 
   jcaCompile sourceSets.main.output
 
   provided project(path: ':gemfire-junit', configuration: 'testOutput')
+
+  // Test Dependencies
+  // External
+  testCompile 'org.apache.bcel:bcel:' + property("bcel.version")
+  testRuntime 'org.apache.derby:derby:' + property("derby.version")
+  testRuntime 'org.apache.hadoop:hadoop-auth:' + property("hadoop.version")
+  testRuntime 'commons-collections:commons-collections:' + property("commons-collections.version")
+  testRuntime 'commons-configuration:commons-configuration:' + property("commons-configuration.version")
+  testRuntime 'commons-io:commons-io:' + property("commons-io.version")
+  //testRuntime 'log4j:log4j:' + property("log4j.version")
+  testCompile 'net.spy:spymemcached:' + property("spymemcached.version")
+  testCompile 'redis.clients:jedis:' + property("jedis.version")
+
 }
 
 def generatedResources = "$buildDir/generated-resources/main"

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gemfire-rebalancer/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-rebalancer/build.gradle b/gemfire-rebalancer/build.gradle
index d87dd58..8ed0b86 100644
--- a/gemfire-rebalancer/build.gradle
+++ b/gemfire-rebalancer/build.gradle
@@ -2,11 +2,11 @@ dependencies {
     provided project(':gemfire-core')
     provided project(path: ':gemfire-junit', configuration: 'testOutput')
 
-    compile 'org.quartz-scheduler:quartz:2.2.1'
+    compile 'org.quartz-scheduler:quartz:' + property("quartz.version")
 
     // the following test dependencies are needed for mocking cache instance
-    testRuntime 'org.apache.hadoop:hadoop-common:2.4.1'
-    testRuntime 'org.apache.hadoop:hadoop-hdfs:2.4.1'
-    testRuntime 'com.google.guava:guava:11.0.2'
-    testRuntime 'commons-collections:commons-collections:3.2.1'
+    testRuntime 'org.apache.hadoop:hadoop-common:' + property("hadoop.version")
+    testRuntime 'org.apache.hadoop:hadoop-hdfs:' + property("hadoop.version")
+    testRuntime 'com.google.guava:guava:' + property("guava.version")
+    testRuntime 'commons-collections:commons-collections:' + property("commons-collections.version")
 }

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gemfire-web-api/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-web-api/build.gradle b/gemfire-web-api/build.gradle
index 81eec6d..a5a9fdc 100755
--- a/gemfire-web-api/build.gradle
+++ b/gemfire-web-api/build.gradle
@@ -1,30 +1,30 @@
 apply plugin: 'war'
 
 dependencies {
-  compile 'commons-lang:commons-lang:2.4'
-  compile 'commons-fileupload:commons-fileupload:1.3.1'
-  compile 'com.fasterxml:classmate:0.9.0'
-  compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.0'
-  compile 'com.fasterxml.jackson.core:jackson-core:2.2.0'
-  compile 'com.fasterxml.jackson.core:jackson-databind:2.2.0'
-  compile 'com.fasterxml.jackson.module:jackson-module-scala_2.10:2.1.5'
-  compile 'com.google.guava:guava:15.0'
-  compile 'com.mangofactory:swagger-springmvc:0.8.2'
-  compile 'org.json4s:json4s-ast_2.10:3.2.4'
-  compile 'org.json4s:json4s-ext_2.10:3.2.4'
-  compile 'org.json4s:json4s-core_2.10:3.2.4'
-  compile 'org.json4s:json4s-jackson_2.10:3.2.4'
-  compile 'org.json4s:json4s-native_2.10:3.2.4'
-  compile 'org.scala-lang:scala-reflect:2.10.0'
-  compile 'org.scala-lang:scala-library:2.10.0'
-  compile 'org.springframework.hateoas:spring-hateoas:0.16.0.RELEASE'
-  compile 'org.springframework:spring-aspects:3.2.12.RELEASE'
-  compile 'org.springframework:spring-oxm:3.2.12.RELEASE'
-  compile 'com.thoughtworks.paranamer:paranamer:2.3'
-  compile 'com.wordnik:swagger-annotations:1.3.2'
-  compile 'com.wordnik:swagger-core_2.10:1.3.2'
+  compile 'commons-lang:commons-lang:' + property("commons-lang.version")
+  compile 'commons-fileupload:commons-fileupload:' + property("commons-fileupload.version")
+  compile 'com.fasterxml:classmate:' + property("classmate.version")
+  compile 'com.fasterxml.jackson.core:jackson-annotations:' + property("jackson.version")
+  compile 'com.fasterxml.jackson.core:jackson-core:' + property("jackson.version")
+  compile 'com.fasterxml.jackson.core:jackson-databind:' + property("jackson.version")
+  compile 'com.fasterxml.jackson.module:jackson-module-scala_2.10:' + property("jackson-module-scala_2.10.version")
+  compile 'com.google.guava:guava:' + property("guava.version")
+  compile 'com.mangofactory:swagger-springmvc:' + property("swagger-springmvc.version")
+  compile 'org.json4s:json4s-ast_2.10:' + property("json4s.version")
+  compile 'org.json4s:json4s-ext_2.10:' + property("json4s.version")
+  compile 'org.json4s:json4s-core_2.10:' + property("json4s.version")
+  compile 'org.json4s:json4s-jackson_2.10:' + property("json4s.version")
+  compile 'org.json4s:json4s-native_2.10:' + property("json4s.version")
+  compile 'org.scala-lang:scala-library:' + property("scala.version")
+  compile 'org.scala-lang:scala-reflect:' + property("scala.version")
+  compile 'org.springframework.hateoas:spring-hateoas:' + property("spring-hateos.version")
+  compile 'org.springframework:spring-aspects:' + property("springframework.version")
+  compile 'org.springframework:spring-oxm:' + property("springframework.version")
+  compile 'com.thoughtworks.paranamer:paranamer:' + property("paranamer.version")
+  compile 'com.wordnik:swagger-annotations:' + property("swagger.version")
+  compile 'com.wordnik:swagger-core_2.10:' + property("swagger.version")
 
-  provided 'javax.servlet:javax.servlet-api:3.1.0'
+  provided 'javax.servlet:javax.servlet-api:' + property("javax.servlet-api.version")
   provided project(':gemfire-core')
 }
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gemfire-web/build.gradle
----------------------------------------------------------------------
diff --git a/gemfire-web/build.gradle b/gemfire-web/build.gradle
index b9629d3..86c352e 100755
--- a/gemfire-web/build.gradle
+++ b/gemfire-web/build.gradle
@@ -1,11 +1,11 @@
 apply plugin: 'war'
 
 dependencies {
-  runtime 'org.springframework:spring-aspects:3.2.12.RELEASE'
-  runtime 'org.springframework:spring-oxm:3.2.12.RELEASE'
-  runtime 'commons-fileupload:commons-fileupload:1.3.1'
+  runtime 'org.springframework:spring-aspects:' + property("springframework.version")
+  runtime 'org.springframework:spring-oxm:' + property("springframework.version")
+  runtime 'commons-fileupload:commons-fileupload:' + property("commons-fileupload.version")
   
-  provided 'javax.servlet:javax.servlet-api:3.1.0'
+  provided 'javax.servlet:javax.servlet-api:' + property("javax.servlet-api.version")
   
   // have to use output since we exclude the dependent classes from jar :(
   provided project(path: ':gemfire-core', configuration: 'classesOutput')

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d24c6fd1/gradle.properties
----------------------------------------------------------------------
diff --git a/gradle.properties b/gradle.properties
index 03a07d8..d7f229e 100755
--- a/gradle.properties
+++ b/gradle.properties
@@ -7,3 +7,79 @@ org.gradle.jvmargs = -Xmx2048m
 # Set this on the command line with -P or in ~/.gradle/gradle.properties
 # to change the buildDir location.  Use an absolute path.
 buildRoot=
+
+# Buildscript Dependencies
+gradle-maven-publish-auth.version = 2.0.1
+
+# Dependency versions
+activation.version = 1.1.1
+annotations.version = 3.0.0
+antlr.version = 2.7.7
+asm.version = 5.0.3
+assertj-core.version = 2.1.0
+bcel.version = 5.2
+cglib.version = 3.1
+#cglib-nodep.version = 2.1.3
+classmate.version = 0.9.0
+commons-collections.version = 3.2.1
+commons-configuration.version = 1.6
+commons-fileupload.version = 1.3.1
+commons-io.version = 2.3
+commons-lang.version = 2.5
+commons-logging.version = 1.1.1
+commons-modeler.version = 2.0
+derby.version = 10.2.2.0
+fastutil.version = 7.0.2
+guava.version = 11.0.2
+hadoop.version = 2.4.1
+hamcrest-all.version = 1.3
+#hamcrest-core.version = 1.1
+#hamcrest-library.version = 1.1
+hbase.version = 0.94.27
+jackson.version = 2.2.0
+#jackson-annotations.version = 2.2.0
+#jackson-core.version = 2.2.0
+#jackson-databind.version = 2.2.0
+jackson-module-scala_2.10.version = 2.1.5
+jansi.version = 1.8
+javax.mail-api.version = 1.4.5
+javax.resource-api.version = 1.7
+javax.servlet-api.version = 3.1.0
+javax.transaction-api.version = 1.2
+jedis.version = 2.7.2
+jetty.version = 9.2.3.v20140905
+jline.version = 1.0.S2-B
+jmock.version = 2.8.1
+jmock-junit4.version = 2.8.1
+jmock-legacy.version = 2.8.1
+jna.version = 4.0.0
+json4s.version = 3.2.4
+junit.version = 4.12
+JUnitParams.version = 1.0.4
+log4j.version = 2.1
+lucene.version = 5.0.0
+#lucene-analyzers-common.version = 5.0.0
+#lucene-core.version = 5.0.0
+#lucene-queries.version = 5.0.0
+#lucene-queryparser.version = 5.0.0
+mockito-core.version = 1.10.19
+multithreadedtc.version = 1.01
+mx4j.version = 3.0.1
+mx4j-remote.version = 3.0.1
+mx4j-tools.version = 3.0.1
+netty-all.version = 4.0.4.Final
+objenesis.version = 2.1
+paranamer.version = 2.3
+quartz.version = 2.2.1
+scala.version = 2.10.0
+slf4j-api.version = 1.7.7
+snappy-java.version = 1.1.1.6
+spring-data-commons.version = 1.9.1.RELEASE
+spring-data-gemfire.version = 1.5.1.RELEASE
+spring-hateos.version = 0.16.0.RELEASE
+spring-shell.version = 1.0.0.RELEASE
+springframework.version = 3.2.12.RELEASE
+spymemcached.version = 2.9.0
+swagger.version = 1.3.2
+swagger-springmvc.version = 0.8.2
+system-rules.version = 1.12.1