Skip to content

Commit

Permalink
bump version, distribute sources
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jan 22, 2018
1 parent 4910454 commit 5c298b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
}

group 'com.github.sanity'
version '1.4.12'
version '1.4.13'

apply plugin: 'java'
apply plugin: 'kotlin'
Expand All @@ -44,6 +44,11 @@ dependencies {
testCompile 'io.kotlintest:kotlintest:2.0.7'
}

task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'html'
outputDirectory = javadoc.destinationDir
Expand Down

0 comments on commit 5c298b8

Please sign in to comment.