You can download org.wso2.carbon.automation.engine-4.3.1.jar in this page.
Open Source License
org.wso2.carbon.automation.engine-4.3.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.wso2.carbon.automation/org.wso2.carbon.automation.engine/pom.properties META-INF/maven/org.wso2.carbon.automation/org.wso2.carbon.automation.engine/pom.xml automation.xml automationXMLSchema.xsd emma.properties org.wso2.carbon.automation.engine.FrameworkConstants.class org.wso2.carbon.automation.engine.annotations.CurrentEnvironment.class org.wso2.carbon.automation.engine.annotations.ExecutionEnvironment.class org.wso2.carbon.automation.engine.annotations.SetEnvironment.class org.wso2.carbon.automation.engine.configurations.AutomationConfiguration.class org.wso2.carbon.automation.engine.configurations.AutomationConfigurationReader.class org.wso2.carbon.automation.engine.configurations.ConfigurationErrorChecker.class org.wso2.carbon.automation.engine.configurations.UrlGenerationUtil.class org.wso2.carbon.automation.engine.context.AutomationContext.class org.wso2.carbon.automation.engine.context.ContextXpathConstants.class org.wso2.carbon.automation.engine.context.DefaultInstance.class org.wso2.carbon.automation.engine.context.HostType.class org.wso2.carbon.automation.engine.context.InstanceType.class org.wso2.carbon.automation.engine.context.TestUserMode.class org.wso2.carbon.automation.engine.context.beans.ContextUrls.class org.wso2.carbon.automation.engine.context.beans.Instance.class org.wso2.carbon.automation.engine.context.beans.ProductGroup.class org.wso2.carbon.automation.engine.context.beans.Tenant.class org.wso2.carbon.automation.engine.context.beans.User.class org.wso2.carbon.automation.engine.exceptions.AutomationFrameworkException.class org.wso2.carbon.automation.engine.exceptions.ConfigurationMismatchException.class org.wso2.carbon.automation.engine.exceptions.DefaultInstanceSelectionException.class org.wso2.carbon.automation.engine.extensions.ExecutionListenerExtension.class org.wso2.carbon.automation.engine.extensions.ExtensibleClass.class org.wso2.carbon.automation.engine.extensions.ExtensionConstants.class org.wso2.carbon.automation.engine.extensions.ListenerExtension.class org.wso2.carbon.automation.engine.extensions.ReportListenerExtension.class org.wso2.carbon.automation.engine.extensions.SuiteListenerExtension.class org.wso2.carbon.automation.engine.extensions.TestListenerExtension.class org.wso2.carbon.automation.engine.extensions.TestNGExtensionExecutor.class org.wso2.carbon.automation.engine.extensions.TransformListenerExtension.class org.wso2.carbon.automation.engine.frameworkutils.ArchiveExtractorUtil.class org.wso2.carbon.automation.engine.frameworkutils.ArchiveManipulator.class org.wso2.carbon.automation.engine.frameworkutils.CodeCoverageUtils.class org.wso2.carbon.automation.engine.frameworkutils.FrameworkPathUtil.class org.wso2.carbon.automation.engine.frameworkutils.TestFrameworkUtils.class org.wso2.carbon.automation.engine.frameworkutils.enums.OperatingSystems.class org.wso2.carbon.automation.engine.frameworkutils.filters.CustomFileFilter.class org.wso2.carbon.automation.engine.frameworkutils.filters.RegExFilter.class org.wso2.carbon.automation.engine.frameworkutils.filters.SuffixFilter.class org.wso2.carbon.automation.engine.frameworkutils.filters.TypeFilter.class org.wso2.carbon.automation.engine.testlisteners.TestExecutionListener.class org.wso2.carbon.automation.engine.testlisteners.TestManagerListener.class org.wso2.carbon.automation.engine.testlisteners.TestReportListener.class org.wso2.carbon.automation.engine.testlisteners.TestSuiteListener.class org.wso2.carbon.automation.engine.testlisteners.TestTransformerListener.class
org.wso2.carbon.automation.engine-4.3.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~WSO2 Inc. licenses this file to you under the Apache License, ~Version 2.0 (the "License"); you may not use this file except ~in compliance with the License. ~You may obtain a copy of the License at ~ ~http://www.apache.org/licenses/LICENSE-2.0 ~ ~Unless required by applicable law or agreed to in writing, ~software distributed under the License is distributed on an ~"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~KIND, either express or implied. See the License for the ~specific language governing permissions and limitations ~under the License. --> <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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.wso2.carbon.automation</groupId> <artifactId>test-automation-framework</artifactId> <version>4.3.1</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>org.wso2.carbon.automation.engine</artifactId> <packaging>jar</packaging> <name>WSO2 Carbon Automation - Test Framework Engine</name> <properties> <maven.compiler.source>1.5</maven.compiler.source> <maven.compiler.target>1.5</maven.compiler.target> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.1.201405082137</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <executions> <execution> <id>default-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <argLine> -javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/0.7.1.201405082137/org.jacoco.agent-0.7.1.201405082137-runtime.jar=destfile=${project.build.directory}/jacoco.exec </argLine> <suiteXmlFiles> <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile> </suiteXmlFiles> <systemProperties> <property> <name>maven.test.haltafterfailure</name> <value>false</value> </property> <property> <name>java.io.tmpdir</name> <value>${basedir}/target/</value> </property> <property> <name>framework.resource.location</name> <value> ${basedir}/src/test/resources/ </value> </property> <property> <name>usedefaultlisteners</name> <value>true</value> </property> </systemProperties> <workingDirectory>${basedir}/target</workingDirectory> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>emma</groupId> <artifactId>emma</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> </dependencies> </project>
<dependency> <groupId>org.wso2.carbon.automation</groupId> <artifactId>org.wso2.carbon.automation.engine</artifactId> <version>4.3.1</version> </dependency>
If you think the following org.wso2.carbon.automation.engine-4.3.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download org.wso2.carbon.automation.engine-4.3.1.jar file