Is it possible to use Kobalt like that? (just aski...
# kobalt
y
Is it possible to use Kobalt like that? (just asking, didn't use Kobalt yet):
Copy code
import com.beust.kobalt.*
import com.beust.kobalt.plugin.java.*
import com.beust.kobalt.plugin.packaging.*
import com.beust.kobalt.plugin.publish.*

javaProject {
    name = "jcommander"
    group = "com.beust"
    artifactId = name
    version = "1.52"

    dependenciesTest {
        compile("org.testng:testng:6.9.5")
    }

    assemble {
       mavenJars {
       }
    }
    jcenter {
       publish = false
    }
}