Download spring-boot-loader-1.1.7.release.jar file

Introduction

You can download spring-boot-loader-1.1.7.release.jar in this page.

License

Apache Open Source

Type List

spring-boot-loader-1.1.7.release.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.boot/spring-boot-loader/pom.properties
META-INF/maven/org.springframework.boot/spring-boot-loader/pom.xml
org.springframework.boot.loader.ExecutableArchiveLauncher.class
org.springframework.boot.loader.InputArgumentsJavaAgentDetector.class
org.springframework.boot.loader.JarLauncher.class
org.springframework.boot.loader.JavaAgentDetector.class
org.springframework.boot.loader.LaunchedURLClassLoader.class
org.springframework.boot.loader.Launcher.class
org.springframework.boot.loader.MainMethodRunner.class
org.springframework.boot.loader.PropertiesLauncher.class
org.springframework.boot.loader.WarLauncher.class
org.springframework.boot.loader.archive.Archive.class
org.springframework.boot.loader.archive.ExplodedArchive.class
org.springframework.boot.loader.archive.FilteredArchive.class
org.springframework.boot.loader.archive.JarFileArchive.class
org.springframework.boot.loader.data.ByteArrayRandomAccessData.class
org.springframework.boot.loader.data.RandomAccessData.class
org.springframework.boot.loader.data.RandomAccessDataFile.class
org.springframework.boot.loader.jar.Bytes.class
org.springframework.boot.loader.jar.CentralDirectoryEndRecord.class
org.springframework.boot.loader.jar.Handler.class
org.springframework.boot.loader.jar.JarEntry.class
org.springframework.boot.loader.jar.JarEntryData.class
org.springframework.boot.loader.jar.JarEntryFilter.class
org.springframework.boot.loader.jar.JarFile.class
org.springframework.boot.loader.jar.JarURLConnection.class
org.springframework.boot.loader.jar.ZipInflaterInputStream.class
org.springframework.boot.loader.util.AsciiBytes.class
org.springframework.boot.loader.util.SystemPropertyUtils.class

Pom

spring-boot-loader-1.1.7.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-tools</artifactId>
		<version>1.1.7.RELEASE</version>
	</parent>
	<artifactId>spring-boot-loader</artifactId>
	<name>Spring Boot Loader</name>
	<description>Spring Boot Loader</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>
		<!-- Must never have compile/runtime time dependencies -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- Used to provide a signed jar -->
		<dependency>
			<groupId>org.bouncycastle</groupId>
			<artifactId>bcprov-jdk16</artifactId>
			<version>1.46</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<profiles>
		<profile>
			<id>integration</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-invoker-plugin</artifactId>
						<configuration>
							<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
							<settingsFile>src/it/settings.xml</settingsFile>
							<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
							<postBuildHookScript>verify</postBuildHookScript>
							<addTestClassPath>true</addTestClassPath>
							<skipInvocation>${skipTests}</skipInvocation>
							<streamLogs>true</streamLogs>
						</configuration>
						<executions>
							<execution>
								<id>integration-test</id>
								<goals>
									<goal>install</goal>
									<goal>run</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-loader</artifactId>
   <version>1.1.7.release</version>
</dependency>

Download

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




PreviousNext

Related