forked from hugegraph/hugegraph-sync
321 lines
12 KiB
XML
321 lines
12 KiB
XML
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You 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.
|
|
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"
|
|
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>org.apache.hugegraph</groupId>
|
|
<artifactId>hugegraph</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>hugegraph-core</artifactId>
|
|
<name>hugegraph-core</name>
|
|
|
|
<properties>
|
|
<top.level.dir>${basedir}/..</top.level.dir>
|
|
<jraft.version>1.3.11</jraft.version>
|
|
<ohc.version>0.7.4</ohc.version>
|
|
<jna.version>5.12.1</jna.version>
|
|
<lz4.version>1.8.0</lz4.version>
|
|
<mmseg4j-core.version>1.10.0</mmseg4j-core.version>
|
|
<jcseg.version>2.6.2</jcseg.version>
|
|
<hanlp.version>portable-1.8.3</hanlp.version>
|
|
<ansj-seg.version>5.1.6</ansj-seg.version>
|
|
<lucene.version>8.11.2</lucene.version>
|
|
<jieba-analysis.version>1.0.2</jieba-analysis.version>
|
|
<ikanalyzer.version>2012_u6</ikanalyzer.version>
|
|
<commons-compress.version>1.21</commons-compress.version>
|
|
<eclipse-collections.version>11.1.0</eclipse-collections.version>
|
|
<fastutil.version>8.5.9</fastutil.version>
|
|
<jjwt.version>0.11.5</jjwt.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
<artifactId>hugegraph-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- tinkerpop -->
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>gremlin-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>gremlin-groovy</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.github.jeremyh</groupId>
|
|
<artifactId>jBCrypt</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>tinkergraph-gremlin</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>gremlin-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tinkerpop</groupId>
|
|
<artifactId>gremlin-driver</artifactId>
|
|
</dependency>
|
|
|
|
<!-- jraft -->
|
|
<dependency>
|
|
<groupId>com.alipay.sofa</groupId>
|
|
<artifactId>jraft-core</artifactId>
|
|
<version>${jraft.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-jcl</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.rocksdb</groupId>
|
|
<artifactId>rocksdbjni</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- ohc -->
|
|
<dependency>
|
|
<groupId>org.caffinitas.ohc</groupId>
|
|
<artifactId>ohc-core</artifactId>
|
|
<version>${ohc.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>${jna.version}</version>
|
|
</dependency>
|
|
|
|
<!-- collections -->
|
|
<dependency>
|
|
<groupId>org.eclipse.collections</groupId>
|
|
<artifactId>eclipse-collections-api</artifactId>
|
|
<version>${eclipse-collections.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.collections</groupId>
|
|
<artifactId>eclipse-collections</artifactId>
|
|
<version>${eclipse-collections.version}</version>
|
|
</dependency>
|
|
|
|
<!-- compress -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>${commons-compress.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.lz4</groupId>
|
|
<artifactId>lz4-java</artifactId>
|
|
<version>${lz4.version}</version>
|
|
</dependency>
|
|
|
|
<!-- analyzers -->
|
|
<dependency>
|
|
<groupId>org.ansj</groupId>
|
|
<artifactId>ansj_seg</artifactId>
|
|
<version>${ansj-seg.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hankcs</groupId>
|
|
<artifactId>hanlp</artifactId>
|
|
<version>${hanlp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-analyzers-smartcn</artifactId>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-core</artifactId>
|
|
<version>${lucene.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.huaban</groupId>
|
|
<artifactId>jieba-analysis</artifactId>
|
|
<version>${jieba-analysis.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.lionsoul</groupId>
|
|
<artifactId>jcseg-core</artifactId>
|
|
<version>${jcseg.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.chenlb.mmseg4j</groupId>
|
|
<artifactId>mmseg4j-core</artifactId>
|
|
<version>${mmseg4j-core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.janeluo</groupId>
|
|
<artifactId>ikanalyzer</artifactId>
|
|
<version>${ikanalyzer.version}</version>
|
|
</dependency>
|
|
|
|
<!-- fastutil: https://mvnrepository.com/artifact/it.unimi.dsi/fastutil -->
|
|
<dependency>
|
|
<groupId>it.unimi.dsi</groupId>
|
|
<artifactId>fastutil</artifactId>
|
|
<version>${fastutil.version}</version>
|
|
</dependency>
|
|
|
|
<!-- jwt auth token, TODO: move to auth pom -->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-api</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-impl</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<directory>${basedir}/target</directory>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
|
|
<testResources>
|
|
<testResource>
|
|
<directory>${basedir}/src/test/resources</directory>
|
|
</testResource>
|
|
</testResources>
|
|
|
|
<extensions>
|
|
<extension>
|
|
<groupId>kr.motd.maven</groupId>
|
|
<artifactId>os-maven-plugin</artifactId>
|
|
<version>1.5.0.Final</version>
|
|
</extension>
|
|
</extensions>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-source</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>${basedir}/target/generated-sources/protobuf/java</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
<version>0.6.1</version>
|
|
<configuration>
|
|
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
|
|
<pluginId>protoc-java</pluginId>
|
|
<protoSourceRoot>${project.basedir}/src/main/resources/proto</protoSourceRoot>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<configuration>
|
|
<archive>
|
|
<index>true</index>
|
|
<manifest>
|
|
<addDefaultImplementationEntries>
|
|
false
|
|
</addDefaultImplementationEntries>
|
|
<addDefaultSpecificationEntries>
|
|
true
|
|
</addDefaultSpecificationEntries>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|