Download spring-boot-test-1.4.3.release.jar file

Introduction

You can download spring-boot-test-1.4.3.release.jar in this page.

License

Apache Open Source

Type List

spring-boot-test-1.4.3.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.boot/spring-boot-test/pom.properties
META-INF/maven/org.springframework.boot/spring-boot-test/pom.xml
META-INF/spring.factories
org.springframework.boot.test.ConfigFileApplicationContextInitializer.class
org.springframework.boot.test.EnvironmentTestUtils.class
org.springframework.boot.test.IntegrationTest.class
org.springframework.boot.test.IntegrationTestPropertiesListener.class
org.springframework.boot.test.MergedContextConfigurationProperties.class
org.springframework.boot.test.OutputCapture.class
org.springframework.boot.test.SpringApplicationConfiguration.class
org.springframework.boot.test.SpringApplicationContextLoader.class
org.springframework.boot.test.SpringBootMockServletContext.class
org.springframework.boot.test.TestRestTemplate.class
org.springframework.boot.test.WebAppIntegrationTestContextBootstrapper.class
org.springframework.boot.test.WebIntegrationTest.class
org.springframework.boot.test.context.ConfigFileApplicationContextInitializer.class
org.springframework.boot.test.context.DefaultTestExecutionListenersPostProcessor.class
org.springframework.boot.test.context.ImportsContextCustomizer.class
org.springframework.boot.test.context.ImportsContextCustomizerFactory.class
org.springframework.boot.test.context.SpringBootConfigurationFinder.class
org.springframework.boot.test.context.SpringBootContextLoader.class
org.springframework.boot.test.context.SpringBootTest.class
org.springframework.boot.test.context.SpringBootTestContextBootstrapper.class
org.springframework.boot.test.context.SpringBootTestContextCustomizer.class
org.springframework.boot.test.context.SpringBootTestContextCustomizerFactory.class
org.springframework.boot.test.context.TestComponent.class
org.springframework.boot.test.context.TestConfiguration.class
org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer.class
org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizerFactory.class
org.springframework.boot.test.context.filter.TestTypeExcludeFilter.class
org.springframework.boot.test.json.AbstractJsonMarshalTester.class
org.springframework.boot.test.json.BasicJsonTester.class
org.springframework.boot.test.json.GsonTester.class
org.springframework.boot.test.json.JacksonTester.class
org.springframework.boot.test.json.JsonContent.class
org.springframework.boot.test.json.JsonContentAssert.class
org.springframework.boot.test.json.JsonLoader.class
org.springframework.boot.test.json.ObjectContent.class
org.springframework.boot.test.json.ObjectContentAssert.class
org.springframework.boot.test.mock.mockito.Definition.class
org.springframework.boot.test.mock.mockito.DefinitionsParser.class
org.springframework.boot.test.mock.mockito.MockBean.class
org.springframework.boot.test.mock.mockito.MockBeans.class
org.springframework.boot.test.mock.mockito.MockDefinition.class
org.springframework.boot.test.mock.mockito.MockReset.class
org.springframework.boot.test.mock.mockito.MockitoAopProxyTargetInterceptor.class
org.springframework.boot.test.mock.mockito.MockitoBeans.class
org.springframework.boot.test.mock.mockito.MockitoContextCustomizer.class
org.springframework.boot.test.mock.mockito.MockitoContextCustomizerFactory.class
org.springframework.boot.test.mock.mockito.MockitoPostProcessor.class
org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.class
org.springframework.boot.test.mock.mockito.QualifierDefinition.class
org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener.class
org.springframework.boot.test.mock.mockito.SpyBean.class
org.springframework.boot.test.mock.mockito.SpyBeans.class
org.springframework.boot.test.mock.mockito.SpyDefinition.class
org.springframework.boot.test.mock.web.SpringBootMockServletContext.class
org.springframework.boot.test.rule.OutputCapture.class
org.springframework.boot.test.util.ApplicationContextTestUtils.class
org.springframework.boot.test.util.EnvironmentTestUtils.class
org.springframework.boot.test.web.client.LocalHostUriTemplateHandler.class
org.springframework.boot.test.web.client.MockServerRestTemplateCustomizer.class
org.springframework.boot.test.web.client.RootUriRequestExpectationManager.class
org.springframework.boot.test.web.client.TestRestTemplate.class
org.springframework.boot.test.web.htmlunit.LocalHostWebClient.class
org.springframework.boot.test.web.htmlunit.webdriver.LocalHostWebConnectionHtmlUnitDriver.class

Pom

spring-boot-test-1.4.3.release.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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-parent</artifactId>
		<version>1.4.3.RELEASE</version>
		<relativePath>../spring-boot-parent</relativePath>
	</parent>
	<artifactId>spring-boot-test</artifactId>
	<name>Spring Boot Test</name>
	<description>Spring Boot Test</description>
	<url>http://projects.spring.io/spring-boot/</url>
	<organization>
		<name>Pivotal Software, Inc.</name>
		<url>http://www.spring.io</url>
	</organization>
	<properties>
		<main.basedir>${basedir}/..</main.basedir>
	</properties>
	<dependencies>
		<!-- Compile -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
		</dependency>
		<!-- Optional -->
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>com.jayway.jsonpath</groupId>
			<artifactId>json-path</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
		<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.assertj</groupId>
			<artifactId>assertj-core</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-core</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-library</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.skyscreamer</groupId>
			<artifactId>jsonassert</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.seleniumhq.selenium</groupId>
			<artifactId>htmlunit-driver</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.seleniumhq.selenium</groupId>
			<artifactId>selenium-api</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>net.sourceforge.htmlunit</groupId>
			<artifactId>htmlunit</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Annotation processing -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Test -->
		<dependency>
			<groupId>org.apache.tomcat.embed</groupId>
			<artifactId>tomcat-embed-core</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.codehaus.groovy</groupId>
			<artifactId>groovy</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.codehaus.groovy</groupId>
			<artifactId>groovy-xml</artifactId>
			<optional>true</optional>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jetbrains.kotlin</groupId>
			<artifactId>kotlin-runtime</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.spockframework</groupId>
			<artifactId>spock-core</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-test</artifactId>
   <version>1.4.3.release</version>
</dependency>

Download

If you think the following spring-boot-test-1.4.3.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download spring-boot-test-1.4.3.release.jar file




PreviousNext

Related