Skip to content

Commit

Permalink
Merge pull request #5431 from tkafalas/feature
Browse files Browse the repository at this point in the history
[BACKLOG-39083] Add old commons-dbcp and commons-pool jars back to CE…
  • Loading branch information
ddiroma authored Oct 31, 2023
2 parents f3bd1ab + 6c2443e commit ef0dabf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,31 @@
</exclusion>
</exclusions>
</dependency>
<!--The old dbcp and pool jars are needed for jackrabbit to work on CE. They will get removed for EE -->
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>${commons-dbcp.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>${commons-pool.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@
<pentaho-vfs.version>1.0</pentaho-vfs.version>
<wstx-asl.version>3.2.4</wstx-asl.version>
<icu4j.version>63.1</icu4j.version>
<commons-dbcp.version>1.4</commons-dbcp.version>
<commons-pool.version>1.5.7</commons-pool.version>
<gdata-analytics-meta.version>2.1</gdata-analytics-meta.version>
<syslog4j.version>0.9.46</syslog4j.version>
<bean-matchers.version>0.9</bean-matchers.version>
Expand Down

0 comments on commit ef0dabf

Please sign in to comment.