Skip to content

Commit

Permalink
Use versioning plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed Jun 28, 2018
1 parent 5e965b3 commit 9566845
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
id 'signing'
id 'com.jfrog.bintray' version '1.8.1'
id 'com.widen.versioning' version '0.3.1'
}

allprojects {
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'maven-publish'

group 'com.widen.oss'
version '0.1.1'
group = 'com.widen.oss'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -23,14 +23,14 @@ allprojects {
key = findProperty('bintrayApiKey') ?: System.getenv('BINTRAY_KEY')
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}

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

task javadocJar(type: Jar) {
from javadoc
classifier 'javadoc'
}
}

Expand Down

0 comments on commit 9566845

Please sign in to comment.