1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Merge pull request #374 from dmitry-zhuravlev/master

* download sources property propagation. relates to #372
This commit is contained in:
Cedric Beust 2017-04-03 09:47:44 -07:00 committed by GitHub
commit 1c27b9f1e4
4 changed files with 43 additions and 12 deletions

View file

@ -1,5 +1,6 @@
package com.beust.kobalt.maven.aether
import com.beust.kobalt.Args
import com.beust.kobalt.api.Dependencies
import com.beust.kobalt.api.IClasspathDependency
import com.beust.kobalt.api.Kobalt
@ -7,10 +8,12 @@ import com.beust.kobalt.maven.CompletedFuture
import com.beust.kobalt.misc.StringVersion
import com.beust.kobalt.misc.warn
import org.eclipse.aether.artifact.Artifact
import org.eclipse.aether.artifact.DefaultArtifact
import org.eclipse.aether.resolution.DependencyResolutionException
import java.io.File
import java.util.concurrent.Future
class AetherDependency(val artifact: Artifact, override val optional: Boolean = false)
class AetherDependency(val artifact: Artifact, override val optional: Boolean = false, val args: Args? = null)
: IClasspathDependency, Comparable<AetherDependency> {
val aether: KobaltMavenResolver get() = Kobalt.INJECTOR.getInstance(KobaltMavenResolver::class.java)
@ -25,12 +28,37 @@ class AetherDependency(val artifact: Artifact, override val optional: Boolean =
override val jarFile: Future<File>
get() =
if (artifact.file != null) {
resolveSourcesIfNeeded()
CompletedFuture(artifact.file)
} else {
val td = aether.resolve(artifact, null)
resolveSourcesIfNeeded()
val td = aether.resolve(artifact)
CompletedFuture(td.root.artifact.file)
}
private fun resolveSourcesIfNeeded() {
if (args?.downloadSources ?: false) {
artifact.toSourcesArtifact().let { sourcesArtifact ->
if (sourcesArtifact.file == null) {
try {
aether.resolve(sourcesArtifact)
} catch(e: DependencyResolutionException) {
//do nothing
}
}
}
artifact.toJavaDocArtifact().let { javadocArtifact ->
if (javadocArtifact.file == null) {
try {
aether.resolve(javadocArtifact)
} catch(e: DependencyResolutionException) {
//do nothing
}
}
}
}
}
override fun toMavenDependencies(scope: String?) : org.apache.maven.model.Dependency {
val passedScope = scope
val op = this.optional
@ -69,4 +97,7 @@ class AetherDependency(val artifact: Artifact, override val optional: Boolean =
override fun equals(other: Any?) = if (other is AetherDependency) other.id == id else false
override fun toString() = id
fun Artifact.toSourcesArtifact() = DefaultArtifact(groupId, artifactId, "sources", extension, version)
fun Artifact.toJavaDocArtifact() = DefaultArtifact(groupId, artifactId, "javadoc", extension, version)
}

View file

@ -41,7 +41,6 @@ class KobaltMavenResolver @Inject constructor(val settings: KobaltSettings,
repos: List<String> = emptyList()): DependencyResult {
val dependencyRequest = DependencyRequest(createCollectRequest(id, scope, repos), filter)
val result = system.resolveDependencies(session, dependencyRequest)
// GraphUtil.displayGraph(listOf(result.root), { it -> it.children },
// { it: DependencyNode, indent: String -> println(indent + it.toString()) })
return result
@ -88,7 +87,7 @@ class KobaltMavenResolver @Inject constructor(val settings: KobaltSettings,
/**
* Create an IClasspathDependency from a Kobalt id.
*/
fun create(id: String, optional: Boolean) = AetherDependency(DefaultArtifact(id), optional)
fun create(id: String, optional: Boolean) = AetherDependency(DefaultArtifact(id), optional, args)
private val system = Booter.newRepositorySystem()
private val session = Booter.newRepositorySystemSession(system, localRepo.localRepo, settings, eventBus)
@ -109,14 +108,8 @@ class KobaltMavenResolver @Inject constructor(val settings: KobaltSettings,
private fun createCollectRequest(id: String, scope: Scope? = null, repos: List<String> = emptyList())
= CollectRequest().apply {
val allIds = arrayListOf(MavenId.toMavenId(id))
if (args.downloadSources) {
listOf("sources", "javadoc").forEach {
val artifact = DefaultArtifact(id)
val sourceArtifact = DefaultArtifact(artifact.groupId, artifact.artifactId, it, artifact.extension,
artifact.version)
allIds.add(sourceArtifact.toString())
}
}
dependencies = allIds.map { Dependency(DefaultArtifact(it), scope?.scope) }
root = Dependency(DefaultArtifact(MavenId.toMavenId(id)), scope?.scope)
repositories = kobaltRepositories + repos.map { createRepo(HostConfig(it)) }