Remove plugin duplicates & lower case IoTDB in artifactId of POM (#535)

* Remove plugin duplicates in POM to avoid warnings
This commit is contained in:
Jiaye Wu 2018-12-22 21:54:45 +08:00 committed by Xiangdong Huang
parent 8073b6fe9f
commit ead93ac907
3 changed files with 8 additions and 30 deletions

View File

@ -71,19 +71,6 @@
<!-- Most of this is simply imported from the original spring-boot-starter-parent -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<archive>
<manifest>
<mainClass>${start-class}</mainClass>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>

View File

@ -9,7 +9,7 @@
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>IoTDB</artifactId>
<artifactId>iotdb</artifactId>
<name>IoTDB</name>

23
pom.xml
View File

@ -128,6 +128,13 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>*thrift*</excludePackageNames>
<!--
This will suppress the generation of a hidden timestamp at the top of each generated html page
and hopefully let the site generation nod to too big updates every time.
-->
<notimestamp>true</notimestamp>
<!--Don't fail the build, just because there were issues in the JavaDoc generation.-->
<failOnError>false</failOnError>
</configuration>
</plugin>
<!--
@ -141,22 +148,6 @@
<argLine>-Xmx512m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--
This will suppress the generation of a hidden timestamp at the top of each generated html page
and hopefully let the site generation nod to too big updates every time.
-->
<notimestamp>true</notimestamp>
<!--
Don't fail the build, just because there were issues in the JavaDoc generation.
-->
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</pluginManagement>