2017-05-11 14:34:51 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-10-26 19:43:41 +08:00
|
|
|
<!--
|
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
2023-01-13 23:26:52 +08:00
|
|
|
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
|
2022-10-26 19:43:41 +08:00
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
2023-01-13 23:26:52 +08:00
|
|
|
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.
|
2022-10-26 19:43:41 +08:00
|
|
|
-->
|
2017-05-11 14:34:51 +08:00
|
|
|
<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">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>hugegraph</artifactId>
|
2022-11-18 16:17:54 +08:00
|
|
|
<groupId>org.apache.hugegraph</groupId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2017-05-11 14:34:51 +08:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>hugegraph-example</artifactId>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2022-11-18 16:17:54 +08:00
|
|
|
<groupId>org.apache.hugegraph</groupId>
|
2017-05-12 11:55:38 +08:00
|
|
|
<artifactId>hugegraph-dist</artifactId>
|
2022-11-30 00:32:17 +08:00
|
|
|
<version>${revision}</version>
|
2017-05-11 14:34:51 +08:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2022-12-14 17:52:01 +08:00
|
|
|
|
2017-06-23 19:44:54 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2022-12-14 17:52:01 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2017-06-23 19:44:54 +08:00
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
2022-12-15 16:07:34 +08:00
|
|
|
<configuration>
|
|
|
|
|
<filesets>
|
|
|
|
|
<fileset>
|
|
|
|
|
<directory>${top.level.dir}</directory>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>${final.name}/**</exclude>
|
|
|
|
|
<exclude>*.tar.gz</exclude>
|
|
|
|
|
<exclude>*.zip</exclude>
|
|
|
|
|
<exclude>*.tar</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
|
</fileset>
|
|
|
|
|
<fileset>
|
|
|
|
|
<directory>${final.name}</directory>
|
|
|
|
|
</fileset>
|
|
|
|
|
</filesets>
|
|
|
|
|
</configuration>
|
2017-06-23 19:44:54 +08:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2020-07-29 18:07:37 +08:00
|
|
|
</project>
|