组织ID: |
org.springframework.boot |
项目ID: |
spring-boot-loader-tools |
版本: |
1.5.22.RELEASE |
最后修改时间: |
2019-08-06 16:25:12 |
包类型: |
jar |
标题: |
Spring Boot Loader Tools |
描述: |
Spring Boot Loader Tools |
大小: |
148.95KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader-tools</artifactId>
<version>1.5.22.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.boot:spring-boot-loader-tools:1.5.22.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?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 https://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.5.22.RELEASE</version>
</parent>
<artifactId>spring-boot-loader-tools</artifactId>
<name>Spring Boot Loader Tools</name>
<description>Spring Boot Loader Tools</description>
<url>https://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
<url>https://www.spring.io</url>
</organization>
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<!-- Provided -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-zip</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>include-layout-jar</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<version>${project.version}</version>
<destFileName>spring-boot-loader.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${basedir}/target/generated-resources/loader/META-INF/loader</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}/target/generated-resources/loader</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Spring-Boot-Commit-Id>${git.commit.id}</Spring-Boot-Commit-Id>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<configuration>
<annotations>
<annotation>org.springframework.boot.loader.tools.UsesUnsafeJava</annotation>
<annotation>org.springframework.lang.UsesJava7</annotation>
<annotation>org.springframework.lang.UsesJava8</annotation>
</annotations>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/loader/spring-boot-loader.jar
org.springframework.boot.loader.tools.Layouts$Jar.class
org.springframework.boot.loader.tools.MainClassFinder$5.class
org.springframework.boot.loader.tools.MainClassFinder$MainClass.class
org.springframework.boot.loader.tools.JarWriter$ZipHeaderPeekInputStream.class
org.springframework.boot.loader.tools.MainClassFinder$1.class
org/springframework/boot/loader/tools/launch.script
org.springframework.boot.loader.tools.JarWriter$CrcAndSize.class
org.springframework.boot.loader.tools.BuildPropertiesWriter$ProjectDetails.class
org.springframework.boot.loader.tools.LibraryCallback.class
org.springframework.boot.loader.tools.JarWriter$EntryTransformer.class
org.springframework.boot.loader.tools.MainClassFinder$ClassEntryComparator.class
org.springframework.boot.loader.tools.DefaultLaunchScript.class
org.springframework.boot.loader.tools.Library.class
org.springframework.boot.loader.tools.LibraryScope$4.class
org.springframework.boot.loader.tools.MainClassFinder$4.class
org.springframework.boot.loader.tools.Layouts$None.class
org.springframework.boot.loader.tools.Layouts$Expanded.class
org.springframework.boot.loader.tools.Layouts$War.class
org.springframework.boot.loader.tools.BuildPropertiesWriter.class
org.springframework.boot.loader.tools.JvmUtils.class
org.springframework.boot.loader.tools.BuildPropertiesWriter$NullAdditionalPropertyValueException.class
org.springframework.boot.loader.tools.FileUtils.class
org.springframework.boot.loader.tools.JarWriter$IdentityEntryTransformer.class
org.springframework.boot.loader.tools.CustomLoaderLayout.class
org.springframework.boot.loader.tools.JarWriter$InputStreamEntryWriter.class
org.springframework.boot.loader.tools.Layouts.class
org.springframework.boot.loader.tools.LibraryScope$1.class
org.springframework.boot.loader.tools.SignalUtils.class
org.springframework.boot.loader.tools.AgentAttacher.class
org.springframework.boot.loader.tools.Repackager$1.class
org.springframework.boot.loader.tools.JarWriter$EntryWriter.class
org.springframework.boot.loader.tools.MainClassFinder$2.class
org.springframework.boot.loader.tools.MainClassFinder.class
org.springframework.boot.loader.tools.MainClassFinder$SingleMainClassCallback.class
org.springframework.boot.loader.tools.LaunchScript.class
org.springframework.boot.loader.tools.LogbackInitializer$1.class
org.springframework.boot.loader.tools.LogbackInitializer$Initializer.class
org.springframework.boot.loader.tools.Repackager.class
org.springframework.boot.loader.tools.LibraryScope$2.class
org.springframework.boot.loader.tools.UsesUnsafeJava.class
org.springframework.boot.loader.tools.Libraries.class
org.springframework.boot.loader.tools.Libraries$1.class
org.springframework.boot.loader.tools.JarWriter$1.class
org.springframework.boot.loader.tools.SignalUtils$1.class
org.springframework.boot.loader.tools.MainClassFinder$3.class
org.springframework.boot.loader.tools.MainClassFinder$ClassDescriptor.class
org.springframework.boot.loader.tools.RunProcess$2.class
org.springframework.boot.loader.tools.Layout.class
org.springframework.boot.loader.tools.LogbackInitializer.class
org.springframework.boot.loader.tools.DefaultLayoutFactory.class
org.springframework.boot.loader.tools.LibraryScope$3.class
org.springframework.boot.loader.tools.Layouts$Module.class
org.springframework.boot.loader.tools.LoaderClassesWriter.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
|