IDEA 2020.2 +Gradle 6.6.1 + Spring Boot 2.3.4 創建多模塊項目的超詳細教程
環境介紹 IDEA
我用的是2020.2
Gradle
安裝參考 Gradle安裝配置
我這安裝的是6.6.1
C:Usersherion>gradle -v------------------------------------------------------------Gradle 6.6.1------------------------------------------------------------Build time: 2020-08-25 16:29:12 UTCRevision: f2d1fb54a951d8b11d25748e4711bec8d128d7e3Kotlin: 1.3.72Groovy: 2.5.12Ant: Apache Ant(TM) version 1.10.8 compiled on May 10 2020JVM: 1.8.0_211 (Oracle Corporation 25.211-b12)OS: Windows 10 10.0 amd64
創建 gradle-parent New Project --> Spring Initalizr 選擇jdk版本,我這里使用1.8
Next
?> 根據需求修改 Group、Artifact、version 、Type、name、package 等,選擇所需依賴創建項目
創建成功后刪除src 目錄
創建子模塊 gradle-demo
選中gradle-parent?> new -->Module
創建子模塊操作與創建gradle-parent 雷同,這里就不做復述了,創建好gradle-demo后在gradle-parent的settings.gradle 中引入模塊依賴 include ‘gradle-demo’
刪除gradle-demo 中settings.gradle文件,否則不能喝gradle-parent建立依賴關系
定義gradle 自身所需資源
buildscript { ext { springBootVersion = ’2.3.4.RELEASE’ springBootManagementVersion = ’1.0.8.RELEASE’ springCloudVersion = ’Hoxton.SR6’ REPOSITORY_HOME = 'http://maven.aliyun.com' } repositories { maven { url ’${REPOSITORY_HOME}/nexus/content/groups/public/’ } mavenCentral() maven { url ’https://repo.spring.io/snapshot’ } maven { url ’https://repo.spring.io/milestone’ } } dependencies { classpath('org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}') classpath('io.spring.gradle:dependency-management-plugin:${springBootManagementVersion}') }}
修改gradle-parent項目build.gradle 配置全項目通用配置
allprojects { apply plugin: ’java’ apply plugin: ’idea’ group = ’com.herion’ sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8}
子項目通用配置
subprojects { apply plugin: ’org.springframework.boot’ apply plugin: ’io.spring.dependency-management’ [compileJava, compileTestJava, javadoc]*.options*.encoding = ’UTF-8’ //倉庫 repositories { maven { url ’${REPOSITORY_HOME}/nexus/content/groups/public/’ } mavenCentral() maven { url ’https://repo.spring.io/snapshot’ } maven { url ’https://repo.spring.io/milestone’ } } dependencies { implementation ’org.springframework.boot:spring-boot-starter’ compileOnly ’org.projectlombok:lombok’ developmentOnly ’org.springframework.boot:spring-boot-devtools’ annotationProcessor ’org.springframework.boot:spring-boot-configuration-processor’ annotationProcessor ’org.projectlombok:lombok’ testImplementation(’org.springframework.boot:spring-boot-starter-test’) { exclude group: ’org.junit.vintage’, module: ’junit-vintage-engine’ } } dependencyManagement { imports { mavenBom('org.springframework.boot:spring-boot-dependencies:${springBootVersion}') } imports { mavenBom 'org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}' } } test { useJUnitPlatform() }}
發布插件配置
/** * 發布插件 */ publishing { publications { mavenJava(MavenPublication) { from components.java versionMapping { usage(’java-api’) { fromResolutionOf(’runtimeClasspath’) } usage(’java-runtime’) { fromResolutionResult() } } } } // 發布倉庫 repositories { maven { // TODO 換成自己的私服地址 def releasesRepoUrl = 'http://my.repo.com/nexus/repository/maven-releases' def snapshotsRepoUrl = 'http://my.repo..com/nexus/repository/maven-snapshots' url = version.endsWith(’SNAPSHOT’) ? snapshotsRepoUrl : releasesRepoUrl credentials { username nexusUser password nexusPassword } } } } configurations { [apiElements, runtimeElements].each { it.outgoing.artifacts.removeIf { it.buildDependencies.getDependencies(null).contains(jar) } it.outgoing.artifact(bootJar) } }
驗證
Gradle 查看所有項目
gradle projects> Task :projects------------------------------------------------------------Root project------------------------------------------------------------Root project ’gradle-parent’+--- Project ’:gradle-common’+--- Project ’:gradle-demo’--- Project ’:gradle-demo2’To see a list of the tasks of a project, run gradle <project-path>:tasksFor example, try running gradle :gradle-common:tasksDeprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.Use ’--warning-mode all’ to show the individual deprecation warnings.See https://docs.gradle.org/6.6.1/userguide/command_line_interface.html#sec:command_line_warningsBUILD SUCCESSFUL in 4s1 actionable task: 1 executed
編譯項目
$ gradle buildDeprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.Use ’--warning-mode all’ to show the individual deprecation warnings.See https://docs.gradle.org/6.6.1/userguide/command_line_interface.html#sec:command_line_warningsBUILD SUCCESSFUL in 5s12 actionable tasks: 12 up-to-date
執行結果
發布jar包到nexus 命令
$ gradle publishMavenJavaPublicationToMavenRepository> Task :gradle-common:publishMavenJavaPublicationToMavenRepository> Task :gradle-demo:publishMavenJavaPublicationToMavenRepository> Task :gradle-demo2:publishMavenJavaPublicationToMavenRepositoryDeprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.Use ’--warning-mode all’ to show the individual deprecation warnings.See https://docs.gradle.org/6.6.1/userguide/command_line_interface.html#sec:command_line_warningsBUILD SUCCESSFUL in 24s16 actionable tasks: 13 executed, 3 up-to-date
執行結果
gradle-demo 驗證 啟動項目
瀏覽器訪問http://localhost:8080/helllo?name=herion
demo 源碼地址
到此這篇關于IDEA 2020.2 +Gradle 6.6.1 + Spring Boot 2.3.4 創建多模塊項目的文章就介紹到這了,更多相關idea+Gradle+springboot多模塊項內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章: