mule-tests-runner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-runner</artifactId> <version>4.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>mule-tests</artifactId> <groupId>org.mule.tests</groupId> <version>4.1.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mule-tests-runner</artifactId> <name>Mule Test Runner</name> <description>Test Runner for Mule Integration Tests</description> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${shade.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <minimizeJar>true</minimizeJar> <artifactSet> <includes> <include>org.springframework:*</include> </includes> </artifactSet> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mule</groupId> <artifactId>mule-maven-client-api</artifactId> <version>1.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mule</groupId> <artifactId>mule-maven-client-impl</artifactId> <version>1.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-extensions-support</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>mule-api</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-extensions-api-dsql</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-extensions-api</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-extensions-api-persistence</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-core</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-service-oauth-api</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>org.mule.projectreactor</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-extensions-soap-support</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>mule-extensions-soap-api</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-service-soap-api</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-service</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>mule-classloader-model</artifactId> <groupId>org.mule.tools.maven</groupId> </exclusion> <exclusion> <artifactId>mule-core</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-container</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>mule-module-artifact</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-core</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-deployment-model</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>mule-module-reboot</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-module-artifact</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> <exclusion> <artifactId>mule-core</artifactId> <groupId>org.mule.runtime</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.runtime</groupId> <artifactId>mule-module-logging</artifactId> <version>4.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>disruptor</artifactId> <groupId>com.lmax</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-1.2-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>jul-to-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-unit</artifactId> <version>4.1.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>hamcrest-library</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>mule-tests-model</artifactId> <groupId>org.mule.tests</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> <version>1.6.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-reflect</artifactId> <groupId>org.powermock</groupId> </exclusion> <exclusion> <artifactId>javassist</artifactId> <groupId>org.javassist</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.6.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mockito-all</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>powermock-api-mockito-common</artifactId> <groupId>org.powermock</groupId> </exclusion> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.6.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-module-junit4-common</artifactId> <groupId>org.powermock</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-heisenberg-extension</artifactId> <version>4.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-petstore-extension</artifactId> <version>4.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.services</groupId> <artifactId>mule-service-weave</artifactId> <version>2.1.2</version> <classifier>mule-service</classifier> <scope>provided</scope> <exclusions> <exclusion> <artifactId>scala-library</artifactId> <groupId>org.scala-lang</groupId> </exclusion> <exclusion> <artifactId>runtime</artifactId> <groupId>org.mule.weave</groupId> </exclusion> <exclusion> <artifactId>yaml-module</artifactId> <groupId>org.mule.weave</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.googlecode.multithreadedtc</groupId> <artifactId>multithreadedtc</artifactId> <version>1.01</version> <scope>test</scope> </dependency> <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-junit4</artifactId> <version>2.0-BETA17</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>allure-java-commons</artifactId> <groupId>io.qameta.allure</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <formatterConfigPath>../../formatter.xml</formatterConfigPath> </properties> </project>