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/06/14 22:15:47 UTC

[tapestry-5] branch master updated: TAP5-2725: commons-lang as an API dependency for tapestry-core

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 57e04fcb3 TAP5-2725: commons-lang as an API dependency for tapestry-core
57e04fcb3 is described below

commit 57e04fcb383d59ffa9a1113c993e4306959d5657
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Tue Jun 7 21:26:34 2022 -0300

    TAP5-2725: commons-lang as an API dependency for tapestry-core
---
 build.gradle               | 3 ++-
 tapestry-core/build.gradle | 3 +++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 0992245f8..e9a416cf4 100755
--- a/build.gradle
+++ b/build.gradle
@@ -22,7 +22,8 @@ project.ext.versions = [
     selenium: "3.141.59",
     jackson: "2.13.1",
     jsonschemaGenerator: "4.20.0",
-    junitJupiter: "5.8.2"
+    junitJupiter: "5.8.2",
+    commonsLang: "3.4"
 ]
 
 ext.continuousIntegrationBuild = Boolean.getBoolean("ci")
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 0d79678b9..ee28a124e 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -16,6 +16,9 @@ dependencies {
     api project(':tapestry-json')
     api project(':beanmodel')
     api project(':tapestry-http')
+
+    api "org.apache.commons:commons-lang3:${versions.commonsLang}"
+
     
     implementation 'jakarta.annotation:jakarta.annotation-api:1.3.4'
     implementation 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.2'