Mule functional test framework (TCK).
Here is the list of declaration for mule-tests-functional. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-functional</artifactId> <version>3.3.1</version> </dependency>
If you think this Maven repository POM file listing for mule-tests-functional is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The mule-tests-functional-3.3.1 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
AOP | aspectjrt 1.6.8 The runtime needed to execute a program using AspectJ | 15 |
AOP | aspectjweaver 1.6.8 The AspectJ weaver introduces advices to java classes | 17 |
The following plugins are used in the mule-tests-functional-3.3.1.jar
Here is the content of the POM file.
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mule.tests</groupId> <artifactId>mule-tests</artifactId> <version>3.3.1</version> </parent> <artifactId>mule-tests-functional</artifactId> <packaging>jar</packaging> <name>Mule Functional Test Framework (TCK)</name> <description>Mule functional test framework (TCK)</description> <build> <plugins> <plugin> <!-- Install a special 'TESTING' version of this module, used in launcher integration tests --> <groupId>org.codehaus.mojo</groupId> <artifactId>shitty-maven-plugin</artifactId> <executions> <execution> <goals> <goal>clean</goal> <goal>install</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> <version>${project.version}</version> </dependency> <!-- Needed for SpringXmlConfigurationBuilder and TestNamespaceHandler --> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-spring-config</artifactId> <version>${project.version}</version> </dependency> <!-- needed for org.springframework.beans.factory.FactoryBean interface --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- Override scope="test" from parent --> <scope>compile</scope> </dependency> <!-- Unit tests --> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> <version>${project.version}</version> <type>test-jar</type> </dependency> <!-- required for ConfigurationBuilders at runtime --> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-builders</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- required for AssertionMessageProcessorTestCase --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.6.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.6.8</version> <scope>test</scope> </dependency> </dependencies> </project>