Merge branch '1.1.x'
This commit is contained in:
commit
0e7757decd
|
@ -0,0 +1,61 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2014 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.boot.gradle;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.jar.JarFile;
|
||||||
|
|
||||||
|
import org.gradle.tooling.ProjectConnection;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.springframework.boot.dependency.tools.ManagedDependencies;
|
||||||
|
import org.springframework.util.FileCopyUtils;
|
||||||
|
|
||||||
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Integration tests for Gradle repackaging with a multi-project build.
|
||||||
|
*
|
||||||
|
* @author Andy Wilkinson
|
||||||
|
*/
|
||||||
|
public class MultiProjectRepackagingTests {
|
||||||
|
|
||||||
|
private static final String BOOT_VERSION = ManagedDependencies.get()
|
||||||
|
.find("spring-boot").getVersion();
|
||||||
|
|
||||||
|
private static ProjectConnection project;
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public static void createProject() throws IOException {
|
||||||
|
project = new ProjectCreator().createProject("multi-project-repackage");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void repackageWithTransitiveFileDependency() throws Exception {
|
||||||
|
FileCopyUtils.copy(new File("src/test/resources/foo.jar"), new File(
|
||||||
|
"target/multi-project-repackage/foo.jar"));
|
||||||
|
project.newBuild().forTasks("clean", "build")
|
||||||
|
.withArguments("-PbootVersion=" + BOOT_VERSION, "-Prepackage=true").run();
|
||||||
|
File buildLibs = new File("target/multi-project-repackage/main/build/libs");
|
||||||
|
JarFile jarFile = new JarFile(new File(buildLibs, "main.jar"));
|
||||||
|
assertThat(jarFile.getEntry("lib/commons-logging-1.1.3.jar"), notNullValue());
|
||||||
|
assertThat(jarFile.getEntry("lib/foo.jar"), notNullValue());
|
||||||
|
jarFile.close();
|
||||||
|
}
|
||||||
|
}
|
|
@ -23,6 +23,7 @@ import org.gradle.tooling.GradleConnector;
|
||||||
import org.gradle.tooling.ProjectConnection;
|
import org.gradle.tooling.ProjectConnection;
|
||||||
import org.gradle.tooling.internal.consumer.DefaultGradleConnector;
|
import org.gradle.tooling.internal.consumer.DefaultGradleConnector;
|
||||||
import org.springframework.util.FileCopyUtils;
|
import org.springframework.util.FileCopyUtils;
|
||||||
|
import org.springframework.util.FileSystemUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
|
@ -34,8 +35,15 @@ public class ProjectCreator {
|
||||||
projectDirectory.mkdirs();
|
projectDirectory.mkdirs();
|
||||||
|
|
||||||
File gradleScript = new File(projectDirectory, "build.gradle");
|
File gradleScript = new File(projectDirectory, "build.gradle");
|
||||||
FileCopyUtils.copy(new File("src/test/resources/" + name + ".gradle"),
|
|
||||||
gradleScript);
|
if (new File("src/test/resources", name).isDirectory()) {
|
||||||
|
FileSystemUtils.copyRecursively(new File("src/test/resources", name),
|
||||||
|
projectDirectory);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
FileCopyUtils.copy(new File("src/test/resources/" + name + ".gradle"),
|
||||||
|
gradleScript);
|
||||||
|
}
|
||||||
|
|
||||||
GradleConnector gradleConnector = GradleConnector.newConnector();
|
GradleConnector gradleConnector = GradleConnector.newConnector();
|
||||||
((DefaultGradleConnector) gradleConnector).embedded(true);
|
((DefaultGradleConnector) gradleConnector).embedded(true);
|
||||||
|
|
|
@ -132,5 +132,4 @@ public class RepackagingTests {
|
||||||
assertThat(jarFile.getEntry("lib/foo.jar"), notNullValue());
|
assertThat(jarFile.getEntry("lib/foo.jar"), notNullValue());
|
||||||
jarFile.close();
|
jarFile.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:${project.bootVersion}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
project('main') {
|
||||||
|
apply plugin: 'spring-boot'
|
||||||
|
apply plugin: 'java'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(':common')
|
||||||
|
}
|
||||||
|
|
||||||
|
springBoot {
|
||||||
|
mainClass = 'foo.bar.Baz'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
project('common') {
|
||||||
|
apply plugin: 'java'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile "commons-logging:commons-logging:1.1.3"
|
||||||
|
compile files { "lib/foo.jar" }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
include 'main'
|
||||||
|
include 'common'
|
|
@ -27,6 +27,7 @@ import org.gradle.api.artifacts.Configuration;
|
||||||
import org.gradle.api.artifacts.Dependency;
|
import org.gradle.api.artifacts.Dependency;
|
||||||
import org.gradle.api.artifacts.FileCollectionDependency;
|
import org.gradle.api.artifacts.FileCollectionDependency;
|
||||||
import org.gradle.api.artifacts.ModuleVersionIdentifier;
|
import org.gradle.api.artifacts.ModuleVersionIdentifier;
|
||||||
|
import org.gradle.api.artifacts.ProjectDependency;
|
||||||
import org.gradle.api.artifacts.ResolvedArtifact;
|
import org.gradle.api.artifacts.ResolvedArtifact;
|
||||||
import org.springframework.boot.gradle.SpringBootPluginExtension;
|
import org.springframework.boot.gradle.SpringBootPluginExtension;
|
||||||
import org.springframework.boot.loader.tools.Libraries;
|
import org.springframework.boot.loader.tools.Libraries;
|
||||||
|
@ -109,6 +110,14 @@ class ProjectLibraries implements Libraries {
|
||||||
.getResolvedArtifacts()) {
|
.getResolvedArtifacts()) {
|
||||||
libraries.add(new ResolvedArtifactLibrary(artifact, scope));
|
libraries.add(new ResolvedArtifactLibrary(artifact, scope));
|
||||||
}
|
}
|
||||||
|
libraries.addAll(getLibrariesForFileDependencies(configuration, scope));
|
||||||
|
|
||||||
|
return libraries;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Set<Library> getLibrariesForFileDependencies(Configuration configuration,
|
||||||
|
LibraryScope scope) {
|
||||||
|
Set<Library> libraries = new LinkedHashSet<Library>();
|
||||||
for (Dependency dependency : configuration.getIncoming().getDependencies()) {
|
for (Dependency dependency : configuration.getIncoming().getDependencies()) {
|
||||||
if (dependency instanceof FileCollectionDependency) {
|
if (dependency instanceof FileCollectionDependency) {
|
||||||
FileCollectionDependency fileDependency = (FileCollectionDependency) dependency;
|
FileCollectionDependency fileDependency = (FileCollectionDependency) dependency;
|
||||||
|
@ -116,6 +125,11 @@ class ProjectLibraries implements Libraries {
|
||||||
libraries.add(new Library(file, scope));
|
libraries.add(new Library(file, scope));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (dependency instanceof ProjectDependency) {
|
||||||
|
ProjectDependency projectDependency = (ProjectDependency) dependency;
|
||||||
|
libraries.addAll(getLibrariesForFileDependencies(
|
||||||
|
projectDependency.getProjectConfiguration(), scope));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return libraries;
|
return libraries;
|
||||||
}
|
}
|
||||||
|
@ -161,7 +175,7 @@ class ProjectLibraries implements Libraries {
|
||||||
@Override
|
@Override
|
||||||
public boolean isUnpackRequired() {
|
public boolean isUnpackRequired() {
|
||||||
if (ProjectLibraries.this.extension.getRequiresUnpack() != null) {
|
if (ProjectLibraries.this.extension.getRequiresUnpack() != null) {
|
||||||
ModuleVersionIdentifier id = artifact.getModuleVersion().getId();
|
ModuleVersionIdentifier id = this.artifact.getModuleVersion().getId();
|
||||||
return ProjectLibraries.this.extension.getRequiresUnpack().contains(
|
return ProjectLibraries.this.extension.getRequiresUnpack().contains(
|
||||||
id.getGroup() + ":" + id.getName());
|
id.getGroup() + ":" + id.getName());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue