Browse Source

Rename custom jar and test tasks in plugins.

IDEA gets super confused when you take a jar task and make it not a jar task.
These are only really used when running from CI (running `./gradlew jar` in
meta will still trigger all of the `:plugin:XXX:jar` tasks), so the names don't
matter.
pull/495/head
Chris Smith 7 years ago
parent
commit
640b34b69b
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      build.gradle
  2. 1
    1
      circle.yml

+ 2
- 2
build.gradle View File

@@ -152,8 +152,8 @@ task wrapper(type: Wrapper) {
152 152
 }
153 153
 
154 154
 subprojects.each { evaluationDependsOn it.path }
155
-task jar(dependsOn: subprojects*.jar)
156
-task test(dependsOn: subprojects*.test)
155
+task jars(dependsOn: subprojects*.jar)
156
+task tests(dependsOn: subprojects*.test)
157 157
 tasks.dependencies.dependsOn subprojects*.tasks.dependencies
158 158
 
159 159
 def plugin(name) {

+ 1
- 1
circle.yml View File

@@ -37,7 +37,7 @@ dependencies:
37 37
 
38 38
 test:
39 39
   override:
40
-    - ./gradlew --stacktrace plugins:jar plugins:test plugins:coveralls:
40
+    - ./gradlew --stacktrace plugins:jars plugins:tests plugins:coveralls:
41 41
         pwd:
42 42
           ../meta
43 43
 

Loading…
Cancel
Save