diff --git a/build.gradle b/build.gradle
index 2bdbaac058a3e55c32884b0aa3dbd5e681beb4ba..d8ee779487a788e380b5a6d8204cfb93dd0ebd89 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,3 +1,30 @@
+plugins {
+ id 'java'
+}
+
+
group 'com.duanledexianxianxian.plugins.idea'
version '1.0-SNAPSHOT'
+
+//subprojects {
+//// dependencies {
+//// testCompile group: 'junit', name: 'junit', version: '4.12'
+//// compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.2.0'
+//// providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
+//// }
+//}
+
+allprojects {
+ sourceCompatibility = 1.8
+}
+
+//dependencies {
+// testCompile group: 'junit', name: 'junit', version: '4.12'
+//}
+
+
+dependencies {
+ testCompile group: 'junit', name: 'junit', version: '4.12'
+ compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.2.0'
+}
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 290541c738646a3212199241f726c707e47a459c..37f0c2c4c048a4ee0c42e3eeedf6357d7223b69d 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,6 @@
+#Wed Oct 16 17:51:26 CST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
diff --git a/mybatis-plus-generator/build.gradle b/mybatis-plus-generator/build.gradle
index 3e5d0b2ae3b0e4b55afda843f1d710ee5b358f5a..7807c70ab56c1552fd3d5263dab985a6b145b5b8 100644
--- a/mybatis-plus-generator/build.gradle
+++ b/mybatis-plus-generator/build.gradle
@@ -13,15 +13,17 @@ repositories {
}
dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
+ providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.18.10'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2019.1.2'
+ type 'IU'
+ plugins = ['DatabaseTools'] //Bundled plugin dependencies
}
patchPluginXml {
changeNotes """
Add change notes here.
most HTML tags may be used"""
-}
\ No newline at end of file
+}