add standart plugin
This commit is contained in:
parent
ab407edb8c
commit
5323229c29
1 changed files with 31 additions and 0 deletions
|
|
@ -94,6 +94,37 @@
|
|||
<finalName>${project.artifactId}</finalName>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>xml-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>transform</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<transformationSets>
|
||||
<transformationSet>
|
||||
<dir>src/data/meta</dir>
|
||||
<excludes>
|
||||
<exclude>src/data/meta/meta.server.html</exclude>
|
||||
<exclude>src/data/meta/meta.server.json</exclude>
|
||||
<exclude>src/data/meta/meta.server.xslt</exclude>
|
||||
</excludes>
|
||||
<stylesheet>src/data/meta/meta.server.xslt</stylesheet>
|
||||
<fileMappers>
|
||||
<fileMapper
|
||||
implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
|
||||
<targetExtension>.json</targetExtension>
|
||||
</fileMapper>
|
||||
</fileMappers>
|
||||
</transformationSet>
|
||||
</transformationSets>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Loading…
Add table
Reference in a new issue