mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-27 00:38:11 -07:00
removed debugging
This commit is contained in:
parent
5f739035e0
commit
87d8b8621e
2 changed files with 0 additions and 2 deletions
|
@ -55,7 +55,6 @@ private class Main @Inject constructor(
|
||||||
println(Banner.get() + Kobalt.version + "\n")
|
println(Banner.get() + Kobalt.version + "\n")
|
||||||
// runTest()
|
// runTest()
|
||||||
runWithArgs(jc, args)
|
runWithArgs(jc, args)
|
||||||
log(1, "************ shutting down executors")
|
|
||||||
executors.shutdown()
|
executors.shutdown()
|
||||||
debug("All done")
|
debug("All done")
|
||||||
})
|
})
|
||||||
|
|
|
@ -95,7 +95,6 @@ public class ProjectGenerator : KobaltLogger {
|
||||||
private fun updateVersion(dep: Dependency, mapped: Map<String, String>): Dependency {
|
private fun updateVersion(dep: Dependency, mapped: Map<String, String>): Dependency {
|
||||||
if ( dep.version.startsWith("\${")) {
|
if ( dep.version.startsWith("\${")) {
|
||||||
val property = dep.version.substring(2, dep.version.length() - 1)
|
val property = dep.version.substring(2, dep.version.length() - 1)
|
||||||
println("property = ${property}")
|
|
||||||
return Dependency(dep.groupId, dep.artifactId, "\${${mapped.get(property)}}", dep.optional, dep.scope)
|
return Dependency(dep.groupId, dep.artifactId, "\${${mapped.get(property)}}", dep.optional, dep.scope)
|
||||||
} else {
|
} else {
|
||||||
return dep
|
return dep
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue