Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom-scripted-connector-bundler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<dependency>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars</artifactId>
<version>4.4.0</version>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
5 changes: 4 additions & 1 deletion legal/THIRDPARTYREADME.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ Copyright: Copyright 2002-2013 The Apache Software Foundation
Version: commons-io-2.4.jar
Copyright: Copyright 2002-2012 The Apache Software Foundation

Version: commons-lang3-3.18.jar
Version: commons-lang3-3.20.jar
Copyright: Copyright 2001-2013 The Apache Software Foundation

Version: commons-text-1.15.jar
Copyright: Copyright 2014-2024 The Apache Software Foundation

Version: commons-beanutils-1.8.0.jar
Copyright: Copyright 2000-2008 The Apache Software Foundation

Expand Down
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,19 @@
<artifactId>commons-codec</artifactId>
<version>${apache.commons-codec.version}</version>
</dependency>
<!-- handlebars 4.5.x requires commons-lang3 >= 3.20.0 (OSGi import [3.20.0,4.0.0)) -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
</dependency>
<!-- handlebars 4.5.x requires commons-text >= 1.15.0 (OSGi import [1.15.0,2.0.0));
the commons parent manages it to 1.12.0, so pin it up to satisfy the bundle -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.15.0</version>
</dependency>

<!-- Java EE -->
<dependency>
Expand Down
Loading