mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-06-27 03:20:10 +00:00
refactor(directory): adjust directory structure (#23)
This commit is contained in:
parent
d43a78c2a7
commit
37bb74b410
1
.github/workflows/pr-title-checker.yml
vendored
1
.github/workflows/pr-title-checker.yml
vendored
@ -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 }}
|
||||
|
@ -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>
|
||||
@ -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>
|
||||
|
@ -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>
|
||||
|
53
builder/pom.xml
Normal file
53
builder/pom.xml
Normal file
@ -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>
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
@ -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>
|
||||
|
@ -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>
|
||||
|
53
cloudext/pom.xml
Normal file
53
cloudext/pom.xml
Normal file
@ -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>
|
32
pom.xml
32
pom.xml
@ -28,19 +28,11 @@
|
||||
</licenses>
|
||||
|
||||
<modules>
|
||||
<module>builder/model</module>
|
||||
<module>builder/core</module>
|
||||
<module>common/util</module>
|
||||
<module>server</module>
|
||||
<module>reasoner</module>
|
||||
<module>cloudext/interface/graph-store</module>
|
||||
<module>cloudext/interface/object-store</module>
|
||||
<module>cloudext/interface/table-store</module>
|
||||
<module>cloudext/interface/search-engine</module>
|
||||
<module>cloudext/impl/graph-store/tugraph</module>
|
||||
<module>cloudext/impl/object-store/local</module>
|
||||
<module>cloudext/impl/table-store/local</module>
|
||||
<module>cloudext/impl/search-engine/elasticsearch</module>
|
||||
<module>builder</module>
|
||||
<module>cloudext</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
@ -86,12 +78,12 @@
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.builder</groupId>
|
||||
<artifactId>builder-model</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.builder</groupId>
|
||||
<artifactId>builder-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
@ -101,42 +93,42 @@
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-graph-store</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-search-engine</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-object-store</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-table-store</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-graph-store-tugraph</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-object-store-local</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-table-store-local</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-search-engine-elasticsearch</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
@ -25,7 +25,7 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.builder</groupId>
|
||||
<artifactId>builder-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@ -37,7 +37,7 @@
|
||||
<artifactId>cloudext-interface-computing</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-table-store</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
@ -33,15 +33,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-object-store</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-search-engine</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@ -53,7 +53,7 @@
|
||||
<artifactId>cloudext-interface-computing</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-interface-table-store</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
@ -28,7 +28,7 @@
|
||||
<artifactId>core-schema-model</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.builder</groupId>
|
||||
<artifactId>builder-model</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
@ -32,7 +32,7 @@
|
||||
<artifactId>common-service</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.builder</groupId>
|
||||
<artifactId>builder-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../../pom.xml</relativePath>
|
||||
</parent>
|
||||
@ -33,19 +33,19 @@
|
||||
<artifactId>common-service</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-graph-store-tugraph</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-object-store-local</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-table-store-local</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-search-engine-elasticsearch</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
@ -23,7 +23,7 @@
|
||||
</parent>
|
||||
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<licenses>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.antgroup.openspg.server</groupId>
|
||||
<artifactId>openspg-server-parent</artifactId>
|
||||
<artifactId>server-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.antgroup.openspg</groupId>
|
||||
<groupId>com.antgroup.openspg.cloudext</groupId>
|
||||
<artifactId>cloudext-impl-graph-store-tugraph</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
Loading…
x
Reference in New Issue
Block a user