我在使用Jetty的maven中使用插件。IntelliJ IDEA說在<configuration />裏面不允許有<systemProperties />元素
在這個插件,我需要做的配置設置maxFormContentSize
:
<plugin>
<groupId>com.organization.example</groupId>
<artifactId>maven-example-plugin</artifactId>
<version>${example.version}</version>
<dependencies>
<!-- -->
</dependencies>
<configuration>
<systemProperties>
<systemProperty>
<name>org.mortbay.jetty.Request.maxFormContentSize</name>
<value>500000</value>
</systemProperty>
</systemProperties>
<script>${example.script}</script>
</configuration>
</plugin>
的問題是,IntelliJ IDEA的說,systemProperties元素在這裏不允許使用:
Element systemProperties is not allowed here
什麼IntelliJ IDEA的正確配置不顯示此錯誤?我已經做了research about this subject,但似乎這是唯一可能的配置。
我使用maven 2.2.1和IntelliJ IDEA 2017.1.4。 Jetty版本在7.6.8.v20121106之前(我試圖確認信息)。
我想這個設置是行家模式,而不是插件本身。這解釋了很多。謝謝!該插件是MyContainer(https://github.com/murer/mycontainer),但它沒有很好的文檔。 – Dherik