initial implementation
[idea/community.git] / update-server-mock / build.gradle
index b04b75f3abf37042d23ca3b447a81e2cbfe7df23..63d67a579143df3ba4c1b02fe69631f2ba870e9b 100644 (file)
@@ -11,4 +11,14 @@ repositories { jcenter() }
 dependencies {
   compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.+"
   testCompile "junit:junit:4.+"
+  testCompile "org.assertj:assertj-core:3.+"
+}
+
+jar {
+  manifest {
+    attributes "Main-Class" : "org.jetbrains.updater.mock.MainKt"
+  }
+  from {
+    configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
+  }
 }
\ No newline at end of file