File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v2.7.1
4+ - Fix a bug in build.gradle that prevented javadoc and sources from being published
5+
36## v2.7.0
47- Add ParentClosePolicy to child workflows and also expose parent execution info for child workflows
58- 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*:
3131 <dependency>
3232 <groupId>com.uber.cadence</groupId>
3333 <artifactId>cadence-client</artifactId>
34- <version>2.7.0 </version>
34+ <version>2.7.1 </version>
3535 </dependency>
3636
3737or to * build.gradle* :
3838
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 '
4040
4141## Documentation
4242
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ googleJavaFormat {
3737}
3838
3939group = ' com.uber.cadence'
40- version = ' 2.7.0 '
40+ version = ' 2.7.1 '
4141
4242description = ''' Uber Cadence Java Client'''
4343
@@ -132,10 +132,12 @@ javadoc {
132132}
133133
134134task javadocJar (type : Jar ) {
135+ archiveClassifier = ' javadoc'
135136 from javadoc
136137}
137138
138139task sourcesJar (type : Jar , dependsOn : classes) {
140+ archiveClassifier = ' sources'
139141 from sourceSets. main. allSource
140142}
141143
You can’t perform that action at this time.
0 commit comments