Download spring-boot-legacy-1.0.2.release.jar file

Introduction

You can download spring-boot-legacy-1.0.2.release.jar in this page.

License

Apache 2.0

Type List

spring-boot-legacy-1.0.2.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.boot/spring-boot-legacy/pom.properties
META-INF/maven/org.springframework.boot/spring-boot-legacy/pom.xml
META-INF/spring.factories
org.springframework.boot.legacy.context.web.AnnotationConfigNonEmbeddedWebApplicationContext.class
org.springframework.boot.legacy.context.web.MetricFilterAutoConfiguration.class
org.springframework.boot.legacy.context.web.NonEmbeddedWebApplicationContext.class
org.springframework.boot.legacy.context.web.SecurityFilterAutoConfiguration.class
org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener.class

Pom

spring-boot-legacy-1.0.2.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>

	<artifactId>spring-boot-legacy</artifactId>
	<version>1.0.2.RELEASE</version>

	<name>spring-boot-legacy</name>
	<description>Spring Boot Servlet 2.5 support</description>

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>1.3.0.RELEASE</version>
	</parent>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<exclusions>
				<exclusion>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter-tomcat</artifactId>
				</exclusion>
				<exclusion>
					<artifactId>spring-boot-starter-validation</artifactId>
					<groupId>org.springframework.boot</groupId>
				</exclusion>
			</exclusions>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>coyote</artifactId>
			<version>${catalina.version}</version>
			<!-- not needed at runtime -->
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<dependencyManagement>
		<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-parent</artifactId>
			<type>pom</type>
			<scope>import</scope>
			<version>${spring-boot.version}</version>
		</dependency>
		</dependencies>
	</dependencyManagement>

	<properties>
		<java.version>1.6</java.version>
		<catalina.version>6.0.36</catalina.version>
		<spring-boot.version>1.3.0.RELEASE</spring-boot.version>
	</properties>

	<url>http://spring.io</url>
	<organization>
		<name>Pivotal</name>
		<url>http://spring.io</url>
	</organization>
	<licenses>
		<license>
			<name>Apache 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>

	<scm>
		<url>http://github.com/dsyer/spring-boot-jersey</url>
		<connection>scm:git:git://github.com/scratches/spring-boot-legacy.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/scratches/spring-boot-legacy.git</developerConnection>
		<tag>HEAD</tag>
	</scm>

	<distributionManagement>

		<site>
			<id>static.springframework.org</id>
			<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-boot-legacy</url>
		</site>

		<repository>
			<id>repo.spring.io</id>
			<name>Spring Release Repository</name>
			<url>http://repo.spring.io/libs-release-local</url>
		</repository>

		<snapshotRepository>
			<id>repo.spring.io</id>
			<name>Spring Snapshot Repository</name>
			<url>http://repo.spring.io/libs-snapshot-local</url>
		</snapshotRepository>

	</distributionManagement>

	<developers>
		<developer>
			<id>dsyer</id>
			<name>Dave Syer</name>
			<email>dsyer@pivotal.io</email>
		</developer>
	</developers>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<phase>package</phase>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadoc</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<inherited>false</inherited>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>milestone</id>
			<distributionManagement>
				<repository>
					<id>repo.spring.io</id>
					<name>Spring Milestone Repository</name>
					<url>http://repo.spring.io/libs-milestone-local</url>
				</repository>
			</distributionManagement>
		</profile>
		<profile>
			<id>central</id>
			<distributionManagement>
				<snapshotRepository>
					<id>sonatype-nexus-snapshots</id>
					<name>Sonatype Nexus Snapshots</name>
					<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
				</snapshotRepository>
				<repository>
					<id>sonatype-nexus-staging</id>
					<name>Nexus Release Repository</name>
					<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
				</repository>
			</distributionManagement>
			<build>
				<plugins>
					<plugin>
						<artifactId>maven-gpg-plugin</artifactId>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

</project>

POM Entry

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-legacy</artifactId>
   <version>1.0.2.release</version>
</dependency>

Download

If you think the following spring-boot-legacy-1.0.2.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-legacy-1.0.2.release.jar file




PreviousNext

Related