modify pom and git ignore

This commit is contained in:
lta 2019-07-27 09:34:32 +08:00
parent 20eb6a8ef8
commit 0403bfa1b7
2 changed files with 8 additions and 41 deletions

22
.gitignore vendored
View File

@ -1,18 +1,8 @@
iotdb/data/*
iotdb/derby.log
iotdb/iotdb/data/*
iotdb/iotdb/derby.log
iotdb/*.pid
iotdb/iotdb/data/*
iotdb/iotdb/gc.log*
iotdb/iotdb/logs/*
iotdb/iotdb/lib/*
iotdb/unsequence/
iotdb/testunsequence
conf/*
lib/*
sbin/*
tools/*
**/*.pid
**/gc.log*
**/logs/*
**/lib/**
**/data/**
tsfile/src/test/resources/perTestInputData
# Eclipse IDE files
@ -40,7 +30,6 @@ derby-tsfile-db
**/target/
# intermediately generated locally
**/logs/
tsfile-timeseries/src/main/resources/logback.out.out.xml
tsfile-timeseries/src/main/resources/logback.out.xml
@ -53,7 +42,6 @@ tsfile-jdbc/src/main/resources/output/queryRes.csv
*.gz
*.tar.gz
*.tar
/data/
#src/test/resources/logback.xml

27
pom.xml
View File

@ -210,13 +210,14 @@
<!--Generated by Apache Release -->
<exclude>local-snapshots-dir/**</exclude>
<!--IoTDB data files-->
<exclude>iotdb/data/**</exclude>
<exclude>iotdb/logs/**</exclude>
<exclude>**/data/**</exclude>
<exclude>**/logs/**</exclude>
<exclude>src/test/resources/*.json</exclude>
<!-- for tsfile module -->
<!-- if `mvn clean` is not executed and `mvn test` is interrupted, then perTestInputData may be not deleted -->
<exclude>src/test/resources/perTestInputData</exclude>
<exclude>src/test/resources/*.json</exclude>
<exclude>NOTICE*</exclude>
</excludes>
</configuration>
</plugin>
@ -367,28 +368,6 @@
Check if all files contain Apache headers in them.
Ignore this plugin, we use license-maven-plugin to check apache header.
-->
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<executions>
<execution>
<id>license-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<!-- Additional files like .gitignore etc.-->
<exclude>**/.*/**</exclude>
<exclude>**/data/**</exclude>
<exclude>NOTICE*</exclude>
<exclude>licenses/*</exclude>
</excludes>
</configuration>
</plugin>
<!--use `mvn cobertura:cobertura` -->
<plugin>
<groupId>org.codehaus.mojo</groupId>