Skip to content

Commit ec59eac

Browse files
committed
Merge branch 'release/0.5.1'
2 parents 765f59a + d7b61e8 commit ec59eac

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jacocoTestReport {
3636
gradle.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

142143
dependencies {

0 commit comments

Comments
 (0)