From b8a387aeb7c1cd276faef26acb385e758c157a69 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 8 Jul 2016 06:09:27 -0700 Subject: [PATCH] Fixed release task dependencies. --- .idea/modules/httpstatus_test.iml | 5 ++++ HttpStatus.ipr | 39 +++++++++++++++++++++++++++++-- build.gradle | 4 ++-- 3 files changed, 44 insertions(+), 4 deletions(-) diff --git a/.idea/modules/httpstatus_test.iml b/.idea/modules/httpstatus_test.iml index 1025658..6f972d8 100644 --- a/.idea/modules/httpstatus_test.iml +++ b/.idea/modules/httpstatus_test.iml @@ -9,9 +9,14 @@ + + + + + \ No newline at end of file diff --git a/HttpStatus.ipr b/HttpStatus.ipr index 2293c05..7bfdec5 100644 --- a/HttpStatus.ipr +++ b/HttpStatus.ipr @@ -181,6 +181,15 @@ + + + + + + + + + @@ -199,12 +208,38 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle index 8639c8e..b8206b0 100644 --- a/build.gradle +++ b/build.gradle @@ -57,7 +57,7 @@ mainClassName = 'net.thauvin.erik.httpstatus.Reasons' [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' repositories { - mavenCentral() + mavenLocal() jcenter() } @@ -209,7 +209,7 @@ task deploy(dependsOn: ['build', 'copyToDeploy']) { mustRunAfter clean } -task release(dependsOn: ['deploy', 'wrapper']) << { +task release(dependsOn: ['wrapper', 'clean', 'deploy']) << { group = 'Publishing' description = 'Releases new version.' isRelease = true