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

Reformat.

This commit is contained in:
Cedric Beust 2017-04-04 10:50:20 -07:00
parent abab841119
commit c691709a53
2 changed files with 1 additions and 2 deletions

View file

@ -139,7 +139,6 @@ open class Project(
?: emptyList()
}
override fun toString() = "[Project $name]"
}

View file

@ -6,7 +6,7 @@ import com.beust.kobalt.glob
class War(override val project: Project, override var name: String = Archives.defaultArchiveName(project) + ".war")
: Jar(project, name), AttributeHolder {
init {
include(from("src/main/webapp"),to(""), glob("**"))
include(from("src/main/webapp"), to(""), glob("**"))
include(from("kobaltBuild/classes"), to("WEB-INF/classes"), glob("**"))
}
}