Skip to content

Commit

Permalink
Merge branch 'master' into fix_readme
Browse files Browse the repository at this point in the history
  • Loading branch information
baifuyu committed Dec 11, 2023
2 parents 247c77e + 37bb74b commit 49322a8
Show file tree
Hide file tree
Showing 37 changed files with 194 additions and 95 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
name: Validate PR title
runs-on: ubuntu-latest
steps:
# https://www.conventionalcommits.org/en/v1.0.0/#summary
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions builder/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>builder-core</artifactId>
Expand All @@ -28,15 +28,15 @@
<artifactId>api-http-client</artifactId>
</dependency>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-graph-store</artifactId>
</dependency>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-table-store</artifactId>
</dependency>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-search-engine</artifactId>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions builder/model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>builder-model</artifactId>
Expand Down
53 changes: 53 additions & 0 deletions builder/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 Ant Group CO., Ltd.
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License
~ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
~ or implied.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<modules>
<module>core</module>
<module>model</module>
</modules>

<properties/>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
8 changes: 4 additions & 4 deletions cloudext/impl/graph-store/tugraph/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../../pom.xml</relativePath>
<relativePath>../../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-impl-graph-store-tugraph</artifactId>

<dependencies>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-graph-store</artifactId>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions cloudext/impl/object-store/local/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../../pom.xml</relativePath>
<relativePath>../../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-impl-object-store-local</artifactId>

<dependencies>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-object-store</artifactId>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions cloudext/impl/search-engine/elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../../pom.xml</relativePath>
<relativePath>../../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-impl-search-engine-elasticsearch</artifactId>

<dependencies>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-search-engine</artifactId>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions cloudext/impl/table-store/local/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../../pom.xml</relativePath>
<relativePath>../../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-impl-table-store-local</artifactId>

<dependencies>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-interface-table-store</artifactId>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions cloudext/interface/graph-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-interface-graph-store</artifactId>
Expand All @@ -29,7 +29,7 @@
<artifactId>common-util</artifactId>
</dependency>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-model</artifactId>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions cloudext/interface/object-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-interface-object-store</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions cloudext/interface/search-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-interface-search-engine</artifactId>
Expand All @@ -28,7 +28,7 @@
<artifactId>common-util</artifactId>
</dependency>
<dependency>
<groupId>com.antgroup.openspg</groupId>
<groupId>com.antgroup.openspg.builder</groupId>
<artifactId>builder-model</artifactId>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions cloudext/interface/table-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>cloudext-interface-table-store</artifactId>
Expand Down
53 changes: 53 additions & 0 deletions cloudext/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 Ant Group CO., Ltd.
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License
~ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
~ or implied.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<groupId>com.antgroup.openspg</groupId>
<artifactId>openspg-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>com.antgroup.openspg.cloudext</groupId>
<artifactId>cloudext-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<modules>
<module>interface/graph-store</module>
<module>interface/object-store</module>
<module>interface/table-store</module>
<module>interface/search-engine</module>
<module>impl/graph-store/tugraph</module>
<module>impl/object-store/local</module>
<module>impl/table-store/local</module>
<module>impl/search-engine/elasticsearch</module>
</modules>

<properties/>

<dependencyManagement>
<dependencies/>
</dependencyManagement>
</project>
Loading

0 comments on commit 49322a8

Please sign in to comment.