kotlin-result/build.gradle

48 lines
1.2 KiB
Groovy
Raw Normal View History

2017-10-21 02:51:30 +00:00
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
2017-10-21 21:33:59 +00:00
classpath "net.researchgate:gradle-release:$gradleReleaseVersion"
2017-10-21 02:51:30 +00:00
}
}
plugins {
id 'com.github.ben-manes.versions' version '0.17.0'
}
apply plugin: 'kotlin-platform-common'
2017-10-21 23:59:16 +00:00
apply plugin: 'maven-publish'
2017-10-21 21:33:59 +00:00
apply plugin: 'net.researchgate.release'
description = 'A Result monad for modelling success or failure operations.'
2017-10-21 02:51:30 +00:00
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion"
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlinVersion"
testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlinVersion"
2017-10-21 02:51:30 +00:00
}
2017-10-21 19:03:51 +00:00
task sourcesJar(type: Jar) {
group = LifecycleBasePlugin.BUILD_GROUP
description = 'Assembles a jar archive containing the main classes with sources.'
classifier = 'sources'
from sourceSets.main.allSource
2017-10-21 02:51:30 +00:00
}
2017-10-21 21:37:45 +00:00
2017-10-21 23:59:16 +00:00
publishing {
publications {
mavenJava(MavenPublication) {
artifact sourcesJar
}
}
2017-10-21 21:37:45 +00:00
}