File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,6 +86,11 @@ Contributions are welcome. Please submit a pull request to the develop branch in
8686
8787# Releases
8888
89+ ## 0.5.1
90+
91+ * Added warning when optimizations are turned off
92+ * Adjusting retry time for nexus-staging-plugin
93+
8994## 0.5.0
9095
9196* Fixed vertex and edge methods so they can modify existing objects
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ jacocoTestReport {
3636gradle. taskGraph. whenReady { graph ->
3737 if (graph. hasTask(' :jacocoTestReport' ) || graph. hasTask(' :sonarqube' )) {
3838 compileGroovy. groovyOptions. optimizationOptions. all = false
39+ log. warn ' all groovy optimizations are turned off for jacoco'
3940 }
4041}
4142
@@ -136,7 +137,7 @@ nexusStaging {
136137 username = System . getProperty(' nexus.username' )
137138 password = System . getProperty(' nexus.password' )
138139 numberOfRetries = 10
139- delayBetweenRetriesInMillis = 30000
140+ delayBetweenRetriesInMillis = 10000
140141}
141142
142143dependencies {
You can’t perform that action at this time.
0 commit comments