-
Notifications
You must be signed in to change notification settings - Fork 0
Release 2 samples
Nico Kutscherauer edited this page Sep 2, 2020
·
3 revisions
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<uriPatterns>
<uriPattern>compact</uriPattern>
<uriPattern>standard</uriPattern>
<uriPattern>full</uriPattern>
</uriPatterns>
</configuration>
</plugin>
Not very useful, but you do what you want...
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<generates>
<generate>public</generate>
<generate>system</generate>
<generate>uri</generate>
</generates>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<delegatesPublic>
<entry>
<startString>pouet://</startString>
<catalog>catalog1.xml</catalog>
</entry>
<entry>
<startString>ping://</startString>
<catalog>catalog2.xml</catalog>
</entry>
</delegatesPublic>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<delegatesSystem>
<entry>
<startString>pouet://</startString>
<catalog>catalog3.xml</catalog>
</entry>
</delegatesSystem>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<delegatesURI>
<entry>
<startString>http://www.w3c.org/</startString>
<catalog>catalog4.xml</catalog>
</entry>
</delegatesURI>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<nextCatalogs>
<nextCatalog>catalog5.xml</nextCatalog>
<nextCatalog>catalog6.xml</nextCatalog>
</nextCatalogs>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<catalogFileName>target/classes/catalog.xml</catalogFileName>
</configuration>
</plugin>
<plugin>
<groupId>top.marchand.xml.maven</groupId>
<artifactId>catalogBuilder-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>catalog</goal>
</goals>
</execution>
</executions>
<configuration>
<rewriteToProtocol>cp:/</rewriteToProtocol>
</configuration>
</plugin>