File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.7.1
4
+ - Fix a bug in build.gradle that prevented javadoc and sources from being published
5
+
3
6
## v2.7.0
4
7
- Add ParentClosePolicy to child workflows and also expose parent execution info for child workflows
5
8
- Add context propagation
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ Add *cadence-client* as a dependency to your *pom.xml*:
31
31
<dependency>
32
32
<groupId>com.uber.cadence</groupId>
33
33
<artifactId>cadence-client</artifactId>
34
- <version>2.7.0 </version>
34
+ <version>2.7.1 </version>
35
35
</dependency>
36
36
37
37
or to * build.gradle* :
38
38
39
- compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.0 '
39
+ compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.1 '
40
40
41
41
## Documentation
42
42
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ googleJavaFormat {
37
37
}
38
38
39
39
group = ' com.uber.cadence'
40
- version = ' 2.7.0 '
40
+ version = ' 2.7.1 '
41
41
42
42
description = ''' Uber Cadence Java Client'''
43
43
@@ -132,10 +132,12 @@ javadoc {
132
132
}
133
133
134
134
task javadocJar (type : Jar ) {
135
+ archiveClassifier = ' javadoc'
135
136
from javadoc
136
137
}
137
138
138
139
task sourcesJar (type : Jar , dependsOn : classes) {
140
+ archiveClassifier = ' sources'
139
141
from sourceSets. main. allSource
140
142
}
141
143
You can’t perform that action at this time.
0 commit comments