Skip to content

Commit 9566845

Browse files
committed
Use versioning plugin
1 parent 5e965b3 commit 9566845

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
plugins {
22
id 'signing'
33
id 'com.jfrog.bintray' version '1.8.1'
4+
id 'com.widen.versioning' version '0.3.1'
45
}
56

67
allprojects {
78
apply plugin: 'groovy'
89
apply plugin: 'java'
910
apply plugin: 'maven-publish'
1011

11-
group 'com.widen.oss'
12-
version '0.1.1'
12+
group = 'com.widen.oss'
1313

1414
sourceCompatibility = 1.8
1515
targetCompatibility = 1.8
@@ -23,14 +23,14 @@ allprojects {
2323
key = findProperty('bintrayApiKey') ?: System.getenv('BINTRAY_KEY')
2424
}
2525

26-
task javadocJar(type: Jar) {
27-
classifier = 'javadoc'
28-
from javadoc
29-
}
30-
3126
task sourcesJar(type: Jar) {
32-
classifier = 'sources'
3327
from sourceSets.main.allSource
28+
classifier 'sources'
29+
}
30+
31+
task javadocJar(type: Jar) {
32+
from javadoc
33+
classifier 'javadoc'
3434
}
3535
}
3636

0 commit comments

Comments
 (0)