You can download mule-transport-jdbc-3.5.0.jar in this page.
Open Source
mule-transport-jdbc-3.5.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.mule.transports/mule-transport-jdbc/pom.properties META-INF/maven/org.mule.transports/mule-transport-jdbc/pom.xml META-INF/mule-jdbc.xsd META-INF/services/org/mule/config/registry-bootstrap.properties META-INF/services/org/mule/i18n/jdbc-messages.properties META-INF/services/org/mule/transport/jdbc.properties META-INF/spring.handlers META-INF/spring.schemas org.mule.transport.jdbc.ColumnAliasRowProcessor.class org.mule.transport.jdbc.ExtendedQueryRunner.class org.mule.transport.jdbc.JdbcConnector.class org.mule.transport.jdbc.JdbcEndpointURIBuilder.class org.mule.transport.jdbc.JdbcMessageDispatcher.class org.mule.transport.jdbc.JdbcMessageDispatcherFactory.class org.mule.transport.jdbc.JdbcMessageReceiver.class org.mule.transport.jdbc.JdbcMessageRequester.class org.mule.transport.jdbc.JdbcMessageRequesterFactory.class org.mule.transport.jdbc.JdbcTransaction.class org.mule.transport.jdbc.JdbcTransactionFactory.class org.mule.transport.jdbc.JdbcUtils.class org.mule.transport.jdbc.SQLExceptionReader.class org.mule.transport.jdbc.config.AbstractDataSourceFactoryBean.class org.mule.transport.jdbc.config.AbstractHostPortDatabaseDataSourceFactoryBean.class org.mule.transport.jdbc.config.CheckDatabaseOrUrl.class org.mule.transport.jdbc.config.DataSourceDefinitionParser.class org.mule.transport.jdbc.config.Db2DatasourceFactoryBean.class org.mule.transport.jdbc.config.DerbyDataSourceFactoryBean.class org.mule.transport.jdbc.config.JdbcNamespaceHandler.class org.mule.transport.jdbc.config.MssqlDatasourceFactoryBean.class org.mule.transport.jdbc.config.MysqlDataSourceFactoryBean.class org.mule.transport.jdbc.config.OracleDataSourceFactoryBean.class org.mule.transport.jdbc.config.PostgresqlDataSourceFactoryBean.class org.mule.transport.jdbc.i18n.JdbcMessages.class org.mule.transport.jdbc.sqlstrategy.CallableSqlStatementStrategy.class org.mule.transport.jdbc.sqlstrategy.DefaultSqlStatementStrategyFactory.class org.mule.transport.jdbc.sqlstrategy.SelectSqlStatementStrategy.class org.mule.transport.jdbc.sqlstrategy.SimpleUpdateSqlStatementStrategy.class org.mule.transport.jdbc.sqlstrategy.SqlStatementStrategy.class org.mule.transport.jdbc.sqlstrategy.SqlStatementStrategyExecutor.class org.mule.transport.jdbc.sqlstrategy.SqlStatementStrategyFactory.class org.mule.transport.jdbc.store.JdbcObjectStore.class org.mule.transport.jdbc.xa.CompositeDataSourceDecorator.class org.mule.transport.jdbc.xa.ConnectionWrapper.class org.mule.transport.jdbc.xa.DataSourceDecorator.class org.mule.transport.jdbc.xa.DataSourceWrapper.class org.mule.transport.jdbc.xa.DefaultDataSourceDecorator.class org.mule.transport.jdbc.xa.StatementInvocationHandler.class
mule-transport-jdbc-3.5.0.pom file content.
<?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.transports</groupId> <artifactId>mule-transports</artifactId> <version>3.5.0</version> </parent> <artifactId>mule-transport-jdbc</artifactId> <packaging>jar</packaging> <name>JDBC Transport</name> <description>A Mule transport for JDBC connectivity.</description> <properties> <skipExportTests>false</skipExportTests> <licensePath>../../LICENSE_HEADER.txt</licensePath> </properties> <dependencies> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-spring-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <version>${commonsDbUtilsVersion}</version> </dependency> <dependency> <groupId>com.experlog</groupId> <artifactId>xapool</artifactId> <version>${xaPoolVersion}</version> </dependency> <!-- Unit tests --> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-functional</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-xml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-vm</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-jbossts</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>jdk6</id> <activation> <jdk>1.6</jdk> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/jdk6</source> </sources> </configuration> </execution> <execution> <id>add-test-source</id> <phase>generate-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/jdk6</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk7</id> <activation> <jdk>1.7</jdk> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/jdk7</source> </sources> </configuration> </execution> <execution> <id>add-test-source</id> <phase>generate-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/jdk7</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-jdbc</artifactId> <version>3.5.0</version> </dependency>
If you think the following mule-transport-jdbc-3.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download mule-transport-jdbc-3.5.0.jar file