Browse Source

Move gradle scripts into gradle/

pull/458/head
Chris Smith 9 years ago
parent
commit
81302cfa9e
5 changed files with 4 additions and 4 deletions
  1. 4
    4
      build.gradle
  2. 0
    0
      gradle/analysis.gradle
  3. 0
    0
      gradle/fatjar.gradle
  4. 0
    0
      gradle/jar.gradle
  5. 0
    0
      gradle/publishing.gradle

+ 4
- 4
build.gradle View File

@@ -68,10 +68,10 @@ repositories {
68 68
     }
69 69
 }
70 70
 
71
-apply from: 'analysis.gradle'
72
-apply from: 'publishing.gradle'
73
-apply from: 'jar.gradle'
74
-apply from: 'fatjar.gradle'
71
+apply from: 'gradle/analysis.gradle'
72
+apply from: 'gradle/publishing.gradle'
73
+apply from: 'gradle/jar.gradle'
74
+apply from: 'gradle/fatjar.gradle'
75 75
 
76 76
 buildscript {
77 77
     repositories {

analysis.gradle → gradle/analysis.gradle View File


fatjar.gradle → gradle/fatjar.gradle View File


jar.gradle → gradle/jar.gradle View File


publishing.gradle → gradle/publishing.gradle View File


Loading…
Cancel
Save