Browse Source

Use new syntax for core plugins too.

pull/476/head
Chris Smith 9 years ago
parent
commit
9bed892dd6
1 changed files with 5 additions and 6 deletions
  1. 5
    6
      build.gradle

+ 5
- 6
build.gradle View File

@@ -1,16 +1,15 @@
1 1
 plugins {
2 2
   id 'com.dmdirc.git-version' version '1.0'
3 3
   id 'com.github.kt3k.coveralls' version '2.1.0'
4
+  id 'maven-publish'
5
+  id 'java'
6
+  id 'findbugs'
7
+  id 'pmd'
8
+  id 'idea'
4 9
 }
5 10
 
6 11
 group = 'com.dmdirc'
7 12
 
8
-apply plugin: 'maven-publish'
9
-apply plugin: 'java'
10
-apply plugin: 'findbugs'
11
-apply plugin: 'pmd'
12
-apply plugin: 'idea'
13
-
14 13
 idea {
15 14
     module {
16 15
          sourceDirs = [file('src'), file('generated')]

Loading…
Cancel
Save