You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2022/12/16 07:11:00 UTC

[jira] [Work logged] (DBCP-589) Provide Jakarta namespace ready artifact of DBCP2

     [ https://issues.apache.org/jira/browse/DBCP-589?focusedWorklogId=834060&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-834060 ]

ASF GitHub Bot logged work on DBCP-589:
---------------------------------------

                Author: ASF GitHub Bot
            Created on: 16/Dec/22 07:10
            Start Date: 16/Dec/22 07:10
    Worklog Time Spent: 10m 
      Work Description: rzo1 opened a new pull request, #248:
URL: https://github.com/apache/commons-dbcp/pull/248

   # What does this PR do?
   
   This PR provides a Jakarta namespace ready artifact of DBCP2 by relocating the related `javax.transcation.*` imports to  `jakarta.transaction.*` and provides a related (attached) artifact with a jakarta classifier to be consumed by user projects.




Issue Time Tracking
-------------------

            Worklog Id:     (was: 834060)
    Remaining Estimate: 0h
            Time Spent: 10m

> Provide Jakarta namespace ready artifact of DBCP2
> -------------------------------------------------
>
>                 Key: DBCP-589
>                 URL: https://issues.apache.org/jira/browse/DBCP-589
>             Project: Commons DBCP
>          Issue Type: Bug
>    Affects Versions: 2.9.0
>            Reporter: Richard Zowalla
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Currently, we are using a shaded and relocated version of DBCP2 in TomEE to have a Jakarta namespace variant of DBCP2.
> For DBCP2 it would require to do some small relocations:
> {code:xml}
>  <relocations>
>                 <relocation>
>                   <pattern>javax.transaction</pattern>
>                   <shadedPattern>jakarta.transaction</shadedPattern>
>                   <excludes>
>                     <exclude>javax.transaction.xa.**</exclude>
>                   </excludes>
>                 </relocation>
>               </relocations>
> {code}
> Geronimo and other EE related projects are using the relocation / shade approach to provide artifacts via a "jakarta" classifier. 
> I will open a related PR soon.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)