You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by ff...@apache.org on 2012/05/22 22:41:12 UTC

git commit: Create a variable to store the Hibernate version number required since upgrade Gradle to 1.0-rc-3

Updated Branches:
  refs/heads/master 2afbddda3 -> 6e16b6eeb


Create a variable to store the Hibernate version number required since upgrade Gradle to 1.0-rc-3

Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/6e16b6ee
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/6e16b6ee
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/6e16b6ee

Branch: refs/heads/master
Commit: 6e16b6eebe1c4921d822c2e9e399e4658cf06941
Parents: 2afbddd
Author: françois facon <ff...@apache.org>
Authored: Tue May 22 22:16:28 2012 +0200
Committer: françois facon <ff...@apache.org>
Committed: Tue May 22 22:16:28 2012 +0200

----------------------------------------------------------------------
 build.gradle                         |    3 ++-
 tapestry-hibernate-core/build.gradle |    1 -
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/6e16b6ee/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 9b5585f..e3ede44 100644
--- a/build.gradle
+++ b/build.gradle
@@ -15,7 +15,8 @@ project.ext.versions = [
   testng: "5.14.9",
   easymock: "3.0",
   servletapi: "2.5",
-  spock: "0.6-groovy-1.8"
+  spock: "0.6-groovy-1.8",
+  hibernate: "4.1.2.Final"
 ]
 
 // Provided so that the CI server can override the normal version number for nightly builds.

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/6e16b6ee/tapestry-hibernate-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-hibernate-core/build.gradle b/tapestry-hibernate-core/build.gradle
index 5410d41..7c24a8e 100644
--- a/tapestry-hibernate-core/build.gradle
+++ b/tapestry-hibernate-core/build.gradle
@@ -1,6 +1,5 @@
 description = "Basic Hibernate services for Tapestry, useable outside of a Tapestry web application"
 
-hibernateVersion = '4.1.2.Final'
 
 dependencies {
   compile project(':tapestry-ioc')