当前位置:   article > 正文

gradle搭建springBoot多模块项目_gradle部署springboot

gradle部署springboot

目录

1. gradle简介

2. 下载安装配置gradle

2.1 安装

2.2 配置环境变量

3. gradle搭建springBoot多模块项目

3.1 父工程搭建

3.2 子模块搭建

4. 构建子模块上传maven私服仓库


1.gradle简介

        Gradle是源于Apache Ant和Apache Maven概念的项目自动化构建开源工具,它使用一种基于Groovy的特定领域语言(DSL)来声明项目设置,抛弃了基于XML的各种繁琐配置面向Java应用为主。当前其支持的语言暂时有Java、Groovy、Kotlin和Scala。Gradle是一个基于JVM的构建工具,是一款通用灵活的构建工具,支持maven, Ivy仓库,支持传递性依赖管理,而不需要远程仓库或者是pom.xml和ivy.xml配置文件,基于Groovy,build脚本使用Groovy编写。

  1. 官网:
  2. https://gradle.org/
  3. https://plugins.gradle.org/search

2.下载安装配置gradle

官方网站:https://gradle.org/install/#manually

       提供了两种下载方式,Binary-only是只下载二进制源码,Complete, with docs and sources是下载源码和文档,这里下载Binary-only,不然安装配置之后,在idea配置完成,idea中的Terminal中执行gradle相关的指令就会报错的,使用Binary-only安装配置的则不会有这个问题。

2.1安装

        解压安装包到想安装到的目录,安装的版本是最新版本7.5.1,7.x和6.x的idea中的项目build.gradle文件的配置、参数还是大的

2.2配置环境变量

       2.2.1 GRADLE_HOME环境变量配置

                 新建变量变量名:GRADLE_HOME

                 变量值:解压到的目录

        2.2.2 GRADLE_USER_HOME环境变量配置

              新建变量变量名:GRADLE_USER_HOME

              变量值: 自定义Gradle仓库目录或者Maven的仓库目录

        2.2.3 Path变量值配置

               添加Path变量值:%GRADLE_HOME%\bin;

        2.2.4配置Gradle仓库源

           在Gradle安装目录下的 init.d 文件夹下,新建一个 init.gradle 文件,里面填写以下配置。

  1. allprojects {
  2. repositories {
  3. maven {
  4. url 'https://maven.aliyun.com/repository/gradle-plugin'
  5. }
  6. maven {
  7. url "https://maven.aliyun.com/nexus/content/groups/public/"
  8. }
  9. maven {
  10. allowInsecureProtocol = true
  11. url 'http://xxxxxxx.xxxx/repository/maven-snapshots/'
  12. credentials {
  13. username 'xxxxxx'
  14. password 'xxxxx'
  15. }
  16. }
  17. maven {
  18. allowInsecureProtocol = true
  19. url 'http://xxxxxx:xxxxx/repository/maven-releases/'
  20. credentials {
  21. username 'xxxxxx'
  22. password 'xxxxx'
  23. }
  24. }
  25. mavenCentral()
  26. gradlePluginPortal()
  27. jcenter()
  28. maven { url 'file:///D:/app/gradle-repository'}
  29. mavenLocal()
  30. }
  31. buildscript {
  32. repositories {
  33. maven {
  34. allowInsecureProtocol = true
  35. url 'http://xxxxxxx.xxxxxxx/repository/maven-snapshots/'
  36. credentials {
  37. username 'xxxxx'
  38. password 'xxxxx'
  39. }
  40. }
  41. maven {
  42. allowInsecureProtocol = true
  43. url 'http://xxxxxxxx.xxxxx/repository/maven-releases/'
  44. credentials {
  45. username 'xxxxxx'
  46. password 'xxxxxx'
  47. }
  48. }
  49. }
  50. }
  51. }

  repositories 中写的是获取 jar 包的顺序从上到下

2.3 idea使用本地的gradle配置

3. gradle搭建springBoot多模块项目

3.1 父工程搭建:

