Update war layout to package custom scope dependencies in WEB-INF/lib/
Fixes gh-2187
This commit is contained in:
parent
ef64186bb9
commit
5c67e6f141
|
|
@ -26,6 +26,7 @@ import java.util.Map;
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @author Dave Syer
|
* @author Dave Syer
|
||||||
|
* @author Andy Wilkinson
|
||||||
*/
|
*/
|
||||||
public class Layouts {
|
public class Layouts {
|
||||||
|
|
||||||
|
|
@ -103,6 +104,7 @@ public class Layouts {
|
||||||
static {
|
static {
|
||||||
Map<LibraryScope, String> map = new HashMap<LibraryScope, String>();
|
Map<LibraryScope, String> map = new HashMap<LibraryScope, String>();
|
||||||
map.put(LibraryScope.COMPILE, "WEB-INF/lib/");
|
map.put(LibraryScope.COMPILE, "WEB-INF/lib/");
|
||||||
|
map.put(LibraryScope.CUSTOM, "WEB-INF/lib/");
|
||||||
map.put(LibraryScope.RUNTIME, "WEB-INF/lib/");
|
map.put(LibraryScope.RUNTIME, "WEB-INF/lib/");
|
||||||
map.put(LibraryScope.PROVIDED, "WEB-INF/lib-provided/");
|
map.put(LibraryScope.PROVIDED, "WEB-INF/lib-provided/");
|
||||||
SCOPE_DESTINATIONS = Collections.unmodifiableMap(map);
|
SCOPE_DESTINATIONS = Collections.unmodifiableMap(map);
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ import static org.junit.Assert.assertThat;
|
||||||
* Tests for {@link Layouts}.
|
* Tests for {@link Layouts}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
|
* @author Andy Wilkinson
|
||||||
*/
|
*/
|
||||||
public class LayoutsTests {
|
public class LayoutsTests {
|
||||||
|
|
||||||
|
|
@ -64,6 +65,8 @@ public class LayoutsTests {
|
||||||
Layout layout = new Layouts.Jar();
|
Layout layout = new Layouts.Jar();
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.COMPILE),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.COMPILE),
|
||||||
equalTo("lib/"));
|
equalTo("lib/"));
|
||||||
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.CUSTOM),
|
||||||
|
equalTo("lib/"));
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.PROVIDED),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.PROVIDED),
|
||||||
equalTo("lib/"));
|
equalTo("lib/"));
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.RUNTIME),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.RUNTIME),
|
||||||
|
|
@ -75,6 +78,8 @@ public class LayoutsTests {
|
||||||
Layout layout = new Layouts.War();
|
Layout layout = new Layouts.War();
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.COMPILE),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.COMPILE),
|
||||||
equalTo("WEB-INF/lib/"));
|
equalTo("WEB-INF/lib/"));
|
||||||
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.CUSTOM),
|
||||||
|
equalTo("WEB-INF/lib/"));
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.PROVIDED),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.PROVIDED),
|
||||||
equalTo("WEB-INF/lib-provided/"));
|
equalTo("WEB-INF/lib-provided/"));
|
||||||
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.RUNTIME),
|
assertThat(layout.getLibraryDestination("lib.jar", LibraryScope.RUNTIME),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue