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

Rename DepFactory -> DependencyFactory.

This commit is contained in:
Cedric Beust 2016-03-25 12:35:28 +04:00
parent 21bc80b832
commit 9cc5d62cd3
18 changed files with 41 additions and 60 deletions

View file

@ -3,7 +3,7 @@ package com.beust.kobalt
import com.beust.kobalt.api.IClasspathDependency import com.beust.kobalt.api.IClasspathDependency
import com.beust.kobalt.api.Kobalt import com.beust.kobalt.api.Kobalt
import com.beust.kobalt.api.annotation.Directive import com.beust.kobalt.api.annotation.Directive
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import java.io.File import java.io.File
@ -24,7 +24,7 @@ fun plugins(vararg dependency : IClasspathDependency) {
@Directive @Directive
fun plugins(vararg dependencies : String) { fun plugins(vararg dependencies : String) {
val factory = Kobalt.INJECTOR.getInstance(DepFactory::class.java) val factory = Kobalt.INJECTOR.getInstance(DependencyFactory::class.java)
dependencies.forEach { dependencies.forEach {
Plugins.addDynamicPlugin(factory.create(it)) Plugins.addDynamicPlugin(factory.create(it))
} }

View file

@ -5,7 +5,7 @@ import com.beust.kobalt.api.annotation.IncrementalTask
import com.beust.kobalt.api.annotation.Task import com.beust.kobalt.api.annotation.Task
import com.beust.kobalt.internal.PluginInfo import com.beust.kobalt.internal.PluginInfo
import com.beust.kobalt.internal.TaskManager import com.beust.kobalt.internal.TaskManager
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.LocalRepo import com.beust.kobalt.maven.LocalRepo
import com.beust.kobalt.misc.JarUtils import com.beust.kobalt.misc.JarUtils
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
@ -22,7 +22,7 @@ import javax.inject.Singleton
@Singleton @Singleton
public class Plugins @Inject constructor (val taskManagerProvider : Provider<TaskManager>, public class Plugins @Inject constructor (val taskManagerProvider : Provider<TaskManager>,
val files: KFiles, val files: KFiles,
val depFactory: DepFactory, val depFactory: DependencyFactory,
val localRepo: LocalRepo, val localRepo: LocalRepo,
val executors: KobaltExecutors, val executors: KobaltExecutors,
val pluginInfo: PluginInfo, val pluginInfo: PluginInfo,
@ -152,7 +152,7 @@ public class Plugins @Inject constructor (val taskManagerProvider : Provider<Tas
// //
// Load all the jar files synchronously (can't compile the build script until // Load all the jar files synchronously (can't compile the build script until
// they are installed locally). // they are installed locally).
depFactory.create(it.id, executor = executor) depFactory.create(it.id)
// //
// Open the jar, parse its kobalt-plugin.xml and add the resulting PluginInfo to pluginInfo // Open the jar, parse its kobalt-plugin.xml and add the resulting PluginInfo to pluginInfo

View file

@ -1,20 +1,15 @@
package com.beust.kobalt.api package com.beust.kobalt.api
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.misc.KobaltExecutors
import java.io.File import java.io.File
import java.util.concurrent.Future import java.util.concurrent.Future
public class JarFinder { class JarFinder {
companion object { companion object {
/** /**
* @return a Future for the jar file corresponding to this id. * @return a Future for the jar file corresponding to this id.
*/ */
fun byIdFuture(id: String) : Future<File> { fun byIdFuture(id: String) : Future<File> = DependencyFactory.create(id).jarFile
val executor = Kobalt.INJECTOR.getInstance(KobaltExecutors::class.java).miscExecutor
val depFactory = Kobalt.INJECTOR.getInstance(DepFactory::class.java)
return depFactory.create(id, executor = executor).jarFile
}
/** /**
* @return the jar file corresponding to this id. This might cause a network call. * @return the jar file corresponding to this id. This might cause a network call.

View file

@ -3,7 +3,7 @@ package com.beust.kobalt.api
import com.beust.kobalt.TestConfig import com.beust.kobalt.TestConfig
import com.beust.kobalt.api.annotation.Directive import com.beust.kobalt.api.annotation.Directive
import com.beust.kobalt.internal.JvmCompilerPlugin import com.beust.kobalt.internal.JvmCompilerPlugin
import com.beust.kobalt.maven.aether.KobaltAether import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
import java.io.File import java.io.File
import java.util.* import java.util.*
@ -151,7 +151,7 @@ class Dependencies(val project: Project,
*/ */
private fun addToDependencies(dependencies: ArrayList<IClasspathDependency>, dep: Array<out String>) private fun addToDependencies(dependencies: ArrayList<IClasspathDependency>, dep: Array<out String>)
: List<File> : List<File>
= with(dep.map { KobaltAether.create(it)}) { = with(dep.map { DependencyFactory.create(it)}) {
dependencies.addAll(this) dependencies.addAll(this)
this.map { it.jarFile.get() } this.map { it.jarFile.get() }
} }

View file

@ -8,7 +8,7 @@ import com.beust.kobalt.api.*
import com.beust.kobalt.api.annotation.ExportedProjectProperty import com.beust.kobalt.api.annotation.ExportedProjectProperty
import com.beust.kobalt.api.annotation.IncrementalTask import com.beust.kobalt.api.annotation.IncrementalTask
import com.beust.kobalt.api.annotation.Task import com.beust.kobalt.api.annotation.Task
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.DependencyManager import com.beust.kobalt.maven.DependencyManager
import com.beust.kobalt.maven.LocalRepo import com.beust.kobalt.maven.LocalRepo
import com.beust.kobalt.maven.Md5 import com.beust.kobalt.maven.Md5
@ -29,7 +29,7 @@ import javax.inject.Singleton
open class JvmCompilerPlugin @Inject constructor( open class JvmCompilerPlugin @Inject constructor(
open val localRepo: LocalRepo, open val localRepo: LocalRepo,
open val files: KFiles, open val files: KFiles,
open val depFactory: DepFactory, open val depFactory: DependencyFactory,
open val dependencyManager: DependencyManager, open val dependencyManager: DependencyManager,
open val executors: KobaltExecutors, open val executors: KobaltExecutors,
open val jvmCompiler: JvmCompiler, open val jvmCompiler: JvmCompiler,

View file

@ -4,31 +4,25 @@ import com.beust.kobalt.api.IClasspathDependency
import com.beust.kobalt.api.Kobalt import com.beust.kobalt.api.Kobalt
import com.beust.kobalt.maven.aether.KobaltAether import com.beust.kobalt.maven.aether.KobaltAether
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import com.beust.kobalt.misc.DependencyExecutor
import com.beust.kobalt.misc.KobaltExecutors import com.beust.kobalt.misc.KobaltExecutors
import com.google.inject.Key
import java.util.concurrent.ExecutorService
import javax.inject.Inject import javax.inject.Inject
/** /**
* Use this class to create instances of `IClasspathDependency` from an id. * Use this class to create instances of `IClasspathDependency` from an id.
*/ */
class DepFactory @Inject constructor(val localRepo: LocalRepo, class DependencyFactory @Inject constructor(val localRepo: LocalRepo,
val executors: KobaltExecutors, val executors: KobaltExecutors,
val aether: KobaltAether) { val aether: KobaltAether) {
companion object { companion object {
val defExecutor : ExecutorService by lazy { fun create(id: String) =
Kobalt.INJECTOR.getInstance(Key.get(ExecutorService::class.java, DependencyExecutor::class.java)) Kobalt.INJECTOR.getInstance(DependencyFactory::class.java).create(id)
}
} }
/** /**
* Parse the id and return the correct IClasspathDependency * Parse the id and return the correct IClasspathDependency
*/ */
fun create(id: String, downloadSources: Boolean = false, downloadJavadocs: Boolean = false, fun create(id: String) : IClasspathDependency {
localFirst : Boolean = true, showNetworkWarning: Boolean = true, executor: ExecutorService = defExecutor)
: IClasspathDependency {
if (id.startsWith(FileDependency.PREFIX_FILE)) { if (id.startsWith(FileDependency.PREFIX_FILE)) {
return FileDependency(id.substring(FileDependency.PREFIX_FILE.length)) return FileDependency(id.substring(FileDependency.PREFIX_FILE.length))
} else { } else {

View file

@ -10,7 +10,7 @@ import javax.inject.Inject
import javax.inject.Singleton import javax.inject.Singleton
@Singleton @Singleton
class DependencyManager @Inject constructor(val executors: KobaltExecutors, val depFactory: DepFactory) { class DependencyManager @Inject constructor(val executors: KobaltExecutors, val depFactory: DependencyFactory) {
/** /**
* Create an IClasspathDependency from a Maven id. * Create an IClasspathDependency from a Maven id.
@ -77,7 +77,7 @@ class DependencyManager @Inject constructor(val executors: KobaltExecutors, val
dependencies.forEach { projectDependency -> dependencies.forEach { projectDependency ->
result.add(projectDependency) result.add(projectDependency)
projectDependency.id.let { projectDependency.id.let {
result.add(depFactory.create(it, executor = executor)) result.add(depFactory.create(it))
val downloaded = transitiveClosure(projectDependency.directDependencies()) val downloaded = transitiveClosure(projectDependency.directDependencies())
result.addAll(downloaded) result.addAll(downloaded)

View file

@ -30,12 +30,6 @@ class DependencyResult(val dependency: IClasspathDependency, val repoUrl: String
class KobaltAether @Inject constructor (val settings: KobaltSettings) { class KobaltAether @Inject constructor (val settings: KobaltSettings) {
val localRepo: File get() = File(settings.localRepo) val localRepo: File get() = File(settings.localRepo)
companion object {
val aether : KobaltAether get() = Kobalt.INJECTOR.getInstance(KobaltAether::class.java)
fun create(id: String) = aether.create(id)
}
/** /**
* Don't call this method directly, use `DepFactory` instead. * Don't call this method directly, use `DepFactory` instead.
*/ */

View file

@ -2,7 +2,7 @@ package com.beust.kobalt.misc
import com.beust.kobalt.KobaltException import com.beust.kobalt.KobaltException
import com.beust.kobalt.api.Project import com.beust.kobalt.api.Project
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.MavenId import com.beust.kobalt.maven.MavenId
import com.beust.kobalt.maven.aether.AetherDependency import com.beust.kobalt.maven.aether.AetherDependency
import javax.inject.Inject import javax.inject.Inject
@ -10,7 +10,7 @@ import javax.inject.Inject
/** /**
* Find out if any newer versions of the dependencies are available. * Find out if any newer versions of the dependencies are available.
*/ */
public class CheckVersions @Inject constructor(val depFactory : DepFactory, public class CheckVersions @Inject constructor(val depFactory : DependencyFactory,
val executors : KobaltExecutors) { val executors : KobaltExecutors) {
fun run(projects: List<Project>) { fun run(projects: List<Project>) {
@ -22,8 +22,7 @@ public class CheckVersions @Inject constructor(val depFactory : DepFactory,
cds.forEach { compileDependency -> cds.forEach { compileDependency ->
if (MavenId.isMavenId(compileDependency.id)) { if (MavenId.isMavenId(compileDependency.id)) {
try { try {
val dep = depFactory.create(compileDependency.shortId, localFirst = false, val dep = depFactory.create(compileDependency.shortId)
showNetworkWarning = false, executor = executor)
val other = compileDependency as AetherDependency val other = compileDependency as AetherDependency
if (dep.id != compileDependency.id if (dep.id != compileDependency.id
&& Versions.toLongVersion(dep.version) > Versions.toLongVersion(other.version)) { && Versions.toLongVersion(dep.version) > Versions.toLongVersion(other.version)) {

View file

@ -14,7 +14,7 @@ import com.beust.kobalt.internal.KobaltSettings
import com.beust.kobalt.internal.PluginInfo import com.beust.kobalt.internal.PluginInfo
import com.beust.kobalt.internal.TaskManager import com.beust.kobalt.internal.TaskManager
import com.beust.kobalt.internal.build.BuildFile import com.beust.kobalt.internal.build.BuildFile
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.Http import com.beust.kobalt.maven.Http
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import com.beust.kobalt.misc.* import com.beust.kobalt.misc.*
@ -66,7 +66,7 @@ private class Main @Inject constructor(
val server: KobaltServer, val server: KobaltServer,
val pluginInfo: PluginInfo, val pluginInfo: PluginInfo,
val projectGenerator: ProjectGenerator, val projectGenerator: ProjectGenerator,
val depFactory: DepFactory, val depFactory: DependencyFactory,
val dependencyData: DependencyData, val dependencyData: DependencyData,
val resolveDependency: ResolveDependency) { val resolveDependency: ResolveDependency) {
@ -77,7 +77,7 @@ private class Main @Inject constructor(
val dependencies = arrayListOf<IClasspathDependency>() val dependencies = arrayListOf<IClasspathDependency>()
args.pluginIds?.let { args.pluginIds?.let {
// We want this call to go to the network if no version was specified, so set localFirst to false // We want this call to go to the network if no version was specified, so set localFirst to false
dependencies.addAll(it.split(",").map { depFactory.create(it, localFirst = false) }) dependencies.addAll(it.split(",").map { depFactory.create(it) })
} }
args.pluginJarFiles?.let { args.pluginJarFiles?.let {
dependencies.addAll(it.split(",").map { FileDependency(it) }) dependencies.addAll(it.split(",").map { FileDependency(it) })

View file

@ -7,7 +7,7 @@ import com.beust.kobalt.app.BuildFileCompiler
import com.beust.kobalt.internal.JvmCompilerPlugin import com.beust.kobalt.internal.JvmCompilerPlugin
import com.beust.kobalt.internal.PluginInfo import com.beust.kobalt.internal.PluginInfo
import com.beust.kobalt.internal.build.BuildFile import com.beust.kobalt.internal.build.BuildFile
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.DependencyManager import com.beust.kobalt.maven.DependencyManager
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
@ -18,7 +18,7 @@ import java.nio.file.Paths
class DependencyData @Inject constructor(val executors: KobaltExecutors, val dependencyManager: DependencyManager, class DependencyData @Inject constructor(val executors: KobaltExecutors, val dependencyManager: DependencyManager,
val buildFileCompilerFactory: BuildFileCompiler.IFactory, val pluginInfo: PluginInfo, val buildFileCompilerFactory: BuildFileCompiler.IFactory, val pluginInfo: PluginInfo,
val depFactory: DepFactory) { val depFactory: DependencyFactory) {
fun dependenciesDataFor(buildFilePath: String, args: Args) : GetDependenciesData { fun dependenciesDataFor(buildFilePath: String, args: Args) : GetDependenciesData {
val projectDatas = arrayListOf<ProjectData>() val projectDatas = arrayListOf<ProjectData>()

View file

@ -2,7 +2,7 @@ package com.beust.kobalt.plugin.apt
import com.beust.kobalt.api.* import com.beust.kobalt.api.*
import com.beust.kobalt.api.annotation.Directive import com.beust.kobalt.api.annotation.Directive
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
import com.beust.kobalt.misc.log import com.beust.kobalt.misc.log
import com.google.common.collect.ArrayListMultimap import com.google.common.collect.ArrayListMultimap
@ -18,7 +18,7 @@ import javax.inject.Singleton
* (outputDir, etc...). * (outputDir, etc...).
*/ */
@Singleton @Singleton
class AptPlugin @Inject constructor(val depFactory: DepFactory, val configActor: ConfigActor<AptConfig>) class AptPlugin @Inject constructor(val depFactory: DependencyFactory, val configActor: ConfigActor<AptConfig>)
: BasePlugin(), ICompilerFlagContributor, ISourceDirectoryContributor, IConfigActor<AptConfig> by configActor { : BasePlugin(), ICompilerFlagContributor, ISourceDirectoryContributor, IConfigActor<AptConfig> by configActor {
// ISourceDirectoryContributor // ISourceDirectoryContributor

View file

@ -5,7 +5,7 @@ import com.beust.kobalt.api.*
import com.beust.kobalt.internal.ICompilerAction import com.beust.kobalt.internal.ICompilerAction
import com.beust.kobalt.internal.JvmCompiler import com.beust.kobalt.internal.JvmCompiler
import com.beust.kobalt.kotlin.ParentLastClassLoader import com.beust.kobalt.kotlin.ParentLastClassLoader
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.DependencyManager import com.beust.kobalt.maven.DependencyManager
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
@ -31,7 +31,7 @@ import kotlin.properties.Delegates
class KotlinCompiler @Inject constructor( class KotlinCompiler @Inject constructor(
val files: KFiles, val files: KFiles,
val dependencyManager: DependencyManager, val dependencyManager: DependencyManager,
val depFactory: DepFactory, val depFactory: DependencyFactory,
val executors: KobaltExecutors, val executors: KobaltExecutors,
val jvmCompiler: JvmCompiler) { val jvmCompiler: JvmCompiler) {
companion object { companion object {
@ -137,8 +137,7 @@ class KotlinCompiler @Inject constructor(
otherClasspath: List<String>, sourceFiles: List<String>, outputDir: File, args: List<String>) : TaskResult { otherClasspath: List<String>, sourceFiles: List<String>, outputDir: File, args: List<String>) : TaskResult {
val executor = executors.newExecutor("KotlinCompiler", 10) val executor = executors.newExecutor("KotlinCompiler", 10)
val compilerDep = depFactory.create("org.jetbrains.kotlin:kotlin-compiler-embeddable:$KOTLIN_VERSION", val compilerDep = depFactory.create("org.jetbrains.kotlin:kotlin-compiler-embeddable:$KOTLIN_VERSION")
executor = executor)
val deps = dependencyManager.transitiveClosure(listOf(compilerDep)) val deps = dependencyManager.transitiveClosure(listOf(compilerDep))
// Force a download of the compiler dependencies // Force a download of the compiler dependencies

View file

@ -6,7 +6,7 @@ import com.beust.kobalt.api.*
import com.beust.kobalt.api.annotation.Directive import com.beust.kobalt.api.annotation.Directive
import com.beust.kobalt.internal.BaseJvmPlugin import com.beust.kobalt.internal.BaseJvmPlugin
import com.beust.kobalt.internal.JvmCompilerPlugin import com.beust.kobalt.internal.JvmCompilerPlugin
import com.beust.kobalt.maven.DepFactory import com.beust.kobalt.maven.DependencyFactory
import com.beust.kobalt.maven.dependency.FileDependency import com.beust.kobalt.maven.dependency.FileDependency
import com.beust.kobalt.misc.KFiles import com.beust.kobalt.misc.KFiles
import com.beust.kobalt.misc.KobaltExecutors import com.beust.kobalt.misc.KobaltExecutors
@ -17,7 +17,7 @@ import javax.inject.Inject
import javax.inject.Singleton import javax.inject.Singleton
@Singleton @Singleton
class KotlinPlugin @Inject constructor(val executors: KobaltExecutors, val depFactory: DepFactory, class KotlinPlugin @Inject constructor(val executors: KobaltExecutors, val depFactory: DependencyFactory,
override val configActor: ConfigActor<KotlinConfig>) override val configActor: ConfigActor<KotlinConfig>)
: BaseJvmPlugin<KotlinConfig>(configActor), IDocContributor, IClasspathContributor, ICompilerContributor, : BaseJvmPlugin<KotlinConfig>(configActor), IDocContributor, IClasspathContributor, ICompilerContributor,
IBuildConfigContributor { IBuildConfigContributor {

View file

@ -10,7 +10,7 @@ import javax.inject.Inject
import kotlin.properties.Delegates import kotlin.properties.Delegates
@Guice(modules = arrayOf(TestModule::class)) @Guice(modules = arrayOf(TestModule::class))
public class DependencyTest @Inject constructor(val depFactory: DepFactory, public class DependencyTest @Inject constructor(val depFactory: DependencyFactory,
val executors: KobaltExecutors) { val executors: KobaltExecutors) {
@DataProvider @DataProvider

View file

@ -18,7 +18,7 @@ class DownloadTest @Inject constructor(
val localRepo: LocalRepo, val localRepo: LocalRepo,
val pomFactory: Pom.IFactory, val pomFactory: Pom.IFactory,
val dependencyManager: DependencyManager, val dependencyManager: DependencyManager,
val depFactory: DepFactory, val depFactory: DependencyFactory,
val aether: KobaltAether, val aether: KobaltAether,
val executors: KobaltExecutors) : KobaltTest() { val executors: KobaltExecutors) : KobaltTest() {
private var executor: ExecutorService by Delegates.notNull() private var executor: ExecutorService by Delegates.notNull()
@ -40,7 +40,7 @@ class DownloadTest @Inject constructor(
if (success) { if (success) {
arrayListOf("$groupId:$artifactId:$version", "$groupId:$artifactId:$previousVersion").forEach { arrayListOf("$groupId:$artifactId:$version", "$groupId:$artifactId:$previousVersion").forEach {
val dep = depFactory.create(it, executor = executor) val dep = depFactory.create(it)
val future = dep.jarFile val future = dep.jarFile
val file = future.get() val file = future.get()
Assert.assertTrue(file.exists(), "Couldn't find ${file.absolutePath}") Assert.assertTrue(file.exists(), "Couldn't find ${file.absolutePath}")
@ -60,7 +60,7 @@ class DownloadTest @Inject constructor(
fun shouldDownloadNoVersion() { fun shouldDownloadNoVersion() {
val success = deleteDir() val success = deleteDir()
if (success) { if (success) {
val dep = depFactory.create(idNoVersion, executor = executor) val dep = depFactory.create(idNoVersion)
val future = dep.jarFile val future = dep.jarFile
val file = future.get() val file = future.get()
@ -77,7 +77,7 @@ class DownloadTest @Inject constructor(
val range = "[2.5,)" val range = "[2.5,)"
val expected = "3.0-alpha-1" val expected = "3.0-alpha-1"
val dep = depFactory.create("javax.servlet:servlet-api:$range", executor = executor) val dep = depFactory.create("javax.servlet:servlet-api:$range")
val future = dep.jarFile val future = dep.jarFile
val file = future.get() val file = future.get()
Assert.assertEquals(file.name, "servlet-api-$expected.jar") Assert.assertEquals(file.name, "servlet-api-$expected.jar")
@ -87,7 +87,7 @@ class DownloadTest @Inject constructor(
@Test @Test
fun shouldFindLocalJar() { fun shouldFindLocalJar() {
depFactory.create("$idNoVersion$version") depFactory.create("$idNoVersion$version")
val dep = depFactory.create("$idNoVersion$version", executor = executor) val dep = depFactory.create("$idNoVersion$version")
val future = dep.jarFile val future = dep.jarFile
// Assert.assertTrue(future is CompletedFuture) // Assert.assertTrue(future is CompletedFuture)
val file = future.get() val file = future.get()

View file

@ -6,7 +6,7 @@ import org.testng.Assert
import org.testng.annotations.Test import org.testng.annotations.Test
@Test @Test
class PomGenerationTest @Inject constructor(val depFactory: DepFactory): KobaltTest() { class PomGenerationTest @Inject constructor(val depFactory: DependencyFactory): KobaltTest() {
fun shouldGenerateDependencies() { fun shouldGenerateDependencies() {
val md = depFactory.create("org.testng:testng:6.9.9").toMavenDependencies() val md = depFactory.create("org.testng:testng:6.9.9").toMavenDependencies()
Assert.assertEquals(md.groupId, "org.testng") Assert.assertEquals(md.groupId, "org.testng")

View file

@ -10,7 +10,7 @@ import javax.inject.Inject
@Test @Test
@org.testng.annotations.Guice(modules = arrayOf(TestModule::class)) @org.testng.annotations.Guice(modules = arrayOf(TestModule::class))
class RemoteRepoTest @Inject constructor(val repoFinder: RepoFinder, val depFactory: DepFactory, class RemoteRepoTest @Inject constructor(val repoFinder: RepoFinder, val depFactory: DependencyFactory,
@DependencyExecutor val executor: ExecutorService, val args: Args){ @DependencyExecutor val executor: ExecutorService, val args: Args){
@Test @Test