You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2022/04/04 21:43:59 UTC

[tapestry-5] branch master updated: TAP5-2717: fixing tapestry-hibernate dependencies

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new 1edbf9429 TAP5-2717: fixing tapestry-hibernate dependencies
1edbf9429 is described below

commit 1edbf942972b749afac2d0975a990b7c765614d1
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Mon Apr 4 18:43:47 2022 -0300

    TAP5-2717: fixing tapestry-hibernate dependencies
    
    on tapestry-hibernate-core and tapestry-core
---
 tapestry-hibernate/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tapestry-hibernate/build.gradle b/tapestry-hibernate/build.gradle
index 06286ba9e..b607b4bb6 100644
--- a/tapestry-hibernate/build.gradle
+++ b/tapestry-hibernate/build.gradle
@@ -1,8 +1,8 @@
 description = "Provides support for simple CRUD applications built on top of Tapestry and Hibernate"
 
 dependencies {
-  implementation project(':tapestry-core')
-  implementation project(':tapestry-hibernate-core')
+  api project(':tapestry-core')
+  api project(':tapestry-hibernate-core')
   implementation "org.jboss.logging:jboss-logging:3.3.0.Final"  
 
   testImplementation project(':tapestry-test')