父工程的build.gradle文件内容如下:

  1. plugins {
  2. }
  3. group = 'com.example'
  4. version = '0.0.1-SNAPSHOT'
  5. allprojects {
  6. // 指定需要的插件
  7. // 指定语言
  8. apply plugin: 'java'
  9. //指定编辑器
  10. apply plugin: 'idea'
  11. // 配置项目信息
  12. group 'com.example'
  13. version '1.0-SNAPSHOT'
  14. // 配置仓库
  15. repositories {
  16. maven {
  17. url 'https://maven.aliyun.com/repository/gradle-plugin'
  18. }
  19. maven {
  20. url "https://maven.aliyun.com/nexus/content/groups/public/"
  21. }
  22. maven {
  23. allowInsecureProtocol = true
  24. url 'http://xxxxx:xxxx/repository/maven-snapshots/'
  25. }
  26. mavenCentral()
  27. gradlePluginPortal()
  28. jcenter()
  29. //mavenLocal()
  30. }
  31. }
  32. // 配置子工程
  33. subprojects {
  34. // 指定编译版本
  35. sourceCompatibility = 1.8
  36. targetCompatibility = 1.8
  37. // 配置字符编码
  38. tasks.withType(JavaCompile) {
  39. options.encoding = 'UTF-8'
  40. }
  41. // 配置全局依赖版本信息
  42. ext {
  43. junitVersion = '4.12'
  44. }
  45. //配置子模块依赖
  46. dependencies {
  47. implementation 'org.springframework.boot:spring-boot-starter-web'
  48. compileOnly 'org.projectlombok:lombok'
  49. implementation 'org.springframework.boot:spring-boot-starter'
  50. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  51. // testCompile group: 'junit', name: 'junit', version:"${junitVersion}"
  52. }
  53. }

3.2 子模块搭建

