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

Delete ArtifactFetcher.

This commit is contained in:
Cedric Beust 2016-03-28 10:40:49 +04:00
parent d7c41bf1ae
commit 76cc696356
2 changed files with 1 additions and 89 deletions

View file

@ -3,7 +3,6 @@ package com.beust.kobalt.app
import com.beust.kobalt.Args
import com.beust.kobalt.internal.KobaltSettings
import com.beust.kobalt.internal.PluginInfo
import com.beust.kobalt.maven.ArtifactFetcher
import com.beust.kobalt.maven.LocalRepo
import com.beust.kobalt.maven.Pom
import com.beust.kobalt.maven.PomGenerator
@ -32,8 +31,7 @@ public open class MainModule(val args: Args, val settings: KobaltSettings) : Abs
PomGenerator.IFactory::class.java,
BintrayApi.IFactory::class.java,
Pom.IFactory::class.java,
BuildFileCompiler.IFactory::class.java,
ArtifactFetcher.IFactory::class.java)
BuildFileCompiler.IFactory::class.java)
.forEach {
install(builder.build(it))
}