mirror of https://github.com/apache/maven.git
[MNG-7916] Simply get rid of LifecycleMappingsXpp3Reader/Writer (#1295)
Since the v3 model has been replaced by the v4 model, that would be in line. We can revisit and restore full compatibility later if needed.
This commit is contained in:
parent
066cb3dc17
commit
08a2c60d9e
|
@ -78,8 +78,6 @@ under the License.
|
||||||
<configuration>
|
<configuration>
|
||||||
<templates>
|
<templates>
|
||||||
<template>model.vm</template>
|
<template>model.vm</template>
|
||||||
<template>reader.vm</template>
|
|
||||||
<template>writer.vm</template>
|
|
||||||
<template>reader-stax.vm</template>
|
<template>reader-stax.vm</template>
|
||||||
<template>writer-stax.vm</template>
|
<template>writer-stax.vm</template>
|
||||||
</templates>
|
</templates>
|
||||||
|
@ -87,7 +85,6 @@ under the License.
|
||||||
<param>packageModelV3=org.apache.maven.plugin.lifecycle</param>
|
<param>packageModelV3=org.apache.maven.plugin.lifecycle</param>
|
||||||
<param>packageModelV4=org.apache.maven.plugin.lifecycle</param>
|
<param>packageModelV4=org.apache.maven.plugin.lifecycle</param>
|
||||||
<param>packageToolV4=org.apache.maven.plugin.lifecycle.io</param>
|
<param>packageToolV4=org.apache.maven.plugin.lifecycle.io</param>
|
||||||
<param>packageToolV4Xpp3=org.apache.maven.plugin.lifecycle.io.xpp3</param>
|
|
||||||
</params>
|
</params>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
@ -137,6 +134,8 @@ under the License.
|
||||||
<exclude>org.apache.maven.plugin.lifecycle.Phase#setExecutions(java.util.List):METHOD_REMOVED</exclude>
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#setExecutions(java.util.List):METHOD_REMOVED</exclude>
|
||||||
<exclude>org.apache.maven.plugin.lifecycle.Phase#setId(java.lang.String):METHOD_REMOVED</exclude>
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#setId(java.lang.String):METHOD_REMOVED</exclude>
|
||||||
<exclude>org.apache.maven.plugin.lifecycle.Phase#Phase():CONSTRUCTOR_REMOVED</exclude>
|
<exclude>org.apache.maven.plugin.lifecycle.Phase#Phase():CONSTRUCTOR_REMOVED</exclude>
|
||||||
|
<exclude>org.apache.maven.plugin.lifecycle.io.xpp3.LifecycleMappingsXpp3Reader</exclude>
|
||||||
|
<exclude>org.apache.maven.plugin.lifecycle.io.xpp3.LifecycleMappingsXpp3Writer</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</parameter>
|
</parameter>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
Loading…
Reference in New Issue