xwiki-rendering-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-integration-tests</artifactId> <version>17.4.0-rc-1</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</artifactId> <version>17.4.0-rc-1</version> </parent> <artifactId>xwiki-rendering-integration-tests</artifactId> <name>XWiki Rendering - Integration Tests</name> <packaging>jar</packaging> <description>XWiki Rendering - Integration Tests</description> <properties> <!-- TODO: Remove once the tests have been fixed to not output anything to the console! --> <xwiki.surefire.captureconsole.skip>true</xwiki.surefire.captureconsole.skip> </properties> <dependencies> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-event</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-annotatedxhtml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-jspwiki</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-creole</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xwiki20</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xwiki21</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xhtml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-html</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-html5</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xdomxml10</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xdomxmlcurrent</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-macro</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-macro</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-component-default</artifactId> <version>${commons.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-box</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Force compilation of tests as the packaging being pom tests won't be compiled with the default pom lifecycle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <!-- Force copy of test resources file as the packaging being pom resource files won't be copied with the default pom lifecycle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <goals> <goal>testResources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>