mirror of https://github.com/apache/iotdb
Remove plugin duplicates & lower case IoTDB in artifactId of POM (#535)
* Remove plugin duplicates in POM to avoid warnings
This commit is contained in:
parent
8073b6fe9f
commit
ead93ac907
|
@ -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>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>IoTDB</artifactId>
|
||||
<artifactId>iotdb</artifactId>
|
||||
|
||||
<name>IoTDB</name>
|
||||
|
||||
|
|
23
pom.xml
23
pom.xml
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue