This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 53bda62 Remove unnecessary dependencies.
53bda62 is described below
commit 53bda627dfb4a09d2eeeefbf2cd4b24b5c81e129
Author: zhutianci <[email protected]>
AuthorDate: Thu Aug 22 10:54:34 2019 +0800
Remove unnecessary dependencies.
---
example/tsfile/pom.xml | 44 +++++++++++++++++---------------------------
example/tsfile/readme.md | 2 +-
2 files changed, 18 insertions(+), 28 deletions(-)
diff --git a/example/tsfile/pom.xml b/example/tsfile/pom.xml
index 1dab0e0..7a99f01 100644
--- a/example/tsfile/pom.xml
+++ b/example/tsfile/pom.xml
@@ -19,32 +19,22 @@
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.iotdb</groupId>
- <artifactId>iotdb-examples</artifactId>
+<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.iotdb</groupId>
+ <artifactId>iotdb-examples</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>tsfile-example</artifactId>
<version>0.9.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <groupId>org.apache.iotdb</groupId>
- <artifactId>tsfile-example</artifactId>
- <version>0.9.0-SNAPSHOT</version>
- <name>tsfile-example</name>
- <!-- FIXME change it to the project's website -->
- <url>http://www.example.com</url>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.iotdb</groupId>
- <artifactId>tsfile</artifactId>
- <version>0.9.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <name>tsfile-example</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.iotdb</groupId>
+ <artifactId>tsfile</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
</project>
diff --git a/example/tsfile/readme.md b/example/tsfile/readme.md
index 9615cdd..000cb7c 100644
--- a/example/tsfile/readme.md
+++ b/example/tsfile/readme.md
@@ -81,4 +81,4 @@ The example is to show how to write and read a TsFile File.
This class is to show the structure of a TsFile.
### Notice
- For detail, please refer to
https://github.com/thulab/tsfile/wiki/Get-Started.
+ For detail, please refer to
https://github.com/apache/incubator-iotdb/blob/master/tsfile/README.md.