File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ publishing {
9292 }
9393 repositories {
9494 maven {
95- url " https://oss.sonatype.org/service/local/staging/deploy/maven2"
95+ url = " https://oss.sonatype.org/service/local/staging/deploy/maven2"
9696 credentials {
9797 username = project. hasProperty(' nexusUsername' ) ? project. property(' nexusUsername' ) : System . getenv(' NEXUS_USERNAME' )
9898 password = project. hasProperty(' nexusPassword' ) ? project. property(' nexusPassword' ) : System . getenv(' NEXUS_PASSWORD' )
@@ -139,7 +139,9 @@ jmh {
139139 jvmArgs = [" -Ddataset.directory=" + projectDir + " /src/test/datasets" ]
140140}
141141
142- tasks[' jmh' ]. dependsOn downloadAndVerifyRcv1
142+ tasks. named(' jmh' ). configure {
143+ dependsOn downloadAndVerifyRcv1
144+ }
143145
144146dependencies {
145147 testImplementation group : ' org.junit.jupiter' , name : ' junit-jupiter-api' , version : ' latest.release'
You can’t perform that action at this time.
0 commit comments