Commit 8fde0885 authored by Phillip Webb's avatar Phillip Webb

Add layered jar layout support to the maven plugin

Update the Maven plugin with a new `LAYERED_JAR` layout option.

See gh-19768
parent e9d61bac
/* /*
* Copyright 2012-2019 the original author or authors. * Copyright 2012-2020 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -44,6 +44,7 @@ import org.springframework.boot.loader.tools.Layout; ...@@ -44,6 +44,7 @@ import org.springframework.boot.loader.tools.Layout;
import org.springframework.boot.loader.tools.LayoutFactory; import org.springframework.boot.loader.tools.LayoutFactory;
import org.springframework.boot.loader.tools.Layouts.Expanded; import org.springframework.boot.loader.tools.Layouts.Expanded;
import org.springframework.boot.loader.tools.Layouts.Jar; import org.springframework.boot.loader.tools.Layouts.Jar;
import org.springframework.boot.loader.tools.Layouts.LayeredJar;
import org.springframework.boot.loader.tools.Layouts.None; import org.springframework.boot.loader.tools.Layouts.None;
import org.springframework.boot.loader.tools.Layouts.War; import org.springframework.boot.loader.tools.Layouts.War;
import org.springframework.boot.loader.tools.Libraries; import org.springframework.boot.loader.tools.Libraries;
...@@ -140,8 +141,8 @@ public class RepackageMojo extends AbstractDependencyFilterMojo { ...@@ -140,8 +141,8 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
/** /**
* The type of archive (which corresponds to how the dependencies are laid out inside * The type of archive (which corresponds to how the dependencies are laid out inside
* it). Possible values are JAR, WAR, ZIP, DIR, NONE. Defaults to a guess based on the * it). Possible values are JAR, LAYERED_JAR, WAR, ZIP, DIR, NONE. Defaults to a guess
* archive type. * based on the archive type.
* @since 1.0.0 * @since 1.0.0
*/ */
@Parameter(property = "spring-boot.repackage.layout") @Parameter(property = "spring-boot.repackage.layout")
...@@ -380,6 +381,11 @@ public class RepackageMojo extends AbstractDependencyFilterMojo { ...@@ -380,6 +381,11 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
*/ */
JAR(new Jar()), JAR(new Jar()),
/**
* Layered Jar Layout.
*/
LAYERED_JAR(new LayeredJar()),
/** /**
* War Layout. * War Layout.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment