-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate ShadowExtension.component (#956)
Co-authored-by: John Engelman <[email protected]> Co-authored-by: John Engelman <[email protected]> Co-authored-by: Greg Harris <[email protected]>
- Loading branch information
1 parent
19ed889
commit fa21300
Showing
6 changed files
with
89 additions
and
77 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
70 changes: 9 additions & 61 deletions
70
src/main/groovy/com/github/jengelman/gradle/plugins/shadow/ShadowExtension.groovy
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 |
---|---|---|
@@ -1,74 +1,22 @@ | ||
package com.github.jengelman.gradle.plugins.shadow | ||
|
||
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar | ||
import org.gradle.api.Project | ||
import org.gradle.api.artifacts.ProjectDependency | ||
import org.gradle.api.artifacts.SelfResolvingDependency | ||
import org.gradle.api.file.RegularFile | ||
import org.gradle.api.provider.Property | ||
import org.gradle.api.provider.Provider | ||
import org.gradle.api.publish.maven.MavenPom | ||
import org.gradle.api.component.SoftwareComponentContainer | ||
import org.gradle.api.publish.maven.MavenPublication | ||
|
||
@Deprecated | ||
class ShadowExtension { | ||
private final Provider<Archive> archive | ||
private final Provider<List<Dep>> allDependencies | ||
private final SoftwareComponentContainer components | ||
|
||
ShadowExtension(Project project) { | ||
archive = project.provider { | ||
def archiveTask = project.tasks.withType(ShadowJar).getByName("shadowJar") | ||
new Archive(archiveTask.archiveFile, archiveTask.archiveClassifier) | ||
} | ||
allDependencies = project.provider { | ||
project.configurations.getByName("shadow").allDependencies.collect { | ||
if ((it instanceof ProjectDependency) || !(it instanceof SelfResolvingDependency)) { | ||
new Dep(it.group, it.name, it.version) | ||
} | ||
} | ||
} | ||
components = project.components | ||
} | ||
|
||
/** | ||
* @deprecated configure publication using component.shadow directly. | ||
*/ | ||
@Deprecated | ||
void component(MavenPublication publication) { | ||
publication.artifact([ | ||
source : archive.get().file, | ||
classifier: archive.get().classifier.get() | ||
]) | ||
|
||
// Don't inline this variable, it seems Groovy closure capturing is confused by the field instead of a local variable. | ||
final def allDeps = allDependencies | ||
publication.pom { MavenPom pom -> | ||
pom.withXml { xml -> | ||
def dependenciesNode = xml.asNode().get('dependencies') ?: xml.asNode().appendNode('dependencies') | ||
allDeps.get().each { | ||
def dependencyNode = dependenciesNode.appendNode('dependency') | ||
dependencyNode.appendNode('groupId', it.group) | ||
dependencyNode.appendNode('artifactId', it.name) | ||
dependencyNode.appendNode('version', it.version) | ||
dependencyNode.appendNode('scope', 'runtime') | ||
} | ||
} | ||
} | ||
} | ||
|
||
private class Archive { | ||
Provider<RegularFile> file | ||
Property<String> classifier | ||
|
||
Archive(Provider<RegularFile> file, Property<String> classifier) { | ||
this.file = file | ||
this.classifier = classifier | ||
} | ||
} | ||
|
||
private class Dep { | ||
String group | ||
String name | ||
String version | ||
|
||
Dep(String group, String name, String version) { | ||
this.group = group | ||
this.name = name | ||
this.version = version | ||
} | ||
publication.from(components.findByName("shadow")) | ||
} | ||
} |
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
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