This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 8943412 [INLONG-2130][sort] add objenesis dependency (#2136)
8943412 is described below
commit 89434127dcb73d9cd551c87f8133c293ecacb0b0
Author: Liao Rui <[email protected]>
AuthorDate: Tue Jan 11 15:44:54 2022 +0800
[INLONG-2130][sort] add objenesis dependency (#2136)
Co-authored-by: ryanrliao <[email protected]>
---
inlong-sort/sort-core/pom.xml | 6 ++++++
inlong-sort/sort-formats/pom.xml | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/inlong-sort/sort-core/pom.xml b/inlong-sort/sort-core/pom.xml
index 5a63948..d654e26 100644
--- a/inlong-sort/sort-core/pom.xml
+++ b/inlong-sort/sort-core/pom.xml
@@ -216,6 +216,12 @@
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.objenesis</groupId>
+ <artifactId>objenesis</artifactId>
+ <version>3.1</version>
+ </dependency>
+
</dependencies>
</project>
diff --git a/inlong-sort/sort-formats/pom.xml b/inlong-sort/sort-formats/pom.xml
index 6be5f84..0349dd3 100644
--- a/inlong-sort/sort-formats/pom.xml
+++ b/inlong-sort/sort-formats/pom.xml
@@ -112,7 +112,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
- <version>2.21.0</version>
+ <version>${mockito.version}</version>
<type>jar</type>
<scope>test</scope>
</dependency>