1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00
kobalt/modules
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
..
kobalt-plugin-api fixed fatJar for projects in subdirectories that depend on other projects 2016-06-07 16:58:18 +02:00
wrapper #208 removing idea template 2016-05-26 13:52:32 +03:00