Slackbot
03/29/2023, 2:38 PMSebastian Schuberth
03/29/2023, 2:41 PMRoberto Leinardi
03/29/2023, 2:43 PMSebastian Schuberth
03/29/2023, 2:45 PMSebastian Schuberth
03/29/2023, 2:46 PMRoberto Leinardi
03/29/2023, 2:52 PMSebastian Schuberth
03/29/2023, 2:54 PMRoberto Leinardi
03/29/2023, 3:01 PMSebastian Schuberth
03/29/2023, 3:03 PMRoberto Leinardi
03/29/2023, 3:11 PMgradlePluginPortal()
needed during the build, but not included in the artifacts?Sebastian Schuberth
03/29/2023, 3:13 PMRoberto Leinardi
03/29/2023, 3:15 PMgradle-dependency-export
? does that take into account also the gradle plugins?Sebastian Schuberth
03/29/2023, 3:16 PMRoberto Leinardi
03/29/2023, 3:16 PMRoberto Leinardi
03/29/2023, 4:40 PMval componentIds = config.incoming.resolutionResult.allDependencies.map { it.selected.id }
https://github.com/uklance/gradle-dependency-export/blob/master/src/main/groovy/com/lazan/dependency/export/MavenDependencyExport.groovy#L110
selected
doesn't seem to be there anymore and I have no clue where to find it, the code is 4 years old so maybe this was moved in recent versions of Gradle. Do you know perhaps where I can find this selected
?Sebastian Schuberth
03/29/2023, 4:42 PMit
to ResolvedDependencyResult
beforehand.Sebastian Schuberth
03/29/2023, 4:42 PMselected
is still there then.Roberto Leinardi
03/29/2023, 4:44 PMRoberto Leinardi
03/29/2023, 5:01 PM@Input
or are the something else?
https://github.com/uklance/gradle-dependency-export/blob/master/src/main/groovy/com/lazan/dependency/export/MavenDependencyExport.groovy#L24
class MavenDependencyExport extends DefaultTask {
public Collection<Configuration> configurations = new LinkedHashSet<>()
public Map<String, Object> systemProperties = System.getProperties()
boolean exportSources
boolean exportJavadoc
Sebastian Schuberth
03/29/2023, 6:36 PMRoberto Leinardi
03/29/2023, 6:38 PM