Download mockrunner-jdbc-1.0.8.jar file

Introduction

You can download mockrunner-jdbc-1.0.8.jar in this page.

License

Open Source

Type List

mockrunner-jdbc-1.0.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.mockrunner/mockrunner-jdbc/pom.properties
META-INF/maven/com.mockrunner/mockrunner-jdbc/pom.xml
com.mockrunner.jdbc.AbstractOutParameterResultSetHandler.class
com.mockrunner.jdbc.AbstractParameterResultSetHandler.class
com.mockrunner.jdbc.AbstractResultSetHandler.class
com.mockrunner.jdbc.ArrayResultSetFactory.class
com.mockrunner.jdbc.BasicJDBCTestCaseAdapter.class
com.mockrunner.jdbc.CallableStatementResultSetHandler.class
com.mockrunner.jdbc.FileResultSetFactory.class
com.mockrunner.jdbc.JDBCTestModule.class
com.mockrunner.jdbc.ParameterSets.class
com.mockrunner.jdbc.ParameterUtil.class
com.mockrunner.jdbc.PreparedStatementResultSetHandler.class
com.mockrunner.jdbc.ResultSetFactory.class
com.mockrunner.jdbc.ResultSetIterator.class
com.mockrunner.jdbc.SQLStatementMatcher.class
com.mockrunner.jdbc.SQLUtil.class
com.mockrunner.jdbc.StatementResultSetHandler.class
com.mockrunner.jdbc.StringValuesTable.class
com.mockrunner.jdbc.XMLResultSetFactory.class
com.mockrunner.mock.jdbc.JDBCMockObjectFactory.class
com.mockrunner.mock.jdbc.MockArray.class
com.mockrunner.mock.jdbc.MockBlob.class
com.mockrunner.mock.jdbc.MockCallableStatement.class
com.mockrunner.mock.jdbc.MockClob.class
com.mockrunner.mock.jdbc.MockConnection.class
com.mockrunner.mock.jdbc.MockDataSource.class
com.mockrunner.mock.jdbc.MockDatabaseMetaData.class
com.mockrunner.mock.jdbc.MockDriver.class
com.mockrunner.mock.jdbc.MockNClob.class
com.mockrunner.mock.jdbc.MockParameterMetaData.class
com.mockrunner.mock.jdbc.MockPreparedStatement.class
com.mockrunner.mock.jdbc.MockRef.class
com.mockrunner.mock.jdbc.MockResultSet.class
com.mockrunner.mock.jdbc.MockResultSetMetaData.class
com.mockrunner.mock.jdbc.MockRowId.class
com.mockrunner.mock.jdbc.MockSQLXML.class
com.mockrunner.mock.jdbc.MockSavepoint.class
com.mockrunner.mock.jdbc.MockStatement.class
com.mockrunner.mock.jdbc.MockStruct.class
com.mockrunner.mock.jdbc.PolyResultSet.class

Pom

mockrunner-jdbc-1.0.8.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>com.mockrunner</groupId>
		<artifactId>mockrunner</artifactId>
		<version>1.0.8</version>
		<relativePath>..</relativePath>
	</parent>

	<artifactId>mockrunner-jdbc</artifactId>
	<name>MockRunner-JDBC</name>
	<description>Mock classes for JDBC</description>

	<dependencies>
		<dependency>
			<groupId>com.mockrunner</groupId>
			<artifactId>mockrunner-core</artifactId>
			<version>1.0.8</version>
		</dependency>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.0.4</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<compilerVersion>1.5</compilerVersion>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
			<plugin>
				<!-- Generate a jar for the source files when deploying -->
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<!-- Generate a jar for the javadocs when deploying -->
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadoc</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<javadocExecutable>${javadoc-executable-path}</javadocExecutable>
					<charset>${project.build.sourceEncoding}</charset>
					<encoding>${project.build.sourceEncoding}</encoding>
					<docencoding>${project.build.sourceEncoding}</docencoding>
					<failOnError>false</failOnError>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>release-module-exclusives</id>
			<!-- Profile automatically triggered when release:perform is executed -->
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>com.github.github</groupId>
						<artifactId>site-maven-plugin</artifactId>
						<configuration>
							<path>${project.artifactId}</path>
						</configuration>
						<executions>
							<execution>
								<id>github-site</id>
								<goals>
									<goal>site</goal>
								</goals>
								<phase>site</phase>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

</project>

POM Entry

<dependency>
   <groupId>com.mockrunner</groupId>
   <artifactId>mockrunner-jdbc</artifactId>
   <version>1.0.8</version>
</dependency>

Download

If you think the following mockrunner-jdbc-1.0.8.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download mockrunner-jdbc-1.0.8.jar file




PreviousNext

Related