Download mockrunner-servlet-1.0.0.jar file

Introduction

You can download mockrunner-servlet-1.0.0.jar in this page.

License

Open Source

Type List

mockrunner-servlet-1.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.mockrunner/mockrunner-servlet/pom.properties
META-INF/maven/com.mockrunner/mockrunner-servlet/pom.xml
com.mockrunner.base.BasicHTMLOutputTestCase.class
com.mockrunner.base.BasicWebTestCase.class
com.mockrunner.base.GenericHTMLOutputModule.class
com.mockrunner.base.HTMLOutputModule.class
com.mockrunner.base.WebTestModule.class
com.mockrunner.example.servlet.ImageButtonFilter.class
com.mockrunner.example.servlet.ImageButtonFilterTest.class
com.mockrunner.example.servlet.ImageButtonRequestWrapper.class
com.mockrunner.example.servlet.LogoutServlet.class
com.mockrunner.example.servlet.LogoutServletTest.class
com.mockrunner.example.servlet.RedirectServlet.class
com.mockrunner.example.servlet.RedirectServletTest.class
com.mockrunner.mock.web.JasperJspFactory.class
com.mockrunner.mock.web.MockBodyContent.class
com.mockrunner.mock.web.MockExpression.class
com.mockrunner.mock.web.MockExpressionEvaluator.class
com.mockrunner.mock.web.MockFilterChain.class
com.mockrunner.mock.web.MockFilterConfig.class
com.mockrunner.mock.web.MockFunctionMapper.class
com.mockrunner.mock.web.MockHttpServletRequest.class
com.mockrunner.mock.web.MockHttpServletResponse.class
com.mockrunner.mock.web.MockHttpSession.class
com.mockrunner.mock.web.MockJspConfigDescriptor.class
com.mockrunner.mock.web.MockJspEngineInfo.class
com.mockrunner.mock.web.MockJspFactory.class
com.mockrunner.mock.web.MockJspPropertyGroupDescriptor.class
com.mockrunner.mock.web.MockJspWriter.class
com.mockrunner.mock.web.MockPageContext.class
com.mockrunner.mock.web.MockRegistration.class
com.mockrunner.mock.web.MockRequestDispatcher.class
com.mockrunner.mock.web.MockServletConfig.class
com.mockrunner.mock.web.MockServletContext.class
com.mockrunner.mock.web.MockServletInputStream.class
com.mockrunner.mock.web.MockServletOutputStream.class
com.mockrunner.mock.web.MockServletRegistration.class
com.mockrunner.mock.web.MockSessionContext.class
com.mockrunner.mock.web.MockSessionCookieConfig.class
com.mockrunner.mock.web.MockTaglibDescriptor.class
com.mockrunner.mock.web.MockUserPrincipal.class
com.mockrunner.mock.web.MockVariableResolver.class
com.mockrunner.mock.web.WebConstants.class
com.mockrunner.mock.web.WebMockObjectFactory.class
com.mockrunner.servlet.BasicServletTestCaseAdapter.class
com.mockrunner.servlet.ServletTestModule.class

Pom

mockrunner-servlet-1.0.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>com.mockrunner</groupId>
		<artifactId>mockrunner</artifactId>
		<version>1.0.0</version>
		<relativePath>..</relativePath>
	</parent>

	<artifactId>mockrunner-servlet</artifactId>
	<name>MockRunner-Servlet</name>
	<description>Mock classes for servlets</description>

	<dependencies>
		<dependency>
			<groupId>com.mockrunner</groupId>
			<artifactId>mockrunner-core</artifactId>
			<version>1.0.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>servlet-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>jasper</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<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>
				</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-servlet</artifactId>
   <version>1.0.0</version>
</dependency>

Download

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



Download mockrunner-servlet-1.0.0.jar file




PreviousNext

Related