
archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-rendering-archetype-macro
Show all versions of xwiki-rendering-archetype-macro
Make it easy to create a maven project for creating XWiki Rendering Macros.
<?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> <groupId>\${groupId}</groupId> <artifactId>\${artifactId}</artifactId> <version>\${version}</version> <name>XWiki Macro - Example</name> <description>XWiki Macro - Example</description> <properties> <rendering.version>${project.version}</rendering.version> <!-- Indicate to the XWiki Extension Manager the pretty name of this extension --> <xwiki.extension.name>Simple Example Macro</xwiki.extension.name> <!-- Indicate to the XWiki Extension Manager the type of extension --> <xwiki.extension.category>macro</xwiki.extension.category> <!-- Indicate to the XWiki Extension Manager that this extensions contributes a Macro component --> <xwiki.extension.components> org.xwiki.rendering.macro.Macro/simple-example </xwiki.extension.components> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${xwiki.java.version}</source> <target>${xwiki.java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> <configuration> <includes> <include>**/IntegrationTests.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-macro</artifactId> <version>\${rendering.version}</version> </dependency> <!-- Testing dependencies --> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-test</artifactId> <version>\${rendering.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xwiki21</artifactId> <version>\${rendering.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xhtml</artifactId> <version>\${rendering.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-event</artifactId> <version>\${rendering.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy