Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
749c177
remove jersey
zhenyuT Aug 27, 2023
79b04cc
add workflow_dispatch
zhenyuT Aug 27, 2023
ebb0331
add workflow_dispatch
zhenyuT Aug 27, 2023
c79ac13
Empty-Commit
zhenyuT Aug 27, 2023
befd4da
Empty-Commit
zhenyuT Aug 27, 2023
ddadd35
Update ci.yml
zhenyuT Aug 27, 2023
0d44db7
fix error
zhenyuT Aug 27, 2023
b77745b
fix error
zhenyuT Aug 27, 2023
5198676
chore: reformat code
zhenyuT Sep 3, 2023
ae8605b
Merge branch 'master' into release-removejersey
imbajin Oct 7, 2023
7945718
refact: replace params okhttp3.Headers to internal RestHeaders
zhenyuT Oct 19, 2023
193b5d3
Merge remote-tracking branch 'origin/release-removejersey' into relea…
zhenyuT Oct 19, 2023
1ea7905
fix: licence dependency
zhenyuT Oct 19, 2023
74c681c
Merge branch 'apache:master' into master
zhenyuT Oct 19, 2023
a9e2bc6
Merge branch 'master' into release-removejersey
zhenyuT Oct 19, 2023
cf260c9
fix: test error
zhenyuT Oct 19, 2023
f7f45f4
fix: code format issue
zhenyuT Oct 27, 2023
53b57fa
fix: unit test error
zhenyuT Oct 27, 2023
945005a
fix: code issue
zhenyuT Oct 29, 2023
24a7dbf
fix: code issue
zhenyuT Oct 30, 2023
2cce7f4
fix: code issue
zhenyuT Nov 5, 2023
cfb8daa
fix: code issue
zhenyuT Nov 5, 2023
e662b64
fix: code issue
zhenyuT Nov 6, 2023
e8fb6f3
fix: code issue
zhenyuT Nov 9, 2023
ff91e8a
version 1.2.0
zhenyuT Nov 9, 2023
a6b22fd
fix: version error
zhenyuT Nov 10, 2023
d717f6d
fix: version error
zhenyuT Nov 10, 2023
bbc5ec1
fix: code issue
zhenyuT Nov 12, 2023
e851694
tiny improve
imbajin Nov 15, 2023
5aecb31
fix: code issue
zhenyuT Nov 15, 2023
1a1435e
fix: code issue
zhenyuT Nov 20, 2023
81aa7ca
fix: code issue
zhenyuT Nov 21, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "hugegraph-commons ci"

on:
workflow_dispatch:
push:
branches:
- master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/license-checker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "license checker"

on:
workflow_dispatch:
push:
branches:
- master
Expand Down
107 changes: 34 additions & 73 deletions hugegraph-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
Expand All @@ -32,11 +32,14 @@
<description>
hugegraph-common is a common module for HugeGraph and its peripheral components.
hugegraph-common encapsulates locks, configurations, events, iterators, rest and some
numeric or collection util classes to simplify the development of HugeGraph and its components.
numeric or collection util classes to simplify the development of HugeGraph and its
components.
</description>

<properties>
<!-- Use parent params -->
<lombok.version>1.18.8</lombok.version>
<okhttp.version>4.10.0</okhttp.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -196,76 +199,6 @@
<version>${jackson.version}</version>
</dependency>

<!-- jersey -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-base</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</exclusion>
<exclusion>
<artifactId>jackson-annotations</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<groupId>com.fasterxml.jackson.module</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
<version>${jersey.version}</version>
<exclusions>
<exclusion>
<artifactId>commons-codec</artifactId>
<groupId>commons-codec</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>${jersey.hk2.version}</version>
<exclusions>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta.xml.version}</version>
<exclusions>
<exclusion>
<artifactId>jakarta.activation-api</artifactId>
<groupId>jakarta.activation</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
Expand All @@ -278,8 +211,36 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-bom</artifactId>
<version>${okhttp.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
Expand Down
Loading