-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #2151 Publish Gradle metadata, without optional dependencies
Reviewed-in: #2158
- Loading branch information
1 parent
d5b9cf3
commit a60e6a0
Showing
6 changed files
with
197 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
buildSrc/src/main/java/io/reactor/gradle/OptionalDependenciesPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright (c) 2011-Present VMware Inc. or its affiliates, All Rights Reserved. | ||
* | ||
* 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 | ||
* | ||
* https://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 io.reactor.gradle; | ||
|
||
import org.gradle.api.Plugin; | ||
import org.gradle.api.Project; | ||
import org.gradle.api.artifacts.Configuration; | ||
import org.gradle.api.attributes.Usage; | ||
import org.gradle.api.plugins.JavaPlugin; | ||
import org.gradle.api.plugins.JavaPluginConvention; | ||
import org.gradle.api.tasks.SourceSetContainer; | ||
import org.gradle.api.tasks.javadoc.Javadoc; | ||
import org.gradle.plugins.ide.eclipse.EclipsePlugin; | ||
import org.gradle.plugins.ide.eclipse.model.EclipseModel; | ||
|
||
/** | ||
* A {@code Plugin} that adds support for Maven-style optional dependencies. Creates a new | ||
* {@code optional} configuration. The {@code optional} configuration is part of the | ||
* project's compile and runtime classpath's but does not affect the classpath of | ||
* dependent projects. | ||
* | ||
* @author Andy Wilkinson | ||
*/ | ||
public class OptionalDependenciesPlugin implements Plugin<Project> { | ||
|
||
/** | ||
* Name of the {@code optional} configuration. | ||
*/ | ||
public static final String OPTIONAL_CONFIGURATION_NAME = "optional"; | ||
|
||
@Override | ||
public void apply(Project project) { | ||
Configuration optional = project.getConfigurations().create(OPTIONAL_CONFIGURATION_NAME); | ||
optional.attributes((attributes) -> attributes.attribute(Usage.USAGE_ATTRIBUTE, | ||
project.getObjects().named(Usage.class, Usage.JAVA_RUNTIME))); | ||
project.getPlugins().withType(JavaPlugin.class, (javaPlugin) -> { | ||
SourceSetContainer sourceSets = project.getConvention().getPlugin(JavaPluginConvention.class) | ||
.getSourceSets(); | ||
sourceSets.all((sourceSet) -> { | ||
sourceSet.setCompileClasspath(sourceSet.getCompileClasspath().plus(optional)); | ||
sourceSet.setRuntimeClasspath(sourceSet.getRuntimeClasspath().plus(optional)); | ||
}); | ||
project.getTasks().withType(Javadoc.class) | ||
.all((javadoc) -> javadoc.setClasspath(javadoc.getClasspath().plus(optional))); | ||
}); | ||
project.getPlugins().withType(EclipsePlugin.class, | ||
(eclipsePlugin) -> project.getExtensions().getByType(EclipseModel.class) | ||
.classpath((classpath) -> classpath.getPlusConfigurations().add(optional))); | ||
} | ||
|
||
} |
110 changes: 110 additions & 0 deletions
110
buildSrc/src/test/java/io/reactor/gradle/OptionalDependenciesPluginTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/* | ||
* Copyright (c) 2011-Present VMware Inc. or its affiliates, All Rights Reserved. | ||
* | ||
* 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 | ||
* | ||
* https://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 io.reactor.gradle; | ||
|
||
import java.io.File; | ||
import java.io.FileWriter; | ||
import java.io.IOException; | ||
import java.io.PrintWriter; | ||
|
||
import org.gradle.testkit.runner.BuildResult; | ||
import org.gradle.testkit.runner.GradleRunner; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.io.TempDir; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Integration tests for {@link OptionalDependenciesPlugin}. | ||
* | ||
* @author Andy Wilkinson | ||
*/ | ||
public class OptionalDependenciesPluginTest { | ||
|
||
private File projectDir; | ||
|
||
private File buildFile; | ||
|
||
@BeforeEach | ||
public void setup(@TempDir File projectDir) throws IOException { | ||
this.projectDir = projectDir; | ||
this.buildFile = new File(this.projectDir, "build.gradle"); | ||
} | ||
|
||
@Test | ||
void optionalConfigurationIsCreated() throws IOException { | ||
try (PrintWriter out = new PrintWriter(new FileWriter(this.buildFile))) { | ||
out.println("plugins { id 'io.reactor.gradle.optional-dependencies' }"); | ||
out.println("task printConfigurations {"); | ||
out.println(" doLast {"); | ||
out.println(" configurations.all { println it.name }"); | ||
out.println(" }"); | ||
out.println("}"); | ||
} | ||
BuildResult buildResult = runGradle("printConfigurations"); | ||
assertThat(buildResult.getOutput()).contains(OptionalDependenciesPlugin.OPTIONAL_CONFIGURATION_NAME); | ||
} | ||
|
||
@Test | ||
void optionalDependenciesAreAddedToMainSourceSetsCompileClasspath() throws IOException { | ||
optionalDependenciesAreAddedToSourceSetClasspath("main", "compileClasspath"); | ||
} | ||
|
||
@Test | ||
void optionalDependenciesAreAddedToMainSourceSetsRuntimeClasspath() throws IOException { | ||
optionalDependenciesAreAddedToSourceSetClasspath("main", "runtimeClasspath"); | ||
} | ||
|
||
@Test | ||
void optionalDependenciesAreAddedToTestSourceSetsCompileClasspath() throws IOException { | ||
optionalDependenciesAreAddedToSourceSetClasspath("test", "compileClasspath"); | ||
} | ||
|
||
@Test | ||
void optionalDependenciesAreAddedToTestSourceSetsRuntimeClasspath() throws IOException { | ||
optionalDependenciesAreAddedToSourceSetClasspath("test", "runtimeClasspath"); | ||
} | ||
|
||
public void optionalDependenciesAreAddedToSourceSetClasspath(String sourceSet, String classpath) | ||
throws IOException { | ||
try (PrintWriter out = new PrintWriter(new FileWriter(this.buildFile))) { | ||
out.println("plugins {"); | ||
out.println(" id 'io.reactor.gradle.optional-dependencies'"); | ||
out.println(" id 'java'"); | ||
out.println("}"); | ||
out.println("repositories {"); | ||
out.println(" mavenCentral()"); | ||
out.println("}"); | ||
out.println("dependencies {"); | ||
out.println(" optional 'io.projectreactor.addons:reactor-extra:3.3.0.RELEASE'"); | ||
out.println("}"); | ||
out.println("task printClasspath {"); | ||
out.println(" doLast {"); | ||
out.println(" println sourceSets." + sourceSet + "." + classpath + ".files"); | ||
out.println(" }"); | ||
out.println("}"); | ||
} | ||
BuildResult buildResult = runGradle("printClasspath"); | ||
assertThat(buildResult.getOutput()).contains("reactor-extra"); | ||
} | ||
|
||
private BuildResult runGradle(String... args) { | ||
return GradleRunner.create().withProjectDir(this.projectDir).withArguments(args).withPluginClasspath().build(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters