You can download xwiki-rendering-test-5.2.jar in this page.
Open Source License
xwiki-rendering-test-5.2.jar file has the following types.
META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.xwiki.rendering/xwiki-rendering-test/pom.properties META-INF/maven/org.xwiki.rendering/xwiki-rendering-test/pom.xml cts/config.properties cts/simple/bold/bold1.inout.xml cts/simple/bold/bold2.inout.xml cts/simple/bold/bold3.inout.xml cts/simple/horizontalline/horizontalline1.inout.xml cts/simple/image/image1.inout.xml cts/simple/image/image2.inout.xml cts/simple/italic/italic1.inout.xml cts/simple/link/link1.inout.xml cts/simple/link/link2.inout.xml cts/simple/link/link3.inout.xml cts/simple/link/link4.inout.xml cts/simple/link/link5.inout.xml cts/simple/list/definitionlist1.inout.xml cts/simple/list/list1.inout.xml cts/simple/list/list2.inout.xml cts/simple/list/list3.inout.xml cts/simple/macro/macro1.inout.xml cts/simple/monospace/monospace1.inout.xml cts/simple/monospace/monospace2.inout.xml cts/simple/paragraph/paragraph1.inout.xml cts/simple/paragraph/paragraph2.inout.xml cts/simple/paragraph/paragraph3.inout.xml cts/simple/paragraph/paragraph4.inout.xml cts/simple/paragraph/paragraph5.inout.xml cts/simple/paragraph/paragraph6.inout.xml cts/simple/quote/quote1.inout.xml cts/simple/section/section1.inout.xml cts/simple/strikedout/strikedout1.inout.xml cts/simple/subscript/subscript1.inout.xml cts/simple/superscript/superscript1.inout.xml cts/simple/symbol/symbol1.inout.xml cts/simple/table/table1.inout.xml cts/simple/underline/underline1.inout.xml cts/simple/verbatim/verbatim1.inout.xml cts/simple/verbatim/verbatim2.inout.xml org.xwiki.rendering.test.BlockAssert.class org.xwiki.rendering.test.MockWikiModel.class org.xwiki.rendering.test.cts.CompatibilityTestSuite.class org.xwiki.rendering.test.cts.IgnoredRenderingTestClassRunner.class org.xwiki.rendering.test.cts.Initialized.class org.xwiki.rendering.test.cts.RenderingTest.class org.xwiki.rendering.test.cts.RenderingTestClassRunner.class org.xwiki.rendering.test.cts.Scope.class org.xwiki.rendering.test.cts.Syntax.class org.xwiki.rendering.test.cts.TestData.class org.xwiki.rendering.test.cts.TestDataConfiguration.class org.xwiki.rendering.test.cts.TestDataParser.class org.xwiki.rendering.test.integration.RenderingTest.class org.xwiki.rendering.test.integration.RenderingTestSuite.class org.xwiki.rendering.test.integration.SyntaxWrappingListener.class org.xwiki.rendering.test.integration.TestData.class org.xwiki.rendering.test.integration.TestDataGenerator.class org.xwiki.rendering.test.integration.TestDataParser.class
xwiki-rendering-test-5.2.pom file content.
<?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>5.2</version> </parent> <artifactId>xwiki-rendering-test</artifactId> <name>XWiki Rendering - Test Framework</name> <packaging>jar</packaging> <description>XWiki Rendering - Test Framework</description> <dependencies> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-text</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-api</artifactId> <version>${project.version}</version> <!-- TODO: why? --> <exclusions> <exclusion> <artifactId>dom4j</artifactId> <groupId>dom4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xdomxmlcurrent</artifactId> <version>${project.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-velocity</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-test-component</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <exclusions> <!-- We don't need that part of reflections --> <exclusion> <artifactId>dom4j</artifactId> <groupId>dom4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <excludes> org/xwiki/rendering/test/integration/RenderingTest.java, org/xwiki/rendering/test/integration/RenderingTestSuite.java, org/xwiki/rendering/test/integration/TestData.java, org/xwiki/rendering/test/integration/TestDataGenerator.java, org/xwiki/rendering/test/integration/TestDataParser.java </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>quality</id> <build> <plugins> <!-- Skip Jacoco as this module is a test framework that we use in other modules and is thus tested indirectly. --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-test</artifactId> <version>5.2</version> </dependency>
If you think the following xwiki-rendering-test-5.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download xwiki-rendering-test-5.2.jar file