ソースを参照

Merge pull request #495 from csmith/fix-idea

Rename custom jar and test tasks in plugins.
pull/497/head
Greg Holmes 7年前
コミット
2dc51038ec
2個のファイルの変更3行の追加3行の削除
  1. 2
    2
      build.gradle
  2. 1
    1
      circle.yml

+ 2
- 2
build.gradle ファイルの表示

152
 }
152
 }
153
 
153
 
154
 subprojects.each { evaluationDependsOn it.path }
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
 tasks.dependencies.dependsOn subprojects*.tasks.dependencies
157
 tasks.dependencies.dependsOn subprojects*.tasks.dependencies
158
 
158
 
159
 def plugin(name) {
159
 def plugin(name) {

+ 1
- 1
circle.yml ファイルの表示

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

読み込み中…
キャンセル
保存