build.gradle 207 B

123456789101112131415
  1. dependencies {
  2. compile project(":zen-umps")
  3. }
  4. jar{
  5. from("src/main/kotlin") {
  6. include("**/*.xml")
  7. }
  8. }
  9. processResources {
  10. from("src/main/kotlin") {
  11. include("**/*.xml")
  12. }
  13. }