1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
kobalt/modules/kobalt-plugin-api
DevCharly cbbe9cbeb7 fixed fatJar for projects in subdirectories that depend on other projects
E.g. building p2 (see below) failed with
  `java.lang.AssertionError: File should exist: p2\p1\kobaltBuild\classes`
because `p2.directory is != "."`

```
val p1 = project {
	name = "p1"
	directory = name
}

val p2 = project(p1) {
	name = "p2"
	directory = name
	assemble {
		jar {
			fatJar = true
		}
	}
}
```
2016-06-07 16:58:18 +02:00
..
src/main/kotlin/com/beust/kobalt fixed fatJar for projects in subdirectories that depend on other projects 2016-06-07 16:58:18 +02:00
kobalt-plugin-api.iml Update to Kotlin 1.0.2. 2016-06-01 21:23:41 -08:00