子模块的build.gradle文件内容如下所示:

  1. plugins {
  2. id 'org.springframework.boot' version '2.7.4'
  3. id 'io.spring.dependency-management' version '1.0.14.RELEASE'
  4. id 'java'
  5. id 'maven-publish'
  6. }
  7. group = 'com.example'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '1.8'
  10. repositories {
  11. // mavenCentral()
  12. }
  13. dependencies {
  14. /* implementation 'org.springframework.boot:spring-boot-starter'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'*/
  16. }
  17. // 打jar包的配置
  18. /*jar {
  19. manifest {
  20. attributes "Manifest-Version": 1.0, 'Main-Class': 'com.example.demo1.Demo1Application'
  21. }
  22. }*/
  23. publishing {
  24. publications {
  25. bootJava(MavenPublication) {
  26. artifact tasks.named("bootJar")
  27. }
  28. }
  29. repositories {
  30. maven {
  31. credentials {
  32. username 'xxxx'
  33. password 'xxxxx'
  34. }
  35. // 发布maven存储库的url
  36. url "http://xxxxx:xxxxx/repository/maven-snapshots/"
  37. // 允许使用 http
  38. allowInsecureProtocol = true
  39. }
  40. }
  41. }
  42. tasks.named('test') {
  43. useJUnitPlatform()
  44. }
  1. 声明依赖
  2. 在声明依赖时,每个依赖项都需要确定其特定范围,比如有些依赖项只用于测试,有些只用于运行时可用。
  3. 在Gradle 中,使用dependencies{}来声明依赖项。格式为:
  4. dependencies {
  5. // 配置名称 依赖符号
  6. configurationName dependencyNotation
  7. }
  8. configurationName 有以下几种:
  9. compileOnly— 对于编译生产代码所必需但不应成为运行时类路径的一部分的依赖项
  10. implementation(取代compile) — 用于编译和运行时
  11. runtimeOnly(取代runtime)——仅在运行时使用,不用于编译
  12. testCompileOnly— 与compileOnly测试相同
  13. testImplementation— 测试等效于implementation
  14. testRuntimeOnly— 测试等效于runtimeOnly
  15. 依赖包在本地文件目录中,可以使用以下方式引入:
  16. repositories {
  17. //依赖包在本地文件目录中,可以使用以下方式引入:
  18. /*flatDir {
  19. dirs 'lib'
  20. }
  21. flatDir {
  22. dirs 'lib1', 'lib2'
  23. }*/
  24. // mavenCentral()
  25. }
  26. 导入和排除依赖
  27. dependencies {
  28. /// 1. 在存储库中引入依赖
  29. // group:name:version 风格
  30. implementation 'commons-lang:commons-lang:2.6'
  31. // Map 风格
  32. implementation group: 'com.google.code.guice', name: 'guice', version: '1.0'
  33. testImplementation 'org.mockito:mockito:1.9.0-rc1'
  34. // 2. 将文件声明引入为依赖
  35. implementation files('hibernate.jar', 'libs/spring.jar')
  36. //将'libs'中的所有jar放入编译类路径
  37. implementation fileTree('libs')*/
  38. //依赖其他子项目
  39. implementation project(':demo1')
  40. /* 排除依赖
  41. implementation('org.hibernate:hibernate:3.1') {
  42. // 在版本冲突的情况下优先使用该版本
  43. force = true
  44. // 排除特定的依赖:
  45. exclude module: 'cglib' // 按照模块排除
  46. exclude group: 'org.jmock' // 按照组名排除
  47. exclude group: 'org.unwanted', module: 'iAmBuggy' // 通过组名+模块排除
  48. // 禁用此依赖项的所有传递依赖
  49. transitive = false
  50. }
  51. }

4.构建子模块上传maven私服仓库

  1. maven-publish插件的SpringBoot的官网
  2. https://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/htmlsingle/#publishing-your-application.maven-publish

 

在子模块的build.gradle文件中配置了maven-publish插件即可上传私服

  1. 遇到的问题:
  2. Execution failed for task ':publishTspPublicationToMavenRepository'.
  3. > Failed to publish publication 'tsp' to repository 'maven'
  4. > No cached resource 'http://xxx/maven-metadata.xml' available for offline mode.
  5. 注意报错信息中的“offline mode”,离线模式。

解决办法:

          然后在maven私服中搜索demo2

 

        注意:在gradle7.x中是没有如下配置上传maven私服的,只有低版本的gradle才会有,低版本是使用maven插件上传maven私服,而在gradle7.x中引入id : “maven”是拉取不到这个插件的,网上有好多的坑是如下配置的,结果直接是报错,在gradle7.x使用的是id 'maven-publish'插件来上传maven私服,不在支持低版本使用maven插件的方式:

  1. /*task sourceJar (type:Jar) {
  2. classifier = 'sources'
  3. from sourceSets.main.allSource
  4. }
  5. artifacts {
  6. archives sourceJar
  7. }*/
  8. /*
  9. //元数据定义和上传︎
  10. uploadArchives {
  11. repositories {
  12. mavenDeployer {
  13. // beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
  14. */
  15. /* repository(url: "http://xxx:xxxxx/repository/maven-releases/") {
  16. authentication(userName: "xxxxx", password: "xxxxx")
  17. }*//*
  18. */
  19. /* snapshotRepository(url: "http://xxxx:xxxx/repository/maven-snapshots/") {
  20. authentication(userName: "xxxxxx", password: "xxxxxxx")
  21. }*//*
  22. pom.project {
  23. name 'grDemo Application'
  24. packaging 'jar'
  25. // optionally artifactId can be defined here
  26. description "xxxxx"
  27. */
  28. /*url 'http://www.example.com/example-application'
  29. scm {
  30. connection 'scm:svn:http://foo.googlecode.com/svn/trunk/'
  31. developerConnection 'scm:svn:https://foo.googlecode.com/svn/trunk/'
  32. url 'http://foo.googlecode.com/svn/trunk/'
  33. }
  34. licenses {
  35. license {
  36. name 'The Apache License, Version 2.0'
  37. url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  38. }
  39. }
  40. developers {
  41. developer {
  42. id 'manfred'
  43. name 'Manfred Moser'
  44. email 'manfred@sonatype.com'
  45. }
  46. }*//*
  47. }
  48. }
  49. }
  50. }*/
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/305675
推荐阅读
相关标签
  

闽ICP备14008679号