浏览代码

构建文件修改

Scott 3 年之前
父节点
当前提交
02d9c7a63f
共有 1 个文件被更改,包括 4 次插入6 次删除
  1. 4 6
      build.gradle

+ 4 - 6
build.gradle

@@ -14,11 +14,6 @@ subprojects {
     apply plugin: 'java'
     apply plugin: 'war'
 
-    project (':analog-api', {
-        apply plugin: 'org.springframework.boot'
-        apply plugin: 'io.spring.dependency-management'
-    })
-
     // Task type of JavaCompile
     tasks.withType(JavaCompile, {
         //enable compilation in a separate daemon process
@@ -103,8 +98,11 @@ subprojects {
 
 }
 
-
 // others project() {}
 
+project (':analog-api', {
+    apply plugin: 'org.springframework.boot'
+    apply plugin: 'io.spring.dependency-management'
+})