diff --git a/build.gradle b/build.gradle index 8ab3085..8167bcc 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,6 @@ // https://mvnrepository.com/artifact/net.sourceforge.dynamicreports/dynamicreports-core compile group: 'net.sourceforge.dynamicreports', name: 'dynamicreports-core', version: '5.0.0' - // https://mvnrepository.com/artifact/org.simplejavamail/simple-java-mail compile group: 'org.simplejavamail', name: 'simple-java-mail', version: '4.2.3' } @@ -50,19 +49,3 @@ ) } } - -// make a fat JAR -task dist(type: Jar) { - manifest.from jar.manifest - baseName = 'marking' - - from { - configurations.runtime.collect { - it.isDirectory() ? it : zipTree(it) - } - } - - destinationDir = file('dist') - - with jar -}