xwiki-rendering-transformation-macro
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-macro</artifactId> <version>17.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformations</artifactId> <version>17.5.0</version> </parent> <artifactId>xwiki-rendering-transformation-macro</artifactId> <name>XWiki Rendering - Transformation - Macro</name> <description>Transform Macro blocks by executing Macros</description> <properties> <xwiki.jacoco.instructionRatio>0.81</xwiki.jacoco.instructionRatio> <!-- Name to display by the Extension Manager --> <xwiki.extension.name>Rendering Macro Transformation</xwiki.extension.name> <xwiki.extension.category>transformation</xwiki.extension.category> <!-- Skipping revapi since xwiki-rendering-legacy-transformation-macro wraps this module and runs checks on it. --> <xwiki.revapi.skip>true</xwiki.revapi.skip> </properties> <dependencies> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-properties</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-xml</artifactId> <version>${commons.version}</version> </dependency> <!-- Testing Dependencies --> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-tool-test-component</artifactId> <version>${commons.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-xml</artifactId> <version>${commons.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>test-jar</id> <goals> <goal>test-jar</goal> </goals> <configuration> <includes> <!-- Required since we're using test components in the integration test module --> <include>**/Test*Macro.class</include> <include>**/Test*Macros.class</include> <include>**/Test*Macro$*.class</include> <include>**/TestMacroParameter.class</include> <include>**/components.txt</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <!-- Specify the "default" execution id so that the "blocker" one is always executed --> <id>default</id> <configuration> <excludes> org/xwiki/rendering/internal/transformation/macro/MacroTransformation.java </